  
        /* Updated Color Scheme */
        :root {
            --primary: #0c2444;    /* Navy blue */
            --secondary: #54b44c;  /* Fresh green */
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #081a33;       /* Darker navy */
            --gold: #f1c40f;
            --text: #333;
            --text-light: #7f8c8d;
        }
        /* ...existing code... */
.tax-solutions,
.process-section,
.popular-services-section,
.tax-calculator-section,
.testimonials-section,
.faq-section {
    background: #f9fafc; /* Soft light blue */
}

/* Alternate section background for more contrast */
.process-section {
    background: #eef4ff;
}
.popular-services-section {
    background: #f5f9ff;
}
.tax-calculator-section {
    background: #f9fafc;
}
.testimonials-section {
    background: #eef4ff;
}
.faq-section {
    background: #f5f9ff;
}
/* ...existing code... */
        /* Rest of your CSS remains the same */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            overflow-x: hidden;
            color: var(--text);
        }
        /* Hero Section Card Fixes */
.hero-section .card {
  width: auto !important; /* Or your preferred width */
  max-width: 400px !important; /* Adjust as needed */
  padding: 20px !important;
}
.service-card {
  width: 100%; /* Instead of fixed width */
  max-width: 350px; /* Add constraint */
}
.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* More responsive */
}
.service-card h3 {
  font-size: 18px; /* Reduce from 20px if needed */
}
.service-card {
  padding: 20px; /* Instead of 30px */
}
.hero-section .service-icon {
  width: 40px !important;
  height: 40px !important;
  font-size: 18px !important;
}

/* ...existing code... */
.hero .service-cards {
    gap: 18px;
    
}
.hero .service-card:hover {
    /* Remove background and transform effect */
    box-shadow: none;
    background: rgba(255,255,255,0.85); /* Keep same as normal */
    transform: none;
}

.hero .service-card:hover i {
    /* Optional: keep icon color same as normal */
    background: #eafbe7;
    color: #54b44c;
}
.hero .service-card {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(12,36,68,0.10);
    padding: 22px;
    max-width: 300px;
    min-width: 300px;
    font-size: 16px;
    border: 1px solid #eef4ff;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .service-card:hover {
    box-shadow: 0 16px 32px rgba(84,180,76,0.18);
    transform: translateY(-6px) scale(1.03);
}

@media (max-width: 600px) {
  .trust-badges {
    flex-wrap: wrap;
    gap: 12px;
  }
  .trust-badges .badge {
    flex: 1 1 45%;
    min-width: 140px;
    max-width: 48vw;
    margin: 0;
  }
}

/* ...existing code... */
@media (max-width: 600px) {
  .trust-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    justify-items: stretch;
    width: 100%;
  }
  .trust-badges .badge {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    justify-content: center;
    padding: 18px 8px;
    margin: 0;
  }
}
/* ...existing code... */
/* ...existing code... */
.hero .service-card i {
    font-size: 28px;
    background: #eafbe7;
    color: #54b44c;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(84,180,76,0.08);
    transition: background 0.3s, color 0.3s;
}

.hero .service-card:hover i {
    background: #54b44c;
    color: #fff;
}

.hero .service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0c2444;
    font-weight: 700;
    text-align: center;
}

.hero .service-card p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
    color: #333;
    text-align: center;
}
/* ...existing code... */
/* ...existing code... */
.hero .service-cards {
    gap: 13px;
}

.hero .service-card {
    background: rgba(255,255,255,0.85);
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(12,36,68,0.10);
    padding: 5px;
    max-width: 300px;
    min-width: 300px;
    font-size: 12px;
    border: 1px solid #eef4ff;
    transition: box-shadow 0.3s, transform 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero .service-card:hover {
    box-shadow: 0 16px 32px rgba(84,180,76,0.18);
    transform: translateY(-6px) scale(1.03);
}

.hero .service-card i {
    font-size: 28px;
    background: #eafbe7;
    color: #54b44c;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(84,180,76,0.08);
    transition: background 0.3s, color 0.3s;
}

.hero .service-card:hover i {
    background: #54b44c;
    color: #fff;
}

.hero .service-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0c2444;
    font-weight: 700;
    text-align: center;
}

.hero .service-card p {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 1.5;
    color: #333;
    text-align: center;
}
/* ...existing code... */
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* Trust badges styling */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.badge {
  background: white;
  padding: 15px 25px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.badge img {
  height: 40px;
}

/* Document checklist */
.document-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin: 15px 0;
}

.doc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #54b44c;
}

/* Priority badge */
.priority-badge {
  background: #ff6b6b;
  color: white;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  margin-right: 10px;
}

/* Live support bubble */
.support-bubble {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  padding: 12px 20px;
  border-radius: 50px;
  margin-bottom: 15px;
}

.support-bubble i {
  font-size: 20px;
  color: #54b44c;
}
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: white;
            border: 2px solid var(--secondary);
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--secondary);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 60px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .main {
          font-size: 22px;
          font-weight: 700;
          color: var(--primary);
          line-height: 1.4!important;
        }
        
        .logo-text .sub {
            font-size: 11px;
            color: var(--text-light);
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
            font-size: 15px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* Hero Section with New Colors */
        .hero {
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            padding: 100px 0 50px;
            position: relative;
            overflow: hidden;
            min-height: auto;
        }
        
        .hero-content {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            flex-wrap: wrap;
            position: relative;
            z-index: 3;
            gap: 30px;
        }
        
        .hero-text {
            flex: 1;
            min-width: 300px;
        }
        
        .hero-text h1 {
            font-size: 32px;
            margin-bottom: 15px;
            line-height: 1.3;
        }
        
        .hero-text h1 span {
            color: var(--secondary); /* Now using the green color */
        }
        
        .hero-text p {
            font-size: 16px;
            margin-bottom: 25px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.5;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }
        
        /* Service Cards */
        .service-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            margin-top: 20px;
        }
        
        .service-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(5px);
            border-radius: 8px;
            padding: 15px;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }
        
        .service-card:hover {
            transform: translateY(-3px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .service-card i {
            font-size: 20px;
            color: var(--secondary); /* Now using the green color */
            margin-bottom: 10px;
            display: inline-block;
        }
        
        .service-card h3 {
            font-size: 16px;
            margin-bottom: 8px;
        }
        
        .service-card p {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            margin-bottom: 0;
            line-height: 1.4;
        }
        
        /* Form Container */
        .hero-form-container {
            flex: 1;
            min-width: 350px;
            max-width: 450px;
            background: white;
            border-radius: 10px;
            padding: 30px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 2;
            margin-top: 44px;
        }
        
        .form-title {
            color: var(--primary);
            margin-bottom: 25px;
            font-size: 22px;
            text-align: center;
            position: relative;
        }
        
        .form-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 3px;
            background: var(--secondary);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
        }
        
        .form-title span {
            color: var(--secondary);
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text);
            font-weight: 500;
            font-size: 15px;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 15px;
            transition: all 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--secondary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(84, 180, 76, 0.2);
        }
        
        .form-submit {
            width: 100%;
            padding: 14px;
            background-color: var(--secondary);
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 10px;
        }
        
        .form-submit:hover {
            background-color: #47a043; /* Slightly darker green */
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Decorative Elements */
        .hero-shape {
            position: absolute;
            width: 250px;
            height: 250px;
            border-radius: 50%;
            background: rgba(84, 180, 76, 0.05); /* Green tint */
            top: -50px;
            right: -50px;
            z-index: 1;
        }
        
        /* Responsive Styles remain the same */
        @media (max-width: 992px) {
            .hero-content {
                flex-direction: column;
            }
            
            .hero-text {
                text-align: center;
                padding-right: 0;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .service-cards {
                grid-template-columns: repeat(4, 1fr);
            }
            
            .hero-form-container {
                margin-top: 30px;
                max-width: 100%;
                min-width: 100%;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 76px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 76px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 30px;
                transition: left 0.3s ease;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 12px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .hero {
                padding: 90px 0 40px;
            }
            
            .hero-text h1 {
                font-size: 28px;
            }
            
            .service-cards {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 480px) {
            .hero .service-cards {
    margin-left:26px;
    
}

            .hero {
                padding: 80px 0 30px;
            }
            
            .hero-text h1 {
                font-size: 24px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .service-cards {
                grid-template-columns: 1fr;
            }
            
            .hero-form-container {
                padding: 25px;
            }
            
            .form-title {
                font-size: 20px;
                margin-bottom: 20px;
            }
        }
    


    
.process-section {
  padding: 80px 0;
  background: #f9fafc;
}

.process-steps {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin: 60px 0;
  position: relative;
}

.process-steps:before {
  content: '';
  position: absolute;
  top: 50px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #eee;
  z-index: 1;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #54b44c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.step-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.step h3 {
  font-size: 18px;
  color: #0c2444;
  margin-bottom: 10px;
}

.step p {
  color: #666;
  font-size: 15px;
}

.process-cta {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #54b44c;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.primary-btn:hover {
  background: #47a043;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(84,180,76,0.3);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #0c2444;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.secondary-btn:hover {
  background: #081a33;
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .process-steps {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
  
  .process-steps:before {
    display: none;
  }
  
  .step {
    max-width: 300px;
  }
  
  .process-cta {
    flex-direction: column;
    align-items: center;
  }
}



.tax-updates-section {
  background: #f5f9ff;
  padding: 60px 0;
}
.updates-list {
  margin: 30px 0;
}
.update-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(84,180,76,0.07);
  padding: 18px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.update-date {
  background: #54b44c;
  color: #fff;
  border-radius: 5px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  min-width: 110px;
  text-align: center;
}
.update-item p {
  margin: 0;
  color: #0c2444;
  font-size: 15px;
}


    /* Only affects elements inside .tax-services */
.tax-services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

.tax-services .service-card {
  background: white;
  border-radius: 12px;
  padding: 20px; /* Reduced from 30px */
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  max-width: 100%; /* Prevents overflow */
}

.tax-services .service-icon {
  width: 50px; /* Reduced from 60px */
  height: 50px;
  font-size: 20px; /* Reduced from 24px */
}

.tax-services .service-card h3 {
  font-size: 18px; /* Reduced from 20px */
  margin-bottom: 12px;
}
/* Hero Card Fixes */
.hero-card {
  width: 280px !important; /* Fixed width */
  padding: 15px !important;
  transform: none !important; /* Remove hover effects if needed */
}

.hero-card .icon {
  width: 40px !important;
  height: 40px !important;
}

.hero-card h3 {
  font-size: 16px !important;
  margin-bottom: 10px !important;
}
/* Bootstrap override */
.card.hero-card {
  max-width: 300px !important;
  margin: 0 auto !important; /* Centers the card */
}
.popular-services-section {
  padding: 80px 0;
  background: #f9fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.service-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.service-card.highlight {
  border: 2px solid #54b44c;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(12,36,68,0.1);
}

.popular-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #54b44c;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.service-icon {
  width: 60px;
  height: 60px;
  background: rgba(84,180,76,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: #54b44c;
  font-size: 24px;
}

.service-card h3 {
  margin: 0 0 15px;
  color: #0c2444;
  font-size: 20px;
}

.service-card p {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 15px;
}

.service-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 25px;
}

.service-highlights span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  background: #f5f9ff;
  padding: 6px 12px;
  border-radius: 20px;
  color: #0c2444;
}

.service-highlights i {
  color: #54b44c;
  font-size: 12px;
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #0c2444;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-cta:hover {
  color: #54b44c;
}

.service-cta i {
  transition: transform 0.3s ease;
}

.service-cta:hover i {
  transform: translateX(3px);
}

.view-all-cta {
  text-align: center;
  margin-top: 50px;
}

.outline-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid #0c2444;
  color: #0c2444;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.outline-button:hover {
  background: #0c2444;
  color: white;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card {
    padding: 25px;
  }
}






.trust-section {
  background: linear-gradient(90deg, #eafbe7 0%, #f9fafc 100%);
  padding: 60px 0;
}
.trust-header {
  text-align: center;
  margin-bottom: 40px;
}
.trust-header h2 {
  font-size: 32px;
  color: #0c2444;
}
.trust-header h2 span {
  color: #54b44c;
}
.trust-header p {
  color: #666;
  font-size: 18px;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.badge {
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(84,180,76,0.08);
  display: flex;
  align-items: center;
  gap: 18px;
  min-width: 220px;
}
.badge img {
  width: 48px;
  height: 48px;
}
.badge h4 {
  margin: 0;
  color: #0c2444;
  font-size: 18px;
}
.badge p {
  margin: 0;
  color: #54b44c;
  font-size: 14px;
}
@media (max-width: 768px) {
  .trust-badges {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}






.document-checklist-section {
  background: linear-gradient(90deg, #eef4ff 0%, #eafbe7 100%);
  padding: 60px 0;
}
.document-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin: 30px 0;
}
.doc-item {
  background: #fff;
  border-radius: 8px;
  padding: 18px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #54b44c;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(84,180,76,0.07);
  font-size: 15px;
}
.doc-item i {
  font-size: 20px;
}
@media (max-width: 768px) {
  .document-checklist {
    grid-template-columns: 1fr;
  }
}





.awards-section {
  background: #f9fafc;
  padding: 60px 0;
}
.awards-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.award-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(84,180,76,0.08);
  padding: 30px 20px;
  text-align: center;
  width: 220px;
  transition: transform 0.3s;
}
.award-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 15px 30px rgba(12,36,68,0.12);
}
.award-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}
.award-card h4 {
  margin: 0 0 8px;
  color: #0c2444;
  font-size: 17px;
}
.award-card p {
  color: #54b44c;
  font-size: 14px;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .awards-grid {
    flex-direction: column;
    align-items: center;
    gap: 25px;
  }
  .award-card {
    width: 90%;
  }
}





.tax-updates-section {
  background: #f5f9ff;
  padding: 60px 0;
}
.updates-list {
  margin: 30px 0;
}
.update-item {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(84,180,76,0.07);
  padding: 18px 20px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.update-date {
  background: #54b44c;
  color: #fff;
  border-radius: 5px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  min-width: 110px;
  text-align: center;
}
.update-item p {
  margin: 0;
  color: #0c2444;
  font-size: 15px;
}







.ca-experts-section {
  background: linear-gradient(90deg, #eef4ff 0%, #eafbe7 100%);
  padding: 60px 0;
}
.experts-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.expert-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(84,180,76,0.08);
  padding: 30px 20px;
  text-align: center;
  width: 220px;
  transition: transform 0.3s;
}
.expert-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 15px 30px rgba(12,36,68,0.12);
}
.expert-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.expert-card h4 {
  margin: 0 0 8px;
  color: #0c2444;
  font-size: 17px;
}
.expert-card p {
  color: #54b44c;
  font-size: 14px;
  margin-bottom: 0;
}
.exp-years {
  color: #0c2444;
  
}
.tax-calculator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8faff 0%, #eef4ff 100%);
}

.calculator-container {
  background: white;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(12, 36, 68, 0.1);
  overflow: hidden;
  margin-top: 40px;
}

.calculator-tabs {
  display: flex;
  border-bottom: 1px solid #eee;
}

.tab-btn {
  flex: 1;
  padding: 18px;
  background: none;
  border: none;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.tab-btn.active {
  color: #0c2444;
}

.tab-btn.active:after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #54b44c;
}

.calculator-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 30px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: #0c2444;
}

input[type="range"] {
  width: 100%;
  height: 6px;
  -webkit-appearance: none;
  background: #eee;
  border-radius: 3px;
  margin: 15px 0;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  background: #54b44c;
  border-radius: 50%;
  cursor: pointer;
}

.range-value {
  display: flex;
  align-items: center;
  font-weight: 600;
}

.range-value span:first-child {
  font-size: 22px;
  margin-right: 5px;
}

.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 10px;
}

.checkbox-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: normal;
}

.calculate-btn {
  background: #0c2444;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.calculate-btn:hover {
  background: #14325a;
}

.calculator-results {
  background: #f9fafc;
  border-radius: 8px;
  padding: 25px;
}

.result-card {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ddd;
}

.result-icon {
  width: 50px;
  height: 50px;
  background: rgba(84, 180, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #54b44c;
  font-size: 20px;
}

.result-card h3 {
  margin: 5px 0;
  color: #0c2444;
}

.result-cta {
  text-align: center;
  margin-top: 25px;
}

@media (max-width: 768px) {
  .calculator-form {
    grid-template-columns: 1fr;
  }
  
  .calculator-tabs {
    flex-direction: column;
  }
}





.testimonials-section {
  padding: 80px 0;
  background: #f9fafc;
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 0;
  scroll-snap-type: x mandatory;
  margin: 40px 0;
}

.testimonial-card {
  min-width: 400px;
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  scroll-snap-align: start;
}

.rating {
  color: #f1c40f;
  margin-bottom: 20px;
}

.testimonial-text {
  font-style: italic;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
  position: relative;
}

.testimonial-text:before {
  content: '"';
  font-size: 60px;
  position: absolute;
  top: -20px;
  left: -15px;
  opacity: 0.1;
  font-family: serif;
}

.client-info {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-info img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.client-info h4 {
  margin: 0;
  color: #0c2444;
}

.client-info p {
  margin: 5px 0;
  color: #666;
  font-size: 14px;
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: #54b44c;
  margin-top: 5px;
}

.platform-ratings {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.rating-platform {
  text-align: center;
}

.rating-platform img {
  height: 30px;
  margin-bottom: 10px;
}

.rating-platform .stars {
  color: #f1c40f;
  font-size: 18px;
  margin-bottom: 5px;
}

.rating-platform p {
  color: #666;
  margin: 0;
}

@media (max-width: 768px) {
  .testimonial-card {
    min-width: 85%;
  }
  
  .platform-ratings {
    flex-direction: column;
    gap: 20px;
  }
}





.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-container {
  max-width: 800px;
  margin: 40px auto;
}

.faq-item {
  margin-bottom: 15px;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 25px;
  background: #f9fafc;
  border: none;
  text-align: left;
  font-size: 18px;
  font-weight: 600;
  color: #0c2444;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f1f5f9;
}

.faq-question i {
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 20px 25px;
  max-height: 500px;
}

.faq-answer p, .faq-answer ul {
  margin-bottom: 15px;
  color: #555;
  line-height: 1.7;
}

.faq-answer ul {
  padding-left: 20px;
}

.faq-cta {
  text-align: center;
  margin-top: 50px;
}

.faq-cta p {
  color: #666;
  margin-bottom: 20px;
  font-size: 18px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: #54b44c;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: #47a043;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(84,180,76,0.3);
}

@media (max-width: 768px) {
  .faq-question {
    font-size: 16px;
    padding: 15px 20px;
  }
  
  .faq-answer {
    padding: 0 20px;
  }
}







.main-footer {
  background: #0c2444;
  color: white;
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-col h3 {
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 10px;
}

.footer-col h3:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: #54b44c;
}

.footer-logo img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-about {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #54b44c;
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: white;
  padding-left: 5px;
}

.footer-contact {
  margin-bottom: 25px;
}

.contact-item {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.contact-item i {
  color: #54b44c;
  margin-top: 3px;
}

.contact-item p {
  margin: 0;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
}

.footer-apps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-apps img {
  height: 40px;
  border-radius: 5px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-legal a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-legal a:hover {
  color: white;
}

.footer-copyright {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.payment-methods {
  display: flex;
  gap: 10px;
  font-size: 20px;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}



.ca-experts-section {
  background: linear-gradient(90deg, #eef4ff 0%, #eafbe7 100%);
  padding: 60px 0;
}
.experts-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}
.expert-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(84,180,76,0.08);
  padding: 30px 20px;
  text-align: center;
  width: 220px;
  transition: transform 0.3s;
}
.expert-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 15px 30px rgba(12,36,68,0.12);
}
.expert-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}
.expert-card h4 {
  margin: 0 0 8px;
  color: #0c2444;
  font-size: 17px;
}
.expert-card p {
  color: #54b44c;
  font-size: 14px;
  margin-bottom: 0;
}
.exp-years {
  color: #0c2444;

}


  header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: 0.3s;
}


.page-hero {
    padding: 140px 0 60px;
    margin-top: 0; /* Prevents overlap */
}
    :root {
      --primary: #0c2444;
      --secondary: #54b44c;
      --dark: #081a33;
      --text: #333;
      --text-light: #7f8c8d;
      --light-bg: #f9fafc;
    }
    * { margin:0; padding:0; box-sizing:border-box; font-family:'Segoe UI',Tahoma,Verdana,sans-serif; }
    body { background: var(--light-bg); color: var(--text); }
    a { text-decoration:none; color: inherit; }
    .container { width:100%; max-width:1200px; margin:0 auto; padding:0 20px; }

    /* Header */
    header { background:white; box-shadow:0 2px 10px rgba(0,0,0,0.05); position:fixed; width:100%; z-index:1000; transition:0.3s; }
    .header-container { display:flex; align-items:center; justify-content:space-between; padding:12px 0; }
    .logo { display:flex; align-items:center; }
    .logo img { height:45px; margin-right:10px; }
    .logo-text .main { font-size:22px; font-weight:700; color:var(--primary); }
    .logo-text .sub { font-size:11px; color:var(--text-light); letter-spacing:1px; }
    nav ul { display:flex; list-style:none; }
    nav ul li { margin-left:25px; position:relative; }
    nav ul li a { font-weight:600; color:var(--primary); padding:5px 0; font-size:15px; }
    nav ul li a:hover { color:var(--secondary); }
    nav ul li a::after { content:''; position:absolute; bottom:0; left:0; width:0; height:2px; background:var(--secondary); transition:width 0.3s; }
    nav ul li a:hover::after { width:100%; }
    .mobile-menu-btn { display:none; background:none; border:none; font-size:22px; color:var(--primary); cursor:pointer; }

    /* Hero */
    .page-hero { background:linear-gradient(135deg, var(--primary), var(--dark)); color:white; padding:140px 0 60px; text-align:center; margin-top:72px; }
    .page-hero h1 { font-size:40px; margin-bottom:15px; }
    .page-hero p { font-size:18px; color:rgba(255,255,255,0.8); }

    /* Sections */
    .section-header { text-align:center; margin-bottom:50px; }
    .section-header h2 { font-size:32px; color:var(--primary); }
    .section-header h2 span { color:var(--secondary); }
    .section-header p { color:var(--text-light); font-size:16px; }

    /* Services Grid */
    .services-section { padding:80px 0; }
    .services-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(280px,1fr)); gap:30px; margin-top:40px; }
    .service-card { background:white; border-radius:12px; padding:30px; text-align:center; box-shadow:0 8px 25px rgba(0,0,0,0.03); transition:0.3s; }
    .service-card:hover { transform:translateY(-6px); box-shadow:0 15px 30px rgba(84,180,76,0.1); }
    .service-icon { font-size:30px; width:60px; height:60px; border-radius:50%; background:rgba(84,180,76,0.1); color:var(--secondary); display:flex; align-items:center; justify-content:center; margin:0 auto 20px; }
    .service-card h3 { font-size:20px; margin-bottom:10px; color:var(--primary); }
    .service-card p { font-size:14px; color:var(--text-light); }

    /* Timeline / Process */
    .timeline { position:relative; max-width:800px; margin:0 auto 60px; }
    .timeline::before { content:''; position:absolute; left:50px; top:0; bottom:0; width:3px; background:#e2e8f0; }
    .milestone { display:flex; margin-bottom:40px; }
    .milestone-year { width:100px; text-align:right; padding-right:30px; font-weight:700; color:var(--primary); font-size:20px; }
    .milestone-card { flex:1; background:#f8fafc; border-radius:12px; padding:25px; margin-left:20px; border-left:3px solid var(--secondary); position:relative; }
    .milestone-card::before { content:''; position:absolute; left:-10px; top:25px; width:20px; height:20px; background:var(--secondary); border-radius:50%; }
    .milestone-card h3 { font-size:22px; margin-bottom:10px; color:var(--primary); }

    /* Industries */
    .values-grid { display:grid; grid-template-columns:repeat(auto-fill,minmax(300px,1fr)); gap:30px; margin-top:50px; }
    .value-card { background:#f8fafc; border-radius:12px; padding:40px 30px; text-align:center; border:2px solid transparent; transition:0.3s; }
    .value-card:hover { border-color:var(--secondary); transform:translateY(-10px); box-shadow:0 15px 30px rgba(12,36,68,0.1); }
    .value-icon { width:70px; height:70px; background:rgba(84,180,76,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; color:var(--secondary); font-size:30px; margin-bottom:25px; }
    .value-card h3 { font-size:22px; margin-bottom:15px; color:var(--primary); }
    .value-card p { color:var(--text-light); font-size:16px; line-height:1.6; }

    /* Hero-stats / Results */
    .about-hero-content { max-width:800px; margin:0 auto; text-align:center; }
    .hero-stats { display:flex; justify-content:center; gap:40px; flex-wrap:wrap; margin-top:30px; }
    .stat-item { text-align:center; margin-bottom:20px; }
    .stat-number { font-size:42px; font-weight:700; color:var(--secondary); }
    .stat-label { font-size:16px; color:rgba(255,255,255,0.8); }

    /* CTA */
    .cta-section { padding:100px 0; background:linear-gradient(135deg,var(--primary),var(--dark)); color:white; text-align:center; }
    .cta-container { max-width:700px; margin:0 auto; }
    .cta-container h2 { font-size:36px; margin-bottom:20px; }
    .cta-container h2 span { color:var(--secondary); }
    .cta-container p { font-size:18px; margin-bottom:30px; color:rgba(255,255,255,0.85); }
    .cta-buttons { display:flex; justify-content:center; gap:20px; flex-wrap:wrap; }
    .btn { display:inline-block; padding:12px 25px; border-radius:4px; font-weight:600; text-decoration:none; transition:all 0.3s; }
    .btn-primary { background:var(--secondary); color:white; border:2px solid var(--secondary); }
    .btn-primary:hover { background:transparent; color:var(--secondary); }
    .btn-outline { background:transparent; color:var(--secondary); border:2px solid var(--secondary); }
    .btn-outline:hover { background:var(--secondary); color:white; }

    /* Footer */
    footer.main-footer { background:var(--primary); color:white; padding:60px 0 0; }
    .footer-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(250px,1fr)); gap:40px; margin-bottom:40px; }
    .footer-col h3 { font-size:18px; margin-bottom:25px; position:relative; padding-bottom:10px; }
    .footer-col h3::after { content:''; position:absolute; bottom:0; left:0; width:40px; height:3px; background:var(--secondary); }
    .footer-about { color:rgba(255,255,255,0.7); line-height:1.6; margin-bottom:25px; }
    .footer-social { display:flex; gap:15px; margin-top:20px; }
    .footer-social a { width:36px; height:36px; background:rgba(255,255,255,0.1); border-radius:50%; display:flex; align-items:center; justify-content:center; color:white; transition:0.3s; }
    .footer-social a:hover { background:var(--secondary); transform:translateY(-2px); }
    .footer-links, .footer-legal { list-style:none; padding:0; }
    .footer-links li, .footer-legal a { margin-bottom:12px; color:rgba(255,255,255,0.7); display:block; transition:0.3s; }
    .footer-links a:hover, .footer-legal a:hover { color:white; padding-left:5px; }
    .contact-item { display:flex; gap:15px; align-items:flex-start; margin-bottom:15px; }
    .contact-item i { color:var(--secondary); margin-top:3px; }
    .footer-apps img { height:40px; border-radius:5px; margin-right:10px; }
    .footer-bottom { border-top:1px solid rgba(255,255,255,0.1); padding:25px 0; display:flex; flex-wrap:wrap; justify-content:space-between; gap:20px; }
    .footer-copyright, .payment-methods { display:flex; align-items:center; gap:20px; color:rgba(255,255,255,0.5); font-size:14px; }
    .payment-methods i { font-size:20px; }

    /* Responsive */
    @media(max-width:992px){.section-header h2{font-size:28px;} .hero-stats{gap:30px;} .stat-number{font-size:36px;}}
    @media(max-width:768px){
      nav ul { position:fixed; top:76px; left:-100%; flex-direction:column; width:100%; height:calc(100vh-76px); background:white; align-items:center; padding-top:30px; transition:0.3s; }
      nav ul.active{left:0;}
      .mobile-menu-btn{display:block;}
      .page-hero{padding:90px 0 40px;}
      .page-hero h1{font-size:28px;}
      .services-grid{grid-template-columns:1fr;}
      .values-grid{grid-template-columns:1fr;}
    }

  /* ---- brand palette ---- */
  :root{--primary:#0c2444;--secondary:#54b44c;--dark:#081a33;--light-bg:#f9fafc;
        --text:#333;--text-light:#7f8c8d;}

  /* ---- reset & helpers ---- */
  *,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
  body{font-family:'Segoe UI',Tahoma,Verdana,sans-serif;background:var(--light-bg);
       color:var(--text);padding-top:76px}
  a{text-decoration:none}
  .container{width:100%;max-width:1200px;margin:auto;padding:0 20px}
  .btn{display:inline-block;padding:12px 25px;border-radius:4px;font-weight:600;font-size:14px;transition:.3s}
  .btn-primary{background:var(--secondary);color:#fff;border:2px solid var(--secondary)}
  .btn-primary:hover{background:transparent;color:var(--secondary)}

  /* ===== HEADER ===== */
  header{background:#fff;position:fixed;top:0;left:0;width:100%;z-index:1000;
         box-shadow:0 2px 10px rgba(0,0,0,.05);transition:.3s}
  .header-container{display:flex;justify-content:space-between;align-items:center;padding:12px 0}
  .logo{display:flex;align-items:center}.logo img{height:45px;margin-right:10px}
  .logo-text .main{font-size:22px;font-weight:700;color:var(--primary)}
  .logo-text .sub{font-size:11px;color:var(--text-light);letter-spacing:1px}
  nav ul{display:flex;list-style:none}nav ul li{margin-left:25px;position:relative}
  nav ul li a{font-weight:600;color:var(--primary);font-size:15px;padding:5px 0;transition:color .3s}
  nav ul li a::after{content:'';position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--secondary);transition:width .3s}
  nav ul li a:hover,nav ul li a.active{color:var(--secondary)}
  nav ul li a:hover::after,nav ul li a.active::after{width:100%}
  .mobile-menu-btn{display:none;background:none;border:none;font-size:22px;color:var(--primary);cursor:pointer}

  /* ===== HERO ===== */
  .page-hero{background:linear-gradient(135deg,var(--primary),var(--dark));color:#fff;text-align:center;padding:140px 0 60px}
  .page-hero h1{font-size:40px;margin-bottom:15px}.page-hero p{font-size:18px;color:rgba(255,255,255,.8)}

  /* ===== TEAM GRID ===== */
  .team-section{padding:80px 0}
  .team-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:30px}
  .team-card{background:#fff;border-radius:12px;padding:30px;text-align:center;box-shadow:0 8px 25px rgba(0,0,0,.03);transition:.3s}
  .team-card:hover{transform:translateY(-6px);box-shadow:0 15px 30px rgba(84,180,76,.1)}
  .team-card img{width:120px;height:120px;object-fit:cover;margin-bottom:20px}
  .team-card h3{font-size:20px;color:var(--primary);margin-bottom:5px}
  .team-card .role{font-size:15px;font-weight:600;color:var(--secondary);margin-bottom:12px}
  .team-card p{font-size:14px;color:var(--text-light)}

  /* ===== NEW  Expertise Section ===== */
  .expertise-section{padding:80px 0;background:#fff}
  .expertise-section .section-title{text-align:center;margin-bottom:50px}
  .section-title h2{font-size:32px;color:var(--primary)}
  .section-title h2 span{color:var(--secondary)}
  .expertise-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:30px}
  .skill-card{background:var(--light-bg);border-radius:12px;padding:35px 25px;text-align:center;transition:.3s;border:2px solid transparent}
  .skill-card:hover{transform:translateY(-8px);border-color:var(--secondary);box-shadow:0 12px 25px rgba(12,36,68,.08)}
  .skill-icon{font-size:38px;color:var(--secondary);margin-bottom:18px}
  .skill-card h3{font-size:20px;color:var(--primary);margin-bottom:10px}
  .skill-card p{font-size:14px;color:var(--text-light);line-height:1.6}

  /* ===== CTA ===== */
  .cta-section{background:linear-gradient(135deg,var(--primary),var(--dark));color:#fff;text-align:center;padding:60px 20px}
  .cta-section h2{font-size:28px;margin-bottom:15px}.cta-section p{font-size:16px;margin-bottom:25px;color:rgba(255,255,255,.85)}

  /* ===== FOOTER ===== */
  .main-footer{background:var(--primary);color:#fff;padding:60px 0 0}
  .footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:40px}
  .footer-col h3{font-size:18px;margin-bottom:25px;position:relative;padding-bottom:10px}
  .footer-col h3::after{content:'';position:absolute;left:0;bottom:0;width:40px;height:3px;background:var(--secondary)}
  .footer-logo img{height:40px;margin-bottom:20px}.footer-about{color:rgba(255,255,255,.7);line-height:1.6;margin-bottom:25px}
  .footer-social{display:flex;gap:15px}.footer-social a{width:36px;height:36px;background:rgba(255,255,255,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;transition:.3s}
  .footer-social a:hover{background:var(--secondary);transform:translateY(-3px)}
  .footer-links{list-style:none}.footer-links li{margin-bottom:12px}
  .footer-links a{color:rgba(255,255,255,.7);font-size:15px;transition:.3s}.footer-links a:hover{color:#fff;padding-left:5px}
  .footer-contact .contact-item{display:flex;gap:15px;margin-bottom:15px}.footer-contact i{color:var(--secondary);margin-top:3px}
  .footer-contact p{color:rgba(255,255,255,.7);margin:0;line-height:1.6}
  .footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:25px 0;display:flex;flex-wrap:wrap;justify-content:space-between;gap:20px}
  .footer-legal a{color:rgba(255,255,255,.7);font-size:14px;margin-right:15px;transition:.3s}.footer-legal a:hover{color:#fff}
  .payment-methods{display:flex;gap:10px;font-size:20px}.payment-methods i{opacity:.7}

  /* ---- responsive ---- */
  @media(max-width:768px){
    nav ul{position:fixed;top:76px;left:-100%;flex-direction:column;width:100%;height:calc(100vh - 76px);background:#fff;align-items:center;padding-top:30px;transition:left .3s}
    nav ul.active{left:0}
    nav ul li{margin:12px 0}
    .mobile-menu-btn{display:block}
    .page-hero h1{font-size:28px}
  }
  @media(max-width:480px){
    .expertise-section{padding:60px 0}
    .section-title h2{font-size:26px}
    .cta-section h2{font-size:24px}.btn{width:100%;text-align:center}
    .footer-grid{grid-template-columns:1fr}
  }



  /* -----------  Brand palette  ----------- */
  :root{--primary:#0c2444;--secondary:#54b44c;--dark:#081a33;--light-bg:#f9fafc;
        --text:#333;--text-light:#7f8c8d;}

  /* -----------  Reset & helpers  ----------- */
  *,*::before,*::after{margin:0;padding:0;box-sizing:border-box}
  body{font-family:'Segoe UI',Tahoma,Verdana,sans-serif;background:var(--light-bg);
       color:var(--text);padding-top:76px}
  a{text-decoration:none}
  .container{width:100%;max-width:1200px;margin:auto;padding:0 20px}

  /* Buttons */
  .btn{display:inline-block;padding:12px 25px;border-radius:4px;font-weight:600;font-size:14px;transition:.3s}
  .btn-primary{background:var(--secondary);color:#fff;border:2px solid var(--secondary)}
  .btn-primary:hover{background:transparent;color:var(--secondary)}

  /* ===== HEADER ===== */
  header{background:#fff;position:fixed;top:0;width:100%;z-index:1000;
         box-shadow:0 2px 10px rgba(0,0,0,.05);transition:.3s}
  .header-container{display:flex;justify-content:space-between;align-items:center;padding:12px 0}
  .logo{display:flex;align-items:center}.logo img{height:45px;margin-right:10px}
  .logo-text .main{font-size:22px;font-weight:700;color:var(--primary)}
  .logo-text .sub{font-size:11px;color:var(--text-light);letter-spacing:1px}
  nav ul{display:flex;list-style:none}nav ul li{margin-left:25px;position:relative}
  nav ul li a{font-weight:600;color:var(--primary);font-size:15px;padding:5px 0;transition:color .3s}
  nav ul li a::after{content:'';position:absolute;left:0;bottom:0;height:2px;width:0;background:var(--secondary);transition:width .3s}
  nav ul li a:hover,nav ul li a.active{color:var(--secondary)}
  nav ul li a:hover::after,nav ul li a.active::after{width:100%}
  .mobile-menu-btn{display:none;background:none;border:none;font-size:22px;color:var(--primary);cursor:pointer}

  /* ===== HERO ===== */
  .page-hero{background:linear-gradient(135deg,var(--primary),var(--dark));color:#fff;text-align:center;padding:140px 0 60px}
  .page-hero h1{font-size:40px;margin-bottom:15px}.page-hero p{font-size:18px;color:rgba(255,255,255,.8)}

  /* ===== CONTACT SECTION ===== */
  .contact-section{padding:80px 0}
  .contact-wrap{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:50px}
  /* --- form --- */
  .contact-form{background:#fff;border-radius:12px;box-shadow:0 8px 25px rgba(0,0,0,.03);padding:35px}
  .contact-form h2{font-size:24px;color:var(--primary);margin-bottom:25px;text-align:center}
  .form-group{margin-bottom:20px}
  .form-group label{display:block;font-size:14px;font-weight:600;margin-bottom:6px;color:var(--text)}
  .form-group input,.form-group textarea{
      width:100%;padding:12px 14px;border:1px solid #ddd;border-radius:6px;font-size:15px;background:#fff}
  .form-group input:focus,.form-group textarea:focus{outline:none;border-color:var(--secondary)}
  .form-group textarea{resize:vertical;min-height:120px}
  /* --- info cards --- */
  .info-cards{display:grid;grid-template-columns:1fr;gap:25px}
  .info-card{background:var(--light-bg);border-left:4px solid var(--secondary);border-radius:10px;padding:25px;display:flex;gap:20px;align-items:flex-start;transition:.3s}
  .info-card:hover{transform:translateY(-6px);box-shadow:0 12px 25px rgba(12,36,68,.08)}
  .info-card i{font-size:26px;color:var(--secondary);margin-top:4px}
  .info-card h3{font-size:18px;color:var(--primary);margin-bottom:5px}
  .info-card p{font-size:15px;color:var(--text-light);line-height:1.6}

  /* ===== MAP SECTION ===== */
  .map-section iframe{width:100%;height:400px;border:0;display:block}

  /* ===== CTA ===== */
  .cta-section{background:linear-gradient(135deg,var(--primary),var(--dark));color:#fff;text-align:center;padding:60px 20px}
  .cta-section h2{font-size:28px;margin-bottom:15px}.cta-section p{font-size:16px;margin-bottom:25px;color:rgba(255,255,255,.85)}

  /* ===== FOOTER ===== (same as previous) */
  .main-footer{background:var(--primary);color:#fff;padding:60px 0 0}
  .footer-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(250px,1fr));gap:40px;margin-bottom:40px}
  .footer-col h3{font-size:18px;margin-bottom:25px;position:relative;padding-bottom:10px}
  .footer-col h3::after{content:'';position:absolute;left:0;bottom:0;width:40px;height:3px;background:var(--secondary)}
  .footer-logo img{height:40px;margin-bottom:20px}.footer-about{color:rgba(255,255,255,.7);line-height:1.6;margin-bottom:25px}
  .footer-social{display:flex;gap:15px}.footer-social a{width:36px;height:36px;background:rgba(255,255,255,.1);border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;transition:.3s}
  .footer-social a:hover{background:var(--secondary);transform:translateY(-3px)}
  .footer-links{list-style:none}.footer-links li{margin-bottom:12px}
  .footer-links a{color:rgba(255,255,255,.7);font-size:15px;transition:.3s}.footer-links a:hover{color:#fff;padding-left:5px}
  .footer-contact .contact-item{display:flex;gap:15px;margin-bottom:15px}.footer-contact i{color:var(--secondary);margin-top:3px}
  .footer-contact p{color:rgba(255,255,255,.7);margin:0;line-height:1.6}
  .footer-bottom{border-top:1px solid rgba(255,255,255,.1);padding:25px 0;display:flex;flex-wrap:wrap;justify-content:space-between;gap:20px}
  .footer-legal a{color:rgba(255,255,255,.7);font-size:14px;margin-right:15px;transition:.3s}.footer-legal a:hover{color:#fff}
  .payment-methods{display:flex;gap:10px;font-size:20px}.payment-methods i{opacity:.7}

  /* -----------  Responsive tweaks ----------- */
  @media(max-width:768px){
    nav ul{position:fixed;top:76px;left:-100%;flex-direction:column;width:100%;height:calc(100vh - 76px);
           background:#fff;align-items:center;padding-top:30px;transition:left .3s}
    nav ul.active{left:0}
    nav ul li{margin:12px 0}
    .mobile-menu-btn{display:block}
    .page-hero h1{font-size:28px}
  }
  @media(max-width:480px){
    .contact-section{padding:60px 0}
    .contact-wrap{grid-template-columns:1fr}
    .cta-section h2{font-size:24px}.btn{width:100%;text-align:center}
    .footer-grid{grid-template-columns:1fr}
  }
 

 
        /* Consistent Color Scheme */
        :root {
            --primary: #0c2444;    /* Navy blue */
            --secondary: #54b44c;  /* Fresh green */
            --accent: #e74c3c;
            --light: #ecf0f1;
            --dark: #081a33;       /* Darker navy */
            --gold: #f1c40f;
            --text: #333;
            --text-light: #7f8c8d;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            overflow-x: hidden;
            color: var(--text);
            background: #f9fafc;
        }
        
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .btn {
            display: inline-block;
            padding: 12px 25px;
            border-radius: 4px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            cursor: pointer;
            font-size: 14px;
        }
        
        .btn-primary {
            background-color: var(--secondary);
            color: white;
            border: 2px solid var(--secondary);
        }
        
        .btn-primary:hover {
            background-color: transparent;
            color: var(--secondary);
        }
        
        .btn-outline {
            background-color: transparent;
            color: var(--secondary);
            border: 2px solid var(--secondary);
        }
        
        .btn-outline:hover {
            background-color: var(--secondary);
            color: white;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 1000;
            transition: all 0.3s ease;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
          margin-right: 5px;
          width: 17%;
          height: auto;
          margin-top: -9px
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
        }
        
        .logo-text .main {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1;
        }
        
        .logo-text .sub {
            font-size: 11px;
            color: var(--text-light);
            letter-spacing: 1px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
            position: relative;
        }
        
        nav ul li a {
            text-decoration: none;
            color: var(--primary);
            font-weight: 600;
            transition: color 0.3s ease;
            position: relative;
            padding: 5px 0;
            font-size: 15px;
        }
        
        nav ul li a:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            background: var(--secondary);
            bottom: 0;
            left: 0;
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover:after {
            width: 100%;
        }
        
        nav ul li a:hover {
            color: var(--secondary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--primary);
            cursor: pointer;
        }
        
        /* About Hero Section */
        .about-hero {
            background: linear-gradient(135deg, #0c2444 0%, #14325a 100%);
            color: white;
            padding: 150px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .about-hero-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
        }
        
        .about-hero h1 {
            font-size: 46px;
            margin-bottom: 20px;
            line-height: 1.3;
        }
        
        .about-hero h1 span {
            color: var(--secondary);
        }
        
        .about-hero p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .hero-buttons {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
            justify-content: center;
        }
        
        .hero-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        .about-hero-shape {
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(84, 180, 76, 0.05);
            top: -100px;
            right: -100px;
            z-index: 1;
        }
        
        /* Our Story Section */
        .story-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-header h2 {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .section-header h2 span {
            color: var(--secondary);
        }
        
        .section-header p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 40px auto 0;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            left: 50px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: #e2e8f0;
        }
        
        .milestone {
            display: flex;
            margin-bottom: 40px;
            position: relative;
        }
        
        .milestone-year {
            width: 100px;
            text-align: right;
            padding-right: 30px;
            font-weight: 700;
            color: var(--primary);
            font-size: 20px;
        }
        
        .milestone-card {
            flex: 1;
            background: #f8fafc;
            border-radius: 12px;
            padding: 25px;
            position: relative;
            margin-left: 20px;
            border-left: 3px solid var(--secondary);
        }
        
        .milestone-card::before {
            content: '';
            position: absolute;
            left: -10px;
            top: 25px;
            width: 20px;
            height: 20px;
            background: var(--secondary);
            border-radius: 50%;
        }
        
        .milestone-card h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--primary);
        }
        
        /* Team Section */
        .team-section {
            padding: 80px 0;
            background: #f8fafc;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-card {
            background: white;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: transform 0.3s ease;
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
        }
        
        .team-image {
            position: relative;
            height: 250px;
            overflow: hidden;
            border-bottom: 3px solid var(--secondary);
        }
        
        .team-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .team-social {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 10px;
            opacity: 0;
            transition: opacity 0.3s ease;
        }
        
        .team-card:hover .team-social {
            opacity: 1;
        }
        
        .team-social a {
            width: 40px;
            height: 40px;
            background: var(--secondary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
        }
        
        .team-social a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }
        
        .team-info {
            padding: 25px;
        }
        
        .team-info h3 {
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 5px;
        }
        
        .team-role {
            color: var(--secondary);
            font-weight: 600;
            margin-bottom: 15px;
            font-size: 16px;
        }
        
        .team-bio {
            color: var(--text-light);
            font-size: 15px;
            line-height: 1.6;
        }
        
        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: white;
        }
        
        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .value-card {
            background: #f8fafc;
            border-radius: 12px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .value-card:hover {
            border-color: var(--secondary);
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(12,36,68,0.1);
        }
        
        .value-icon {
            width: 70px;
            height: 70px;
            background: rgba(84, 180, 76, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: var(--secondary);
            font-size: 30px;
        }
        
        .value-card h3 {
            font-size: 22px;
            margin-bottom: 15px;
            color: var(--primary);
        }
        
        .value-card p {
            color: var(--text-light);
            line-height: 1.6;
            font-size: 16px;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
            color: white;
            text-align: center;
        }
        
        .cta-container {
            max-width: 700px;
            margin: 0 auto;
        }
        
        .cta-container h2 {
            font-size: 36px;
            margin-bottom: 20px;
        }
        
        .cta-container h2 span {
            color: var(--secondary);
        }
        
        .cta-container p {
            font-size: 18px;
            margin-bottom: 30px;
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
        
        /* Footer */
        .main-footer {
            background: #0c2444;
            color: white;
            padding: 60px 0 0;
        }
        
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-col h3 {
            font-size: 18px;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h3:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background: #54b44c;
        }
        
        .footer-logo img {
            height: 40px;
            margin-bottom: 20px;
        }
        
        .footer-about {
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
            margin-bottom: 25px;
        }
        
        .footer-social {
            display: flex;
            gap: 15px;
        }
        
        .footer-social a {
            width: 36px;
            height: 36px;
            background: rgba(255,255,255,0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }
        
        .footer-social a:hover {
            background: #54b44c;
            transform: translateY(-3px);
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-contact {
            margin-bottom: 25px;
        }
        
        .contact-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            align-items: flex-start;
        }
        
        .contact-item i {
            color: #54b44c;
            margin-top: 3px;
        }
        
        .contact-item p {
            margin: 0;
            color: rgba(255,255,255,0.7);
            line-height: 1.6;
        }
        
        .footer-apps {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
        }
        
        .footer-apps img {
            height: 40px;
            border-radius: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding: 25px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 20px;
        }
        
        .footer-legal {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        
        .footer-legal a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        
        .footer-legal a:hover {
            color: white;
        }
        
        .footer-copyright {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
        }
        
        .payment-methods {
            display: flex;
            gap: 10px;
            font-size: 20px;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-hero h1 {
                font-size: 36px;
            }
            
            .hero-stats {
                gap: 30px;
            }
            
            .stat-number {
                font-size: 36px;
            }
        }
        
        @media (max-width: 768px) {
            nav ul {
                position: fixed;
                top: 76px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 76px);
                background: white;
                flex-direction: column;
                align-items: center;
                padding-top: 30px;
                transition: left 0.3s ease;
            }
            
            nav ul.active {
                left: 0;
            }
            
            nav ul li {
                margin: 12px 0;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .about-hero {
                padding: 120px 0 60px;
            }
            
            .about-hero h1 {
                font-size: 28px;
            }
            
            .section-header h2 {
                font-size: 28px;
            }
            
            .timeline::before {
                left: 30px;
            }
            
            .milestone-year {
                width: 60px;
                padding-right: 15px;
            }
            
            .cta-container h2 {
                font-size: 28px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .footer-bottom {
                flex-direction: column;
            }
        }
        
        @media (max-width: 480px) {
            .about-hero {
                padding: 100px 0 40px;
            }
            
            .about-hero h1 {
                font-size: 24px;
            }
            
            .hero-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .btn {
                width: 100%;
                text-align: center;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 20px;
            }
            
            .timeline::before {
                display: none;
            }
            
            .milestone {
                flex-direction: column;
            }
            
            .milestone-year {
                width: 100%;
                text-align: left;
                padding: 0 0 10px 0;
            }
            
            .milestone-card {
                margin-left: 0;
            }
            
            .milestone-card::before {
                display: none;
            }
            
            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }
            
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
  /* Remove unwanted gap between header and hero section */
header {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
}

.page-hero, .hero, .container.header-container {
  margin-top: 0 !important;
  /* padding-top: 0 !important; */
}

/* Ensure 5 members in one row for Experts section on desktop */
.ca-experts-section .experts-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  justify-items: center;
}

.ca-experts-section .expert-card {
  width: 100%;
  max-width: 220px;
}

@media (max-width: 1024px) {
  .ca-experts-section .experts-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .ca-experts-section .experts-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 480px) {
  .ca-experts-section .experts-grid {
    grid-template-columns: 1fr !important;
  }
}