        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            color: #333;
            background-color: #f9f9f9;
        }
        header {
            background: linear-gradient(135deg, #2c7be5 0%, #1a5cb8 100%);
            color: white;
            padding: 0;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .container {
            width: 90%;
            max-width: 1400px;
            margin: auto;
            overflow: hidden;
        }
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0;
            min-height: 64px;
            position: relative;
        }
        .logo {
            font-size: 2rem;
            font-weight: 700;
            color: white;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            letter-spacing: 1px;
            padding: 0 1.2rem;
            height: 64px;
        }
        .logo::before {
            content: "";
            display: inline-block;
            width: 28px;
            height: 28px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M12 2L4 5v6.09c0 5.05 3.41 9.76 8 10.91 4.59-1.15 8-5.86 8-10.91V5l-8-3zm-1.06 13.54L7.4 12l1.41-1.41 2.12 2.12 4.24-4.24 1.41 1.41-5.64 5.66z"/></svg>') no-repeat center;
        }
        .nav-links {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 0;
            height: 64px;
            background: none;
        }
        .nav-links li {
            position: relative;
            flex: 1 1 auto;
            min-width: 0;
        }
        .nav-links li a {
            color: rgba(255,255,255,0.95);
            text-decoration: none;
            font-weight: 500;
            padding: 0 1.1rem;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.05rem;
            letter-spacing: 0.5px;
            border-bottom: 3px solid transparent;
            transition: background 0.18s, color 0.18s, border-bottom 0.18s;
            white-space: nowrap;
        }
        .nav-links li a.active, .nav-links li a:hover {
            background: rgba(255,255,255,0.13);
            color: #fff;
            border-bottom: 3px solid #fff;
            font-weight: 700;
        }
        .nav-links li:not(:last-child) a {
            border-right: 1px solid rgba(255,255,255,0.10);
        }
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 2.2rem;
            cursor: pointer;
            padding: 0 1.2rem;
            height: 64px;
        }
        /* Responsive styles */
        @media (max-width: 1100px) {
            .nav-links li a {
                padding: 0 0.7rem;
                font-size: 1rem;
            }
        }
        @media (max-width: 900px) {
            .nav-links li a {
                padding: 0 0.5rem;
                font-size: 0.98rem;
            }
        }
        @media (max-width: 768px) {
            nav {
                flex-wrap: wrap;
            }
            .mobile-menu-btn {
                display: block;
            }
            .nav-links {
                display: none;
                flex-direction: column;
                width: 100%;
                background: #1a5cb8;
                position: absolute;
                left: 0;
                top: 64px;
                z-index: 1001;
                border-radius: 0 0 12px 12px;
                box-shadow: 0 8px 24px rgba(44,123,229,0.13);
            }
            .nav-links.active {
                display: flex;
            }
            .nav-links li {
                width: 100%;
            }
            .nav-links li a {
                padding: 1rem 1.5rem;
                border-radius: 0;
                border-bottom: 1px solid rgba(255,255,255,0.10);
                border-right: none;
                justify-content: flex-start;
                font-size: 1.08rem;
            }
            .nav-links li:last-child a {
                border-bottom: none;
            }
            .logo {
                padding: 0 1rem;
            }
        }
        @media (max-width: 500px) {
            .logo {
                font-size: 1.3rem;
                padding: 0 0.5rem;
            }
            .mobile-menu-btn {
                font-size: 2rem;
                padding: 0 0.5rem;
            }
            .nav-links li a {
                font-size: 1rem;
                padding: 0.9rem 1rem;
            }
        }
        /* ...rest of your styles remain unchanged... */
        /* Hero Section */
        .hero {
            padding: 4rem 0 2rem 0;
            text-align: center;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8eb 100%);
            position: relative;
        }
        .hero h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: #1a5cb8;
        }
        .hero p {
            font-size: 1.2rem;
            color: #444;
            margin-bottom: 2rem;
        }
        /* Enhanced Slider */
        .slider-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 2.5rem auto 0 auto;
            width: 100%;
        }
        .slider {
            position: relative;
            width: 95vw;
            max-width: 1100px;
            min-width: 320px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 10px 32px rgba(0,0,0,0.13);
            background: #fff;
        }
        .slider img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            display: block;
            transition: opacity 0.5s;
            background: #e4e8eb;
        }
        .slider-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(44,123,229,0.85);
            border: none;
            color: #fff;
            font-size: 2.2rem;
            padding: 0.3rem 1.1rem;
            cursor: pointer;
            border-radius: 50%;
            z-index: 2;
            transition: background 0.2s;
        }
        .slider-btn.left { left: 18px; }
        .slider-btn.right { right: 18px; }
        .slider-btn:hover { background: #1a5cb8; }
        .slider-indicators {
            position: absolute;
            bottom: 18px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 0.5rem;
            z-index: 3;
        }
        .slider-indicators span {
            display: block;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: rgba(44,123,229,0.3);
            cursor: pointer;
            transition: background 0.2s;
        }
        .slider-indicators span.active {
            background: #2c7be5;
            border: 2px solid #fff;
        }
        /* Counter Section */
        .counter-section {
            background: #2c7be5;
            color: white;
            padding: 3rem 0;
            text-align: center;
            margin: 2rem 0;
            border-radius: 12px;
        }
        .counter {
            font-size: 3.5rem;
            font-weight: 700;
            margin: 0.5rem 0;
        }
        /* Schools Grid */
        .schools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 2rem;
            margin: 3rem 0;
        }
        .school-card {
            background: white;
            border-radius: 10px;
            padding: 1.5rem 1rem;
            box-shadow: 0 4px 12px rgba(44,123,229,0.07);
            text-align: center;
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #e6eaf1;
        }
        .school-card:hover {
            transform: translateY(-7px) scale(1.03);
            box-shadow: 0 10px 24px rgba(44,123,229,0.13);
        }
        .school-logo {
            height: 60px;
            margin-bottom: 1rem;
            object-fit: contain;
        }
        .school-card h3 {
            margin: 0.5rem 0 0.2rem 0;
            color: #2c7be5;
        }
        .school-card p {
            margin: 0.2rem 0;
            font-size: 0.97rem;
        }
        /* Features */
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            margin: 3rem 0;
            gap: 1.5rem;
        }
        .feature-box {
            flex: 1;
            min-width: 280px;
            background: #fff;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 4px 12px rgba(44,123,229,0.07);
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 0 0.5rem;
        }
        .feature-box:hover {
            transform: translateY(-5px) scale(1.02);
            box-shadow: 0 10px 24px rgba(44,123,229,0.13);
        }
        .feature-box h3 {
            color: #2c7be5;
            margin-top: 0;
        }
        /* CTA */
        .cta {
            background: linear-gradient(90deg, #2c7be5 60%, #1a5cb8 100%);
            color: white;
            text-align: center;
            padding: 3rem 0;
            margin: 2rem 0;
            border-radius: 12px;
        }
        .cta button {
            background: white;
            color: #2c7be5;
            border: none;
            padding: 0.8rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            margin-top: 1rem;
        }
        .cta button:hover {
            background: #e6f0ff;
            transform: translateY(-2px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.15);
        }
        .cta button a {
            color: #2c7be5;
            text-decoration: none;
        }
        /* Registration Form */
        .register-section {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(44,123,229,0.07);
            padding: 2.5rem 1.5rem;
            margin: 3rem auto;
            max-width: 500px;
        }
        .register-section h2 {
            color: #2c7be5;
            margin-bottom: 1rem;
            text-align: center;
        }
        .register-form label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        .register-form input, .register-form select {
            width: 100%;
            padding: 0.7rem;
            margin-bottom: 1.2rem;
            border: 1px solid #cfd8dc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .register-form button {
            width: 100%;
            background: #2c7be5;
            color: #fff;
            border: none;
            padding: 0.9rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .register-form button:hover {
            background: #1a5cb8;
        }
        /* Contact Form */
        .contact-section {
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 4px 12px rgba(44,123,229,0.07);
            padding: 2.5rem 1.5rem;
            margin: 3rem auto;
            max-width: 500px;
        }
        .contact-section h2 {
            color: #2c7be5;
            margin-bottom: 1rem;
            text-align: center;
        }
        .contact-form label {
            display: block;
            margin-bottom: 0.4rem;
            font-weight: 500;
        }
        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 0.7rem;
            margin-bottom: 1.2rem;
            border: 1px solid #cfd8dc;
            border-radius: 6px;
            font-size: 1rem;
        }
        .contact-form textarea {
            min-height: 100px;
            resize: vertical;
        }
        .contact-form button {
            width: 100%;
            background: #2c7be5;
            color: #fff;
            border: none;
            padding: 0.9rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 6px;
            cursor: pointer;
            transition: background 0.3s;
        }
        .contact-form button:hover {
            background: #1a5cb8;
        }
        /* Footer */
        footer {
            text-align: center;
            padding: 2rem 0;
            background: #2d3748;
            color: white;
            border-top-left-radius: 12px;
            border-top-right-radius: 12px;
        }


        .alert-success {
            background: #d1e7dd;
            color: #0f5132;
            border: 1px solid #badbcc;
            border-radius: 5px;
            padding: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: center;
        }
        .alert-danger {
            background: #f8d7da;
            color: #842029;
            border: 1px solid #f5c2c7;
            border-radius: 5px;
            padding: 1rem;
            margin-bottom: 1rem;
            font-size: 1.1rem;
            text-align: center;
        }
        .pay-btn {
            background: #2d7ff9;
            color: #fff;
            border: none;
            padding: 12px 28px;
            border-radius: 5px;
            font-weight: 600;
            margin-bottom: 1rem;
            cursor: pointer;
        }
        /* Stepper styles */
        .stepper-container {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            margin-top: 2rem;
        }
        .stepper {
            display: flex;
            align-items: center;
            gap: 24px;
        }
        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            position: relative;
        }
        .step-circle {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            background: #2d7ff9;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 1.2rem;
            margin-bottom: 6px;
            border: 3px solid #e0e7ff;
            transition: background 0.3s;
        }
        .step.active .step-circle {
            background: #fff;
            color: #2d7ff9;
            border: 3px solid #2d7ff9;
        }
        .step-label {
            font-size: 1rem;
            color: #2d7ff9;
            font-weight: 500;
            text-align: center;
            max-width: 120px;
        }
        .step:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -12px;
            top: 18px;
            width: 24px;
            height: 3px;
            background: #2d7ff9;
            z-index: 0;
        }
        @media (max-width: 600px) {
            .stepper {
                flex-direction: column;
                gap: 12px;
            }
            .step:not(:last-child)::after {
                width: 3px;
                height: 24px;
                right: 18px;
                top: 38px;
            }
        }
        /* End stepper styles */

        
