
    :root {
      --primary: #552913;
      --primary-dark: #3c1d0d;
      --secondary: #f8f4e8;
      --accent: #552913;
      --accent-light: #eeeae7;
      --warning: #f9a825;
      --warning-light: #fff8e1;
      --danger: #d32f2f;
      --danger-light: #ffebee;
      --text-dark: #552913;
      --text-muted: #64748b;
      --bg-light: #fafafa;
      --card-bg: #ffffff;
      --border-color: #e2e8f0;
    }
    


/* Optional: Preload critical images */
#hero-image,
.logo-image {
  content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1" height="1"></svg>');
}




    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    /* body {
      font-family: 'Poppins', sans-serif;
      color: var(--text-dark);
      line-height: 1.6;
      background-color: var(--bg-light);
    } */
    
    /* Sticky Header */
    .sticky-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border-color);
      padding: 0.75rem 0;
      transform: translateY(-100%);
      transition: transform 0.3s ease;
    }
    
    .sticky-header.visible {
      transform: translateY(0);
    }
    
    .header-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: var(--text-dark);
    }
    
    .header-logo {
     
      background: var(--primary);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    
    .btn-primary-custom {
      background: var(--primary);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 0.625rem 1.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-primary-custom:hover {
      background: var(--primary-dark);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(30, 95, 168, 0.3);
    }
    
    .btn-outline-custom {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 50px;
      padding: 0.625rem 1.5rem;
      font-weight: 600;
      transition: all 0.3s ease;
    }
    
    .btn-outline-custom:hover {
      background: #eeeae7;
      color: var(--primary);
    }
    
    /* Hero Section */
    .hero-section {
      position: relative;
      padding: 7rem 0 4rem;
      min-height: 100vh;
      display: flex;
      align-items: center;
      /* background: url('img/compressed/7.webp'); */
      overflow: hidden;
    }
    
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url('img/compressed/7.webp');
      background-size: cover;
      background-position: center;
      z-index: 0;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      /* background: linear-gradient(to right, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 50%, rgba(255,255,255,0.75) 100%); */
      z-index: 1;
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
    }
    
    .hero-title {
      font-size: 48px;
      font-weight: 700;
      line-height: 1.2;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }
    
    
    
    .hero-subtitle {
      font-size: 1.125rem;
      color: var(--text-muted);
      margin-bottom: 2rem;
    }
    
    .trust-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    
    .trust-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.875rem;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(4px);
      border-radius: 12px;
      border: 1px solid var(--border-color);
      box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }
    
    .trust-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: #eeeae7;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }
    
    .trust-text {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-dark);
    }
    
    /* Lead Form */
    .lead-form-card {
      background: white;
      border-radius: 20px;
      padding: 1.5rem;
      box-shadow: 0 10px 40px rgba(0,0,0,0.1);
      border: 1px solid var(--border-color);
    }
    
    @media (min-width: 768px) {
      .lead-form-card {
        padding: 2rem;
      }
    }
    
    .lead-form-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1.5rem;
    }
    
    .form-label-custom {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }
    
    .form-control-custom {
      height: 48px;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      padding: 0.75rem 1rem;
      font-size: 0.9375rem;
      transition: border-color 0.3s ease, box-shadow 0.3s ease;
    }
    
    .form-control-custom:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.15);
      outline: none;
    }
    
    .form-select-custom {
      height: 48px;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      padding: 0.75rem 1rem;
      font-size: 0.9375rem;
      cursor: pointer;
    }
    
    .form-select-custom:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(30, 95, 168, 0.15);
      outline: none;
    }
    
    .btn-submit {
      width: 100%;
      height: 48px;
      border-radius: 50px;
      background: var(--primary);
      color: white;
      font-weight: 600;
      border: none;
      transition: all 0.3s ease;
    }
    
    .btn-submit:hover {
      background: var(--primary-dark);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(30, 95, 168, 0.3);
    }
    
    .form-note {
      text-align: center;
      font-size: 0.875rem;
      color: var(--text-muted);
      margin-top: 1rem;
    }
    
    /* Section Styles */
    .section {
      padding: 4rem 0;
    }
    
    @media (min-width: 768px) {
      .section {
        padding: 6rem 0;
      }
    }
    
    .section-secondary {
      background: var(--secondary);
    }
    
    .section-muted {
      background: rgba(248, 244, 232, 0.5);
    }
    
    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 2.5rem;
    }
    
    @media (min-width: 768px) {
      .section-title {
        font-size: 2rem;
      }
    }
    
    @media (min-width: 992px) {
      .section-title {
        font-size: 2.25rem;
      }
    }
    
    /* Concern Section */
    .concern-icon {
      width: 64px;
      height: 64px;
      background: var(--warning-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--warning);
    }
    
    .concern-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      background: white;
      padding: 1rem 1.25rem;
      border-radius: 12px;
      border: 1px solid var(--border-color);
      margin-bottom: 1rem;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
    }
    
    .concern-number {
      width: 32px;
      height: 32px;
      min-width: 32px;
      background: var(--warning-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--warning);
      font-weight: 600;
    }
    
    /* Reassurance Section */
    .reassurance-card {
      /* background: linear-gradient(135deg, #eeeae7 0%, rgba(124, 179, 66, 0.1) 100%); */
      border-radius: 24px;
      padding: 2rem;
      text-align: center;
      border: 1px solid rgba(30, 95, 168, 0.2);
    }
    
    @media (min-width: 768px) {
      .reassurance-card {
        padding: 3rem;
      }
    }
    
    .reassurance-icon {
      width: 64px;
      height: 64px;
      background: #eeeae7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--primary);
    }
    
    .reassurance-text {
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--text-dark);
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    
    @media (min-width: 768px) {
      .reassurance-text {
        font-size: 1.5rem;
      }
    }
    
    /* Fear Section */
    .section-danger {
      background: var(--danger-light);
    }
    
    .danger-icon {
      width: 64px;
      height: 64px;
      background: rgba(211, 47, 47, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--danger);
    }
    
    .warning-card {
      background: white;
      border: 1px solid rgba(211, 47, 47, 0.2);
      border-radius: 16px;
      padding: 1.5rem;
      text-align: center;
      height: 100%;
    }
    
    .warning-number {
      width: 48px;
      height: 48px;
      background: rgba(211, 47, 47, 0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: var(--danger);
      font-weight: 700;
      font-size: 1.25rem;
    }
    
    /* Why Choose Section */
    .benefit-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .benefit-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: var(--accent-light);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }
    
    .benefit-text {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--text-dark);
    }
    
    .image-container {
      position: relative;
    }
    
    .main-image {
      width: 100%;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    }
    
    .main-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      aspect-ratio: 4/3;
    }
    
    .years-badge {
      position: absolute;
      bottom: -16px;
      left: -16px;
      width: 96px;
      height: 96px;
      background: var(--secondary);
      border-radius: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    }
    
    .years-number {
      font-size: 2rem;
      font-weight: 700;
      color: var(--text-dark);
    }
    
    .years-text {
      font-size: 0.75rem;
      color: var(--text-muted);
    }
    
    /* Comfort Section */
    .feature-card {
     
      background: white;
      padding: 16px;
      border-radius: 8px;
      border: 1px solid var(--border-color);
      height: 100%;
    }
    
    .feature-icon {
      width: 40px;
      height: 40px;
      min-width: 40px;
      background: var(--accent-light);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--accent);
    }
    
    .feature-content {
      margin-top: 8px;
      text-align: center !important; 
    }
    
    .feature-check {
      color: var(--accent);
    }
    
    /* Parent Benefits */
    .parent-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem 2rem;
      text-align: center;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
    }
    
    .parent-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }
    
    .parent-icon {
      width: 64px;
      height: 64px;
      background: #eeeae7;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--primary);
    }
    
    .parent-title {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-dark);
    }
    
    /* Programs Section */
    .program-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem 2rem;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    }
    
    .program-header {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .program-icon {
      width: 56px;
      height: 56px;
      min-width: 56px;
      background: #eeeae7;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }
    
    .program-title {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 0.25rem;
    }
    
    .program-subtitle {
      color: var(--text-muted);
    }
    
    .program-highlight {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: var(--accent-light);
      padding: 1rem;
      border-radius: 12px;
    }
    
    .program-highlight i {
      color: var(--accent);
    }
    
    /* Facilities */
    .facility-card {
      background: white;
      border-radius: 8px;
      padding: 16px;
      text-align: center;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      transition: all 0.3s ease;
      height: 100%;
    }
    .facility-card > img {
      border-radius: 8px;
    
    }
    
    .facility-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }
    
    .facility-icon {
      width: 56px;
      height: 56px;
      background: #eeeae7;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      color: var(--primary);
    }
    
    .facility-name {
      margin-top: 12px;
      font-weight: 600;
      color: var(--text-dark);
    }
    
    /* Admission Procedure */
    .timeline {
      position: relative;
      padding-left: 3rem;
    }
    
    @media (min-width: 768px) {
      .timeline {
        padding-left: 4rem;
      }
    }
    
    .timeline::before {
      content: '';
      position: absolute;
      left: 24px;
      top: 0;
      bottom: 0;
      width: 2px;
      background: #eeeae7;
    }
    
    @media (min-width: 768px) {
      .timeline::before {
        left: 32px;
      }
    }
    
    .timeline-item {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .timeline-item {
        gap: 1.5rem;
      }
    }
    
    .timeline-icon {
      position: absolute;
      left: -3rem;
      width: 48px;
      height: 48px;
      background: var(--primary);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      box-shadow: 0 4px 12px rgba(30, 95, 168, 0.3);
      z-index: 1;
    }
    
    @media (min-width: 768px) {
      .timeline-icon {
        left: -4rem;
        width: 64px;
        height: 64px;
      }
    }
    
    .timeline-content {
      flex: 1;
      background: white;
      border-radius: 12px;
      padding: 1rem 1.25rem;
      border: 1px solid var(--border-color);
      margin-top: 4px;
    }
    
    .timeline-step {
      display: inline-block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--primary);
      background: #eeeae7;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
      margin-bottom: 0.5rem;
    }
    
    .timeline-text {
      font-weight: 500;
      color: var(--text-dark);
    }
    
    /* Campus Visit CTA */
    .cta-section {
      background: var(--primary);
      padding: 4rem 0;
    }
    
    @media (min-width: 768px) {
      .cta-section {
        padding: 6rem 0;
      }
    }
    
    .cta-icon {
      width: 64px;
      height: 64px;
      background: rgba(255, 255, 255, 0.2);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
    }
    
    .cta-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: white;
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .cta-title {
        font-size: 2rem;
      }
    }
    
    .cta-benefits {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 2rem;
    }
    
    @media (min-width: 576px) {
      .cta-benefits {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
      }
    }
    
    .cta-benefit {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.9);
    }
    
    .btn-cta {
      background: white;
      color: var(--primary);
      border: none;
      border-radius: 50px;
      padding: 1rem 2rem;
      font-weight: 600;
      font-size: 1.125rem;
      transition: all 0.3s ease;
    }
    
    .btn-cta:hover {
      background: rgba(255, 255, 255, 0.9);
      color: var(--primary);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    
    /* FAQ Section */
    .accordion-custom .accordion-item {
      background: white;
      border: 1px solid var(--border-color);
      border-radius: 12px !important;
      margin-bottom: 1rem;
      overflow: hidden;
    }
    
    .accordion-custom .accordion-button {
      font-weight: 600;
      color: var(--text-dark);
      background: white;
      padding: 1.25rem 1.5rem;
    }
    
    .accordion-custom .accordion-button:not(.collapsed) {
      background: white;
      color: var(--primary);
      box-shadow: none;
    }
    
    .accordion-custom .accordion-button:focus {
      box-shadow: none;
      border-color: transparent;
    }
    
    .accordion-custom .accordion-body {
      padding: 0 1.5rem 1.25rem;
      color: var(--text-muted);
    }
    
    /* Trust Section */
    .trust-list-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }
    
    .trust-list-icon {
      width: 48px;
      height: 48px;
      min-width: 48px;
      background: #eeeae7;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--primary);
    }
    
    .trust-list-text {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--text-dark);
    }
    
    .trust-images {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }
    
    .trust-image-tall {
      grid-row: span 2;
      border-radius: 16px;
      overflow: hidden;
    }
    
    .trust-image-tall img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .trust-image-square {
      border-radius: 16px;
      overflow: hidden;
    }
    
    .trust-image-square img {
      width: 100%;
      aspect-ratio: 1;
      object-fit: cover;
    }
    
    /* Final Message */
    .final-icon {
      width: 64px;
      height: 64px;
      background: #eeeae7;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: var(--primary);
    }
    
    .final-title {
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      text-align: center;
      margin-bottom: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .final-title {
        font-size: 2rem;
      }
    }
    
    .final-text {
      font-size: 1.125rem;
      color: var(--text-muted);
      line-height: 1.7;
      text-align: center;
      margin-bottom: 2.5rem;
    }
    
    /* Footer */
    .footer {
      background: var(--text-dark);
      color: white;
      padding: 3rem 0;
    }
    
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }
    
    .footer-logo {
     
      background: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-dark);
    }
    
    .footer-name {
      font-weight: 600;
      font-size: 1.125rem;
    }
    
    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-top: 1.5rem;
    }
    
    @media (min-width: 768px) {
      .footer-contact {
        flex-direction: row;
        gap: 2rem;
        margin-top: 0;
      }
    }
    
    .footer-contact-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.875rem;
    }
    
    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      text-align: center;
      color: rgba(255, 255, 255, 0.6);
      font-size: 0.875rem;
    }
    
    /* Mobile Sticky CTA */
    .mobile-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: white;
      padding: 1rem;
      border-top: 1px solid var(--border-color);
      box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
      display: flex;
      gap: 0.75rem;
    }
    
    @media (min-width: 768px) {
      .mobile-cta {
        display: none;
      }
    }
    
    .mobile-cta .btn {
      flex: 1;
      border-radius: 50px;
      font-weight: 600;
      padding: 0.75rem;
    }
    
    /* Utility Classes */
    .text-muted-custom {
      color: var(--text-muted);
    }
    
    .mb-spacer {
      margin-bottom: 4rem;
    }
     /* Testimonial Section */
    .testimonial-card {
      background: white;
      border-radius: 16px;
      padding: 1.5rem;
      border: 1px solid var(--border-color);
      box-shadow: 0 4px 16px rgba(0,0,0,0.05);
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: all 0.3s ease;
    }
    
    .testimonial-card:hover {
      box-shadow: 0 8px 24px rgba(0,0,0,0.1);
      transform: translateY(-4px);
    }
    
    .testimonial-quote {
      color: var(--primary);
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 0.75rem;
      opacity: 0.3;
    }
    
    .testimonial-text {
      color: var(--text-muted);
      font-size: 0.9375rem;
      line-height: 1.6;
      flex: 1;
      margin-bottom: 1.25rem;
    }
    
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
    }
    
    .testimonial-avatar {
      width: 48px;
      height: 48px;
      min-width: 48px;
      border-radius: 50%;
      overflow: hidden;
      border: 2px solid var(--primary);
    }
    
    .testimonial-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    
    .testimonial-name {
      font-size: 0.9375rem;
      font-weight: 600;
      color: var(--text-dark);
      margin-bottom: 0;
    }
    
    .testimonial-role {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-bottom: 0;
    }
    
    .testimonial-rating {
      color: var(--warning);
      font-size: 0.875rem;
    }
    
    .testimonial-rating i {
      margin-right: 2px;
    }
    @media (max-width: 767px) {
      body {
        padding-bottom: 80px;
      }
      .hero-title{ font-size: 26px;}
      .trust-grid { display: inline; } 
      .trust-item { margin-bottom: 16px; }
      .SecondarySecTC { text-align: left !important;}
      .hero-section { padding: 2rem 0 4rem; }
      .phhide { display: none !important; }
      .phshow { display: block !important}
    }
    .phshow { display: none }
