:root {
      --primary: #0284c7;
        --primary-dark: #0369a1;
          --text-dark: #0f172a;
            --text-muted: #475569;
              --bg-light: #f8fafc;
                --bg-white: #ffffff;
                  --border: #e2e8f0;
                    --radius: 8px;
                    }

                    * { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', sans-serif; }
                    body { color: var(--text-dark); background: var(--bg-white); line-height: 1.6; }

                    /* Navigation */
                    .navbar { position: sticky; top: 0; background: var(--bg-white); border-bottom: 1px solid var(--border); z-index: 100; }
                    .nav-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 1rem 1.5rem; }
                    .brand-logo { font-size: 1.5rem; font-weight: 700; color: var(--text-dark); text-decoration: none; }
                    .brand-logo span { color: var(--primary); }
                    .nav-links a { margin-left: 1.5rem; text-decoration: none; color: var(--text-muted); font-size: 0.95rem; font-weight: 500; }
                    .nav-links a:hover { color: var(--primary); }
                    .btn-nav { background: var(--primary); color: #fff !important; padding: 0.5rem 1rem; border-radius: var(--radius); }

                    /* Hero */
                    .hero-section { padding: 4rem 1.5rem; background: var(--bg-light); border-bottom: 1px solid var(--border); }
                    .hero-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.2fr 1fr; gap: 3rem; align-items: center; }
                    .badge { display: inline-block; background: #e0f2fe; color: var(--primary-dark); padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 1rem; }
                    .hero-content h1 { font-size: 2.5rem; line-height: 1.2; margin-bottom: 1rem; }
                    .hero-content p { font-size: 1.1rem; color: var(--text-muted); margin-bottom: 2rem; }
                    .hero-actions { display: flex; gap: 1rem; margin-bottom: 2.5rem; }
                    .btn-primary { background: var(--primary); color: #fff; padding: 0.75rem 1.5rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; border: none; cursor: pointer; }
                    .btn-primary:hover { background: var(--primary-dark); }
                    .btn-secondary { background: #fff; color: var(--text-dark); padding: 0.75rem 1.5rem; border-radius: var(--radius); text-decoration: none; font-weight: 600; border: 1px solid var(--border); }
                    .hero-stats { display: flex; gap: 2rem; border-top: 1px solid var(--border); padding-top: 1.5rem; }
                    .stat-item strong { display: block; font-size: 1.5rem; color: var(--primary-dark); }
                    .stat-item span { font-size: 0.85rem; color: var(--text-muted); }
                    .hero-image img { width: 100%; border-radius: var(--radius); box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1); height: 380px; object-fit: cover; }

                    /* Sections */
                    .section-container { max-width: 1200px; margin: 0 auto; padding: 4.5rem 1.5rem; }
                    .section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem auto; }
                    .section-header h2 { font-size: 2rem; margin-bottom: 0.5rem; }
                    .section-header p { color: var(--text-muted); }
                    .bg-alt { background: var(--bg-light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

                    /* Modality Cards */
                    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
                    .service-card { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: #fff; }
                    .service-card img { width: 100%; height: 200px; object-fit: cover; }
                    .card-body { padding: 1.5rem; }
                    .card-body h3 { margin-bottom: 0.5rem; font-size: 1.25rem; }
                    .card-body p { font-size: 0.95rem; color: var(--text-muted); margin-bottom: 1rem; }
                    .feature-list { list-style: none; font-size: 0.85rem; color: var(--text-muted); }
                    .feature-list li { margin-bottom: 0.35rem; position: relative; padding-left: 1rem; }
                    .feature-list li::before { content: "•"; color: var(--primary); position: absolute; left: 0; font-weight: bold; }

                    /* Pathway */
                    .timeline-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
                    .step-card { background: #fff; padding: 1.5rem; border-radius: var(--radius); border: 1px solid var(--border); }
                    .step-num { font-size: 1.25rem; font-weight: 700; color: var(--primary); margin-bottom: 0.5rem; }
                    .step-card h4 { margin-bottom: 0.5rem; }
                    .step-card p { font-size: 0.85rem; color: var(--text-muted); }

                    /* Admissions & Form */
                    .contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 3rem; align-items: start; }
                    .coverage-badges { display: flex; flex-wrap: wrap; gap: 0.5rem; margin: 1.5rem 0; }
                    .coverage-badges span { background: #e0f2fe; color: var(--primary-dark); font-size: 0.8rem; font-weight: 500; padding: 0.3rem 0.7rem; border-radius: 4px; }
                    .info-block strong { display: block; margin-top: 1rem; font-size: 0.9rem; }
                    .info-block p { font-size: 0.85rem; color: var(--text-muted); }
                    .form-wrapper { background: var(--bg-light); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; }
                    .intake-form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1rem; }
                    .form-group { display: flex; flex-direction: column; gap: 0.4rem; }
                    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
                    .form-group label { font-size: 0.85rem; font-weight: 500; }
                    .form-group input, .form-group select, .form-group textarea { padding: 0.65rem; border: 1px solid var(--border); border-radius: 4px; font-size: 0.95rem; }
                    .btn-block { width: 100%; margin-top: 0.5rem; }
                    .form-feedback { margin-top: 1rem; font-size: 0.9rem; text-align: center; }

                    /* Footer */
                    .footer { background: #0f172a; color: #fff; padding: 3rem 1.5rem 1.5rem 1.5rem; }
                    .footer-container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 3rem; margin-bottom: 2rem; }
                    .footer-col h3 { margin-bottom: 0.5rem; }
                    .footer-col h3 span { color: var(--primary); }
                    .footer-col h4 { margin-bottom: 1rem; font-size: 1rem; }
                    .footer-col a { display: block; color: #94a3b8; text-decoration: none; margin-bottom: 0.5rem; font-size: 0.85rem; }
                    .footer-col p { color: #94a3b8; font-size: 0.85rem; }
                    .disclaimer-text { font-size: 0.75rem !important; line-height: 1.4; }
                    .footer-bottom { border-top: 1px solid #1e293b; max-width: 1200px; margin: 0 auto; padding-top: 1rem; text-align: center; color: #64748b; font-size: 0.8rem; }

                    @media (max-width: 768px) {
                      .hero-container, .contact-layout, .footer-container { grid-template-columns: 1fr; }
                        .form-row { grid-template-columns: 1fr; }
                          .nav-links { display: none; }
                          }
                          
}