:root {
  --primary-color: #4d5ae7;
  --secondary-color: #e23a88;
  --accent-color: #14be9c;
  --warning-color: #de7711;
  --success-color: #24d076;
  --light-primary: #f4f6fa;
  --light-secondary: #ffe4f1;
  --light-accent: #e1ffef;
  --dark-primary: #4548ba;
  --dark-secondary: #cb1379;
  --text-dark: #101a21;
  --text-light: #6e798f;
  --bg-light: #f9fafb;
  --bg-white: #ffffff;
}

/* Conservative Typography */
.navbar-brand {
  font-size: 1.25rem !important;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-light);
}

/* Hero Section */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--light-primary) 0%, var(--light-accent) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 100%;
  height: 200%;
  background: var(--light-secondary);
  border-radius: 50%;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
    padding-top: 175px;
}

.hero-image {
  position: relative;
  z-index: 1;
}

/* Sections */
.section-padding {
  padding: 5rem 0;
}

.section-bg-light {
  background-color: var(--bg-light);
}

/* Service Cards */
.service-card {
  border: none;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--bg-white);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: white;
}

.service-price {
  color: var(--primary-color);
  font-weight: 700;
  font-size: 1.5rem;
}

/* Feature Items */
.feature-item {
  text-align: center;
  padding: 2rem 1rem;
}

.feature-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  background: var(--primary-color);
}

/* Team Cards */
.team-card {
  border: none;
  border-radius: 1rem;
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
}

/* Review Cards */
.review-card {
  border: none;
  border-radius: 1rem;
  padding: 2rem;
  background: var(--bg-white);
  height: 100%;
}

.review-rating {
  color: var(--warning-color);
  margin-bottom: 1rem;
}

/* FAQ Cards */
.faq-card {
  border: none;
  border-radius: 1rem;
  margin-bottom: 1.5rem;
  background: var(--bg-white);
}

.faq-question {
  background: var(--light-primary);
  padding: 1.5rem;
  border-radius: 1rem 1rem 0 0;
  margin: 0;
  font-weight: 600;
  color: var(--dark-primary);
}

.faq-answer {
  padding: 1.5rem;
  margin: 0;
  border-radius: 0 0 1rem 1rem;
}

/* Contact Form */
.contact-form {
  background: var(--bg-white);
  border-radius: 1rem;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-control {
  border-radius: 0.5rem;
  border: 2px solid #f5f5f5;
  padding: 0.75rem 1rem;
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(97, 118, 221, 0.25);
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  border-radius: 0.5rem;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: var(--dark-primary);
  border-color: var(--dark-primary);
}

/* Footer */
.footer {
  background: var(--accent-color);
  color: white;
  padding: 3rem 0 2rem;
}

.footer h5 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.footer a {
  color: #c3c3c3;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--primary-color);
}

/* Gallery */
.gallery-item {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* Process Timeline */
.process-step {
  position: relative;
  padding: 2rem;
  text-align: center;
}

.process-number {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Case Study Cards */
.case-study-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-white);
  height: 100%;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-5px);
}

/* Price Plan Cards */
.price-card {
  border: none;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  background: var(--bg-white);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.price-value {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-color);
}

.price-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.price-features li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #dadada;
}

.price-features li:last-child {
  border-bottom: none;
}

/* Timeline */
.timeline-item {
  position: relative;
  padding: 2rem;
  margin-bottom: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  border-left: 4px solid var(--primary-color);
}

/* Career Cards */
.career-card {
  border: none;
  border-radius: 1rem;
  padding: 2rem;
  background: var(--bg-white);
  height: 100%;
  transition: transform 0.3s ease;
}

.career-card:hover {
  transform: translateY(-3px);
}

/* Core Info */
.core-info-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg-white);
  border-radius: 1rem;
  height: 100%;
}

.core-info-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--accent-color);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
}

/* Blog Cards */
.blog-card {
  border: none;
  border-radius: 1rem;
  overflow: hidden;
  background: var(--bg-white);
  height: 100%;
  transition: transform 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-image {
  height: 200px;
  object-fit: cover;
}

/* Breadcrumbs */
.breadcrumb {
  background: none;
  padding: 1rem 0;
}

.breadcrumb-item {
  display: flex;
  align-items: center;
}

.breadcrumb-item img {
  width: 20px;
  height: 20px;
}

/* Animation respect for reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
} 


/* Team Social Links - Minimal Style */
.team-social-links {
    margin-top: 16px;
    padding: 10px 0;
}

.social-icons-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.social-link {
    display: inline-flex;
    width: 40px;
    height: 40px;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    background: white;
}

.social-link:hover {
    transform: translateY(-1px);
    color: white;
}

.facebook-link:hover {
    background: #1877f2;
    border-color: #1877f2;
    color: white;
}

.linkedin-link:hover {
    background: #0a66c2;
    border-color: #0a66c2;
    color: white;
}

.instagram-link:hover {
    background: #e4405f;
    border-color: #e4405f;
    color: white;
}

.x-link {
    position: relative;
}

.x-link::after {
    content: '𝕏';
    font-weight: bold;
    font-size: 18px;
    color: inherit;
}

.x-link:hover {
    background: #000000;
    border-color: #000000;
    color: white;
}

.x-link:hover::after {
    color: white;
}

.x-link i {
    display: none;
}

@media (max-width: 768px) {
    .social-icons-grid {
        gap: 15px;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
}
