﻿/* ===== COLOR VARIABLES ===== */
:root {
    --esra-blue: #003399;
    --esra-blue-light: #1a4dbb;
    --esra-orange: #FF9900;
    --esra-orange-light: #ffad33;
    --light-bg: #f8f9fa;
    --dark-bg: #0a1f44;
    --text-dark: #333;
    --text-light: #666;
    --white: #fff;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s ease;
    --border-radius: 8px;
}

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    scroll-padding-top: 40px;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', 'Georgia', 'Times New Roman', Times, serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    background: var(--esra-orange);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-family: 'Poppins', sans-serif;
    border: none;
}

    .btn:hover {
        background: var(--esra-orange-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(255, 153, 0, 0.3);
    }

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: var(--white);
    padding: 8px 5%;
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    height: 40px;
}

    .navbar.scrolled {
        padding: 6px 5%;
    }

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    height: 30px;
}

.logo-img {
    height: 30px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    font-family: 'Poppins', sans-serif;
    color: var(--esra-blue);
    margin-left: 8px;
}

.logo-highlight {
    color: var(--esra-orange);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    align-items: center;
    margin: 0;
    padding: 0;
}

    .nav-links li a {
        color: var(--text-dark);
        font-weight: 500;
        font-size: 14px;
        position: relative;
        padding: 3px 0;
    }

        .nav-links li a:hover {
            color: var(--esra-orange);
        }

        .nav-links li a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--esra-orange);
            transition: var(--transition);
        }

        .nav-links li a:hover::after {
            width: 100%;
        }

.nav-cta {
    background: var(--esra-blue);
    color: var(--white) !important;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 4px 15px rgba(0, 51, 153, 0.2);
    border: 2px solid transparent;
}

    .nav-cta:hover {
        background: var(--esra-blue-light);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 51, 153, 0.3);
    }

    .nav-cta::after {
        display: none !important;
    }

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    pointer-events: auto; /* Add this */
    position: relative; /* Add this */
}

.bar {
    width: 25px; /* Increased for better touch target */
    height: 3px;
    background: var(--esra-blue);
    margin: 4px 0; /* Increased spacing */
    display: block;
    transition: var(--transition);
    pointer-events: none; /* Prevent bars from capturing clicks */
}

/* ===== HERO BANNER ===== */
.hero-banner-section {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    max-height: 960px;
    min-height: 180px;
    overflow: hidden;
    background: #000;
    margin-top: 40px;
    display: flex;
    align-items: stretch;
}



.hero-banner-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    transition: transform 0.8s ease;
}

.hero-banner-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.hero-banner-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    opacity: 0.7;
}

    .hero-banner-arrow:hover {
        background: rgba(0, 0, 0, 0.7);
        border-color: rgba(255, 255, 255, 0.5);
        opacity: 1;
    }

.hero-banner-prev {
    left: 20px;
}

.hero-banner-next {
    right: 20px;
}

.hero-banner-dots {
    position: absolute;
    bottom: 24px; /* Adjust as needed */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    z-index: 10;
    pointer-events: none; /* So clicks pass through if needed */
}


.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
}

    .hero-dot.active {
        background: var(--esra-orange);
        transform: scale(1.2);
    }

    .hero-dot:hover {
        background: rgba(255, 255, 255, 0.7);
    }

/* ===== COURSES SECTION ===== */
.courses-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

    .section-header h2 {
        font-size: 2.5rem;
        color: var(--esra-blue);
        margin-bottom: 15px;
        position: relative;
        display: inline-block;
    }

        .section-header h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--esra-orange);
            border-radius: 2px;
        }

    .section-header p {
        color: var(--text-light);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 20px auto 0;
        line-height: 1.6;
    }

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-heavy);
        border-top-color: var(--esra-orange);
    }

.course-icon {
    font-size: 2.5rem;
    color: var(--esra-blue);
    margin-bottom: 20px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--esra-blue);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.course-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.course-features {
    list-style: none;
    text-align: left;
    margin: 20px 0;
    padding: 0;
}

    .course-features li {
        padding: 8px 0;
        border-bottom: 1px solid #eee;
        color: var(--text-light);
        display: flex;
        align-items: center;
        font-size: 0.9rem;
    }

        .course-features li:last-child {
            border-bottom: none;
        }

        .course-features li i {
            color: var(--esra-orange);
            margin-right: 10px;
            font-size: 12px;
        }

.course-card .btn {
    margin-top: auto;
    width: 100%;
}

/* ===== FEATURES SECTION ===== */
.features-section {
    padding: 80px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 30px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--light-bg);
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--shadow-heavy);
        background: var(--white);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--esra-blue) 0%, var(--esra-blue-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--esra-blue);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ===== ENQUIRY SECTION ===== */
.enquiry-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.enquiry-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.enquiry-info h2 {
    font-size: 2.2rem;
    color: var(--esra-blue);
    margin-bottom: 20px;
    line-height: 1.3;
}

.enquiry-info p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.info-items {
    margin-top: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

    .info-item i {
        background: var(--esra-blue);
        color: white;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
        margin-top: 2px;
        font-size: 16px;
    }

    .info-item div {
        flex: 1;
    }

    .info-item strong {
        display: block;
        margin-bottom: 5px;
        color: var(--esra-blue);
        font-family: 'Poppins', sans-serif;
    }

    .info-item p {
        margin: 0;
        font-size: 0.95rem;
        line-height: 1.5;
    }

/* Enquiry Form */
.enquiry-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--shadow-heavy);
    border-top: 5px solid var(--esra-orange);
}

    .enquiry-card h2 {
        font-size: 1.8rem;
        color: var(--esra-blue);
        margin-bottom: 10px;
    }

    .enquiry-card > p {
        color: var(--text-light);
        margin-bottom: 30px;
        font-size: 1rem;
        line-height: 1.6;
    }

.alert-success {
    background: #d4edda;
    color: #155724;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #28a745;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

    .alert-success i {
        color: #28a745;
        font-size: 18px;
    }

.alert-error {
    background: #f8d7da;
    color: #721c24;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
    border-left: 4px solid #dc3545;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

    .alert-error i {
        color: #dc3545;
        font-size: 18px;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 14px;
        border: 2px solid #e1e5eb;
        border-radius: 8px;
        font-size: 16px;
        transition: var(--transition);
        background: var(--white);
        font-family: 'Roboto', sans-serif;
        color: var(--text-dark);
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--esra-blue);
            box-shadow: 0 0 0 3px rgba(0, 51, 153, 0.1);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #999;
        }

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--esra-blue) 0%, var(--esra-blue-light) 100%);
    color: white;
    padding: 16px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
}

    .submit-btn:hover {
        background: linear-gradient(135deg, var(--esra-blue-light) 0%, var(--esra-blue) 100%);
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 51, 153, 0.3);
    }

/* ===== FOOTER ===== */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding-top: 60px;
    margin-top: 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--esra-orange);
    position: relative;
    padding-bottom: 10px;
}

    .footer-section h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 40px;
        height: 3px;
        background: var(--esra-orange);
    }

.footer-section p {
    margin-bottom: 12px;
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-section a {
    opacity: 0.8;
    transition: var(--transition);
}

    .footer-section a:hover {
        color: var(--esra-orange);
        opacity: 1;
    }

.footer-section i {
    margin-right: 10px;
    width: 20px;
    color: var(--esra-orange);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    opacity: 0.7;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

/* ===== MOBILE RESPONSIVENESS ===== */
@media screen and (max-width: 992px) {
    .enquiry-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

   
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        padding: 15px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
        gap: 0;
    }
        .nav-links.active {
            display: flex;
        }

        .nav-links li {
            margin: 8px 0;
            text-align: center;
            width: 100%;
        }

            .nav-links li a {
                font-size: 16px;
                padding: 10px 0;
                display: block;
                width: 100%;
                border-bottom: 1px solid #eee;
            }

            .nav-links li:last-child a {
                border-bottom: none;
            }

    .nav-cta {
        margin-left: 0;
        margin-top: 12px;
        display: inline-flex;
        justify-content: center;
        padding: 10px 20px;
        font-size: 13px;
        width: 100%;
        max-width: 220px;
    }

    .menu-toggle {
        display: block;
        pointer-events: auto; /* Ensure it's clickable */
        touch-action: manipulation; /* Better touch handling */
    }

        .menu-toggle.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(4px, 4px);
        }

        .menu-toggle.active .bar:nth-child(2) {
            opacity: 0;
        }

        .menu-toggle.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(4px, -4px);
        }

    .navbar {
        padding: 6px 15px;
        height: 44px;
    }



    .hero-banner-arrow {
        width: 40px;
        height: 40px;
        font-size: 18px;
        z-index: 20;
    }

    .hero-banner-prev {
        left: 10px;
    }

    .hero-banner-next {
        right: 10px;
    }

    .hero-banner-dots {
        bottom: 20px;
        pointer-events: auto;
        z-index: 20;
    }

    .hero-dot {
        width: 10px;
        height: 10px;
        pointer-events: auto;
        background: rgba(255, 255, 255, 0.6);
    }
        .hero-dot.active {
            background: var(--esra-orange);
            transform: scale(1.3);
        }

    section {
        padding: 60px 0;
    }

    .courses-section,
    .enquiry-section,
    .features-section {
        padding: 60px 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

        .info-item i {
            margin-right: 0;
            margin-bottom: 10px;
        }
    .hero-banner-section {
        aspect-ratio: 2 / 1; /* Keep the original 2:1 ratio */
        height: auto; /* Let aspect ratio control height */
        min-height: unset;
        max-height: unset;
        margin-top: 44px;
        background: #000;
    }

    .hero-banner-slider {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    .hero-banner-slide {
        background: #000;
    }

    .hero-banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

@media screen and (max-width: 480px) {
    .navbar {
        padding: 5px 12px;
        height: 42px;
    }

    .logo-img {
        height: 26px;
    }

    .logo-text {
        font-size: 15px;
        margin-left: 5px;
    }


    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        padding: 25px 20px;
    }

    .enquiry-card {
        padding: 30px 20px;
    }

    .submit-btn {
        padding: 14px;
        font-size: 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-banner-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    .hero-banner-prev {
        left: 8px;
    }

    .hero-banner-next {
        right: 8px;
    }
    .hero-banner-dots {
        bottom: 15px;
        gap: 8px;
    }

    .hero-dot {
        width: 9px;
        height: 9px;
    }
    .hero-banner-section {
        aspect-ratio: 2 / 1; /* Keep the 2:1 ratio */
        margin-top: 42px;
    }
}
/* ===== DEMO REGISTRATION SECTION ===== */

.demo-registration-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #eef2f7 100%);
    padding: 80px 0;
}

.demo-card {
    max-width: 750px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-heavy);
    overflow: hidden;
    border-top: 6px solid var(--esra-orange);
    transition: var(--transition);
}

    .demo-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.demo-header {
    background: linear-gradient(135deg, var(--esra-blue) 0%, var(--esra-blue-light) 100%);
    color: var(--white);
    padding: 40px 30px;
    text-align: center;
}

    .demo-header h2 {
        font-size: 2rem;
        margin-bottom: 8px;
        font-weight: 700;
    }

    .demo-header p {
        opacity: 0.9;
        font-size: 1rem;
    }

.demo-body {
    padding: 40px;
}

    .demo-body .form-group {
        margin-bottom: 25px;
    }

    .demo-body label {
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
        color: var(--esra-blue);
        font-family: 'Poppins', sans-serif;
    }

    .demo-body input,
    .demo-body select {
        border-radius: 10px;
        border: 2px solid #e4e7ec;
        padding: 14px;
        font-size: 15px;
        transition: var(--transition);
    }

        .demo-body input:focus,
        .demo-body select:focus {
            border-color: var(--esra-orange);
            box-shadow: 0 0 0 3px rgba(255,153,0,0.15);
        }

.demo-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--esra-orange) 0%, var(--esra-orange-light) 100%);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
    box-shadow: 0 8px 25px rgba(255,153,0,0.3);
}

    .demo-submit-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(255,153,0,0.4);
    }

/* Contact Info Box */

.demo-contact {
    margin-top: 30px;
    padding: 25px;
    background: var(--light-bg);
    border-radius: 12px;
    text-align: center;
    border: 1px solid #eaeaea;
}

    .demo-contact h4 {
        color: var(--esra-blue);
        margin-bottom: 10px;
        font-family: 'Poppins', sans-serif;
    }

    .demo-contact p {
        margin: 5px 0;
        font-size: 0.95rem;
        color: var(--text-light);
    }

    .demo-contact strong {
        color: var(--esra-orange);
    }

/* ===== MOBILE ===== */

@media screen and (max-width: 768px) {
    .demo-header {
        padding: 30px 20px;
    }

    .demo-body {
        padding: 30px 20px;
    }

    .demo-header h2 {
        font-size: 1.6rem;
    }
}


/* ===== PREMIUM DEMO ENHANCEMENTS ===== */

/* Animation */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

    .fade-up.active {
        opacity: 1;
        transform: translateY(0);
    }

/* Limited Seats Badge */
.limited-badge {
    display: inline-block;
    background: var(--esra-orange);
    color: white;
    padding: 6px 16px;
    font-size: 13px;
    border-radius: 50px;
    margin-top: 12px;
    font-weight: 600;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }

    100% {
        transform: scale(1);
    }
}

/* Floating Label */
.floating-group {
    position: relative;
    margin-bottom: 25px;
}

    .floating-group input,
    .floating-group select {
        width: 100%;
        padding: 16px 14px;
        border-radius: 10px;
        border: 2px solid #e4e7ec;
        font-size: 15px;
        background: transparent;
    }

    .floating-group label {
        position: absolute;
        top: 16px;
        left: 14px;
        color: #888;
        font-size: 14px;
        transition: 0.3s ease;
        background: white;
        padding: 0 6px;
        pointer-events: none;
    }

    .floating-group input:focus + label,
    .floating-group input:not(:placeholder-shown) + label,
    .floating-group select:focus + label,
    .floating-group select:valid + label {
        top: -8px;
        left: 10px;
        font-size: 12px;
        color: var(--esra-orange);
    }

/* Countdown */
.countdown {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 600;
    color: var(--white);
}

/* Success Popup */
.success-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    text-align: center;
    z-index: 9999;
    opacity: 0;
    transition: all 0.4s ease;
}

    .success-popup.active {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }

    .success-popup h3 {
        color: var(--esra-blue);
        margin-bottom: 10px;
    }

    .success-popup p {
        color: var(--text-light);
    }
