    :root {
        --dme-yellow: #F5E6A3;
        --dme-black: #1a1a1a;
        --dme-mint: #9FE5DB;
        --font-family-body: 'Inter', sans-serif;
        --font-family-heading: 'Poppins', sans-serif;
        --muted-foreground: #6b7280;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }


    body {
        font-family: var(--font-family-body);
        color: var(--dme-black);
        background: #ffffff;
        overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        font-family: var(--font-family-heading);
        font-weight: 700 !important;
    }


    .display-5 {
        font-size: 36px;
    }

    .lead {
        font-size: 18px;
    }


    /* Header */
    .header-sticky {
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid #e5e7eb;
        box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .school-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .school-icon-box i {
        font-size: 24px;
        color: var(--dme-black);
    }

    /* Hero Section */
    .hero-section {
        position: relative;
        background-image: url('./assets/banner.jpg');
        background-size: cover;
        background-position: center;
        min-height: 600px;
    }

    .hero-overlay {
        position: absolute;
        inset: 0;
        background: rgba(26, 26, 26, 0.85);
    }

    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 50px;
        font-size: 14px;
        font-weight: 500;
        color: white;
    }

    .trust-badge i {
        color: var(--dme-yellow);
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        color: white;
        margin-bottom: 1rem;
    }

    .hero-highlight {
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .stat-card {
        padding: 1rem;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        transition: all 0.3s;
    }

    .stat-card:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

    .stat-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 8px;
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .stat-icon-box i {
        font-size: 24px;
        color: var(--dme-black);
    }

    .stat-value {
        font-size: 1.5rem;
        font-weight: 900;
        color: white;
        line-height: 1.2;
        font-family: var(--font-family-heading);
    }

    .stat-label {
        font-size: 0.75rem;
        color: #d1d5db;
        margin-top: 2px;
    }

    /* Form */
    .application-form {
        border-radius: 16px;
        padding: 28px 24px;
        border: 2px solid var(--dme-yellow);
        background: white;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
        max-width: 448px;
        position: relative;
        overflow: hidden;
    }

    .form-decoration-1 {
        position: absolute;
        top: 0;
        right: 0;
        width: 128px;
        height: 128px;
        background: var(--dme-yellow);
        opacity: 0.2;
        border-radius: 50%;
        filter: blur(60px);
    }

    .form-decoration-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 128px;
        height: 128px;
        background: var(--dme-mint);
        opacity: 0.2;
        border-radius: 50%;
        filter: blur(60px);
    }

    .admissions-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 4px 12px;
        border-radius: 50px;
        background: var(--dme-yellow);
        color: var(--dme-black);
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
    }

    .btn-gradient {
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        color: var(--dme-black);
        font-weight: 700;
        border: none;
        padding: 12px 24px;
        transition: all 0.3s;
    }

    .btn-gradient:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        transform: translateY(-2px);
        color: var(--dme-black);
    }

    .form-control:focus,
    .form-select:focus {
        border-color: var(--dme-mint);
        box-shadow: 0 0 0 0.2rem rgba(159, 229, 219, 0.25);
    }

    /* Program Cards */
    .program-card {
        padding: 1.5rem;
        border-radius: 16px;
        border: 2px solid #e5e7eb;
        background: linear-gradient(135deg, white 0%, rgba(255, 199, 0, 0.1) 100%);
        transition: all 0.3s;
        height: 100%;
    }

    .program-card:hover {
        transform: translateY(-8px);
        border-color: var(--dme-yellow);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .program-badge {
        padding: 4px 12px;
        border-radius: 50px;
        background: var(--dme-yellow);
        color: var(--dme-black);
        font-size: 12px;
        font-weight: 700;
    }

    /* Facility Cards */
    .facility-card {
        position: relative;
        border-radius: 16px;
        overflow: hidden;
        cursor: pointer;
        aspect-ratio: 4/3;
    }

    .facility-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s;
    }

    .facility-card:hover img {
        transform: scale(1.1);
    }

    .facility-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.5) 50%, transparent 100%);
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 1.5rem;
    }

    .facility-description {
        opacity: 0;
        transition: opacity 0.3s;
    }

    .facility-card:hover .facility-description {
        opacity: 1;
    }

    .facility-icon-badge {
        position: absolute;
        top: 1rem;
        right: 1rem;
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        display: flex;
        align-items: center;
        justify-content: center;
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .facility-icon-badge i {
        font-size: 24px;
        color: var(--dme-black);
    }

    /* Opportunity Cards */
    .opportunity-card {
        padding: 1.25rem;
        border-radius: 12px;
        background: white;
        border: 1px solid #e5e7eb;
        transition: all 0.3s;
        height: 100%;
    }

    .opportunity-card:hover {
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: translateY(-4px);
    }

    .opportunity-card h4 {
        font-size: 16px;
    }

    .opportunity-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
    }

    .opportunity-icon-box i {
        font-size: 24px;
        color: var(--dme-black);
    }

    /* Recruiter Cards */
    .recruiter-card {
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(10px);
        border: 1px solid #e5e7eb;
        text-align: center;
        transition: all 0.3s;
        padding: 40px;
    }

    .recruiter-card:hover {
        background: white;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        transform: scale(1.05);
    }

    /* Testimonial Cards */
    .testimonial-card {
        padding: 2rem;
        border-radius: 16px;
        background: linear-gradient(to bottom right, #f9fafb, white);
        border: 2px solid #e5e7eb;
        transition: all 0.3s;
        height: 100%;
    }

    .testimonial-card:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .quote-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.5rem;
    }

    .quote-icon-box i {
        font-size: 24px;
        color: var(--dme-black);
    }

    .testimonial-image {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        object-fit: cover;
        border: 2px solid #d1d5db;
    }

    /* FAQ Accordion */
    .faq-item {
        background: rgba(255, 255, 255, 0.1);
        backdrop-filter: blur(10px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        border-radius: 12px;
        margin-bottom: 1rem;
        transition: all 0.3s;
    }

    .faq-item:hover {
        background: rgba(255, 255, 255, 0.15);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .faq-button {
        width: 100%;
        padding: 1rem 1.5rem;
        background: transparent;
        border: none;
        color: white;
        font-weight: 500;
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .faq-button:focus {
        outline: none;
    }

    .faq-answer {
        padding: 0 1.5rem 1rem 1.5rem;
        color: #d1d5db;
        line-height: 1.6;
        display: none;
    }

    .faq-answer.show {
        display: block;
    }

    .faq-icon {
        transition: transform 0.3s;
    }

    .faq-button[aria-expanded="true"] .faq-icon {
        transform: rotate(180deg);
    }

    /* CTA Section */
    .cta-section {
        border-radius: 24px;
        border: 2px solid #e5e7eb;
        padding: 4rem 2rem;
        background: linear-gradient(135deg, rgba(255, 199, 0, 0.15), rgba(159, 229, 219, 0.15));
        position: relative;
        overflow: hidden;
    }

    .cta-decoration-1 {
        position: absolute;
        top: 0;
        right: 0;
        width: 384px;
        height: 384px;
        background: var(--dme-yellow);
        opacity: 0.2;
        border-radius: 50%;
        filter: blur(100px);
    }

    .cta-decoration-2 {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 384px;
        height: 384px;
        background: var(--dme-mint);
        opacity: 0.2;
        border-radius: 50%;
        filter: blur(100px);
    }

    /* Dark Section Overlay */
    .dark-section {
        position: relative;
        background-size: cover;
        background-position: center;
    }

    .dark-overlay {
        position: absolute;
        inset: 0;
        background: rgba(26, 26, 26, 0.85);
    }

    /* Responsive */
    @media (max-width: 991px) {
        .hero-title {
            font-size: 2rem;
        }

        .school-icon-box {
            width: 40px;
            height: 40px;
        }

        .school-icon-box i {
            font-size: 20px;
        }
        .header{
            flex-direction: column;
        }
    }

    @media (max-width: 575px) {
        .hero-title {
            font-size: 1.75rem;
        }

        .stat-value {
            font-size: 1.25rem;
        }

        .application-form {
            padding: 20px 16px;
        }
    }

    /* Utilities */
    .text-gradient {
        background: linear-gradient(90deg, var(--dme-yellow), var(--dme-mint));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .bg-gradient {
        background: linear-gradient(135deg, var(--dme-yellow), var(--dme-mint));
    }

    .recruiter-logo {
        height: auto;
    }

    .recruiter-logo img {
        max-height: 100%;
        max-width: 100%;
        object-fit: contain;
    }


    .form_L {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    margin: 0;
}

.form-container {
    background: #fff;
    padding: 30px;
    width: 100%;
    max-width: 450px; /* Limits width on desktop */
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #eee;
}


.form-group {
    margin-bottom: 15px;
}

input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #dcdcdc;
    border-radius: 6px;
    color: #333;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
}

input:focus, select:focus {
    border-color: #1a5276;
}

/* Phone Layout */
.phone-group {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.country-code {
    width: 70px;
    text-align: center;
    background-color: #fdfdfd;
}

.mobile-input {
    flex: 1;
}

/* State and City Row */
.location-group {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

/* Submit Button */
.register-btn {
    width: 80%;
    background-color: #b30000; 
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: transform 0.1s, background 0.2s;
}

.register-btn:active {
    transform: scale(0.98);
}

.login-link {
    display: block;
    margin-top: 20px;
    color: #1a5276;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* RESPONSIVE BREAKPOINT */
@media (max-width: 480px) {
    .form-container {
        padding: 20px;
    }
    
    /* Stack State and City on very small screens */
    .location-group {
        flex-direction: column;
        gap: 15px;
    }

    .register-btn {
        width: 100%; /* Full width button on mobile */
    }
}
