/* =====================================================
   ROOT VARIABLES
===================================================== */

:root {

    --primary: #003da6;
    --primary-light: #0057ff;
    --secondary: #00b2ff;

    --dark: #0f172a;
    --dark-2: #1e293b;

    --white: #ffffff;

    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-700: #334155;

    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 28px;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, .05);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, .08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, .12);

    --transition: all .35s ease;

}

/* =====================================================
   GLOBAL
===================================================== */

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    overflow-x: hidden;
    background: #fff;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-heading span {
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

.section-heading h2 {
    margin-top: 10px;
    font-size: 42px;
    font-weight: 800;
}

.section-heading p {
    color: var(--gray-600);
}

/* =====================================================
   NAVBAR
===================================================== */

.custom-navbar {

    padding: 18px 0;

    background: rgba(255, 255, 255, .75);

    backdrop-filter: blur(16px);

    -webkit-backdrop-filter: blur(16px);

    border-bottom: 1px solid rgba(255, 255, 255, .2);

    transition: var(--transition);

}

.custom-navbar.scrolled {

    padding: 12px 0;

    box-shadow: var(--shadow-md);

    background: rgba(255, 255, 255, .95);

}

.navbar-nav .nav-link {

    color: var(--dark);

    font-weight: 600;

    margin: 0 10px;

    position: relative;

}

.navbar-nav .nav-link::after {

    content: '';

    position: absolute;

    left: 0;

    bottom: -5px;

    width: 0;

    height: 2px;

    background: var(--primary);

    transition: var(--transition);

}

.navbar-nav .nav-link:hover::after {

    width: 100%;

}

.navbar-nav .nav-link:hover {

    color: var(--primary);

}

.btn-primary {

    background: var(--primary);

    border: none;

    padding: 12px 24px;

    border-radius: 12px;

    font-weight: 600;

}

.btn-primary:hover {

    background: #002f85;

    transform: translateY(-2px);

}

.btn-outline-primary {

    border: 2px solid var(--primary);

    color: var(--primary);

    border-radius: 12px;

    padding: 10px 24px;

    font-weight: 600;

}

/* =====================================================
   HERO
===================================================== */

.hero-section {

    position: relative;

    padding-top: 180px;

    padding-bottom: 120px;

    background:
        linear-gradient(135deg,
            #f7fbff 0%,
            #eef6ff 100%);

    overflow: hidden;

}

.hero-title {

    font-size: clamp(2.8rem, 5vw, 5rem);

    font-weight: 900;

    line-height: 1.1;

    margin: 25px 0;

}

.hero-description {

    max-width: 760px;

    margin: auto;

    color: var(--gray-600);

    font-size: 1.2rem;

    line-height: 1.8;

}

.hero-badge {

    display: inline-flex;

    align-items: center;

    gap: 10px;

    background: #fff;

    padding: 12px 20px;

    border-radius: 999px;

    box-shadow: var(--shadow-sm);

    font-weight: 600;

    color: var(--primary);

}

.hero-buttons {

    margin-top: 40px;

    display: flex;

    justify-content: center;

    gap: 15px;

}

.hero-search {

    margin-top: 60px;

    background: #fff;

    padding: 20px;

    border-radius: 20px;

    max-width: 850px;

    margin-left: auto;

    margin-right: auto;

}

.search-input {

    height: 58px;

    border: none;

    background: #f8fafc;

    border-radius: 12px;

}

.search-input:focus {

    box-shadow: none;

}

/* Floating Shapes */

.hero-bg-shape {

    position: absolute;

    border-radius: 50%;

    filter: blur(80px);

}

.hero-shape-1 {

    width: 350px;

    height: 350px;

    background: rgba(0, 87, 255, .12);

    top: -100px;

    left: -100px;

}

.hero-shape-2 {

    width: 400px;

    height: 400px;

    background: rgba(0, 178, 255, .15);

    right: -150px;

    bottom: -100px;

}

/* =====================================================
   STATS
===================================================== */

.stats-section {

    margin-top: -60px;

    position: relative;

    z-index: 10;

}

.stat-card {

    background: #fff;

    border-radius: 20px;

    padding: 35px;

    box-shadow: var(--shadow-md);

    transition: var(--transition);

}

.stat-card:hover {

    transform: translateY(-8px);

}

.stat-card h2 {

    font-size: 42px;

    font-weight: 800;

    color: var(--primary);

}

.stat-card p {

    margin: 0;

    color: var(--gray-600);

}

/* =====================================================
   FEATURES
===================================================== */

.feature-card {

    background: #fff;

    border-radius: 24px;

    padding: 40px 30px;

    text-align: center;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);

    height: 100%;

}

.feature-card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);

}

.feature-card i {

    font-size: 55px;

    color: var(--primary);

    margin-bottom: 25px;

}

.feature-card h4 {

    font-weight: 700;

    margin-bottom: 15px;

}

.feature-card p {

    color: var(--gray-600);

}

/* =====================================================
   OLYMPIADS
===================================================== */

.olympiad-card {

    border-radius: 28px;

    padding: 45px;

    color: #fff;

    min-height: 300px;

    position: relative;

    overflow: hidden;

    transition: var(--transition);

}

.olympiad-card:hover {

    transform: translateY(-12px);

}

.olympiad-card::before {

    content: '';

    position: absolute;

    width: 220px;

    height: 220px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .12);

    right: -60px;

    top: -60px;

}

.olympiad-card h3 {

    font-size: 42px;

    font-weight: 800;

}

.olympiad-card p {

    font-size: 18px;

    margin: 20px 0;

}

.olympiad-card a {

    color: #fff;

    font-weight: 700;

}

.nso {
    background: linear-gradient(135deg, #0057ff, #003da6);
}

.nmo {
    background: linear-gradient(135deg, #00b35d, #00874a);
}

.neo {
    background: linear-gradient(135deg, #8b5cf6, #6d28d9);
}

/* =====================================================
   TESTIMONIALS
===================================================== */

.testimonial-card {

    background: #fff;

    padding: 40px;

    border-radius: 24px;

    box-shadow: var(--shadow-md);

}

.testimonial-card p {

    font-size: 18px;

    line-height: 1.8;

}

.testimonial-card h5 {

    margin-top: 20px;

    font-weight: 700;

}

/* =====================================================
   ACCORDION
===================================================== */

.accordion-item {

    border: none;

    margin-bottom: 15px;

    border-radius: 16px !important;

    overflow: hidden;

    box-shadow: var(--shadow-sm);

}

.accordion-button {

    padding: 22px;

    font-weight: 600;

}

.accordion-button:not(.collapsed) {

    background: #f8fafc;

    color: var(--primary);

}

/* =====================================================
   CTA
===================================================== */

.cta-section {

    background:
        linear-gradient(135deg,
            var(--primary),
            var(--primary-light));

    color: #fff;

    padding: 100px 0;

    text-align: center;

}

.cta-section h2 {

    font-size: 3rem;

    font-weight: 800;

    margin-bottom: 25px;

}

/* =====================================================
   FOOTER
===================================================== */

.footer {

    background: var(--dark);

    color: #fff;

    padding: 80px 0;

}

.footer h4,
.footer h5 {

    margin-bottom: 20px;

}

.footer p {

    color: #cbd5e1;

}

/* =====================================================
   RESPONSIVE
===================================================== */

@media(max-width:992px) {

    .hero-section {

        padding-top: 150px;

    }

    .hero-title {

        font-size: 3rem;

    }

    .section-heading h2 {

        font-size: 34px;

    }

}

@media(max-width:768px) {

    .section-padding {

        padding: 70px 0;

    }

    .hero-buttons {

        flex-direction: column;

    }

    .hero-buttons .btn {

        width: 100%;

    }

    .hero-search {

        margin-top: 40px;

    }

    .stat-card {

        margin-bottom: 20px;

    }

}

@media(max-width:576px) {

    .hero-title {

        font-size: 2.2rem;

    }

    .hero-description {

        font-size: 1rem;

    }

    .section-heading h2 {

        font-size: 28px;

    }

    .olympiad-card {

        min-height: auto;

    }

}

/* ==================================
ABOUT PAGE
================================== */

.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #003da6, #0049c7, #0057ff);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 15px;
}

.breadcrumb-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.breadcrumb-nav a {
    color: #fff;
}

.breadcrumb-nav .active {
    color: #ffd54f;
    font-weight: 600;
}

.page-pattern {
    position: absolute;
    border-radius: 50%;
    opacity: .1;
}

.pattern-1 {
    width: 350px;
    height: 350px;
    background: #fff;
    left: -100px;
    top: -100px;
}

.pattern-2 {
    width: 450px;
    height: 450px;
    background: #fff;
    right: -150px;
    bottom: -200px;
}

.section-subtitle {
    color: #003da6;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.about-content h2,
.commitment-content h2 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
}

.about-content h2 span,
.commitment-content h2 span {
    color: #0057ff;
}

.title-line {
    width: 70px;
    height: 4px;
    background: #0057ff;
    margin: 25px 0;
    border-radius: 20px;
}

.about-image,
.commitment-image {
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
}

.about-image-wrapper,
.commitment-image-wrapper {
    position: relative;
}

.image-accent {
    position: absolute;
    width: 80px;
    height: 120px;
    background: #0057ff;
    border-radius: 16px;
    left: -25px;
    top: -25px;
}

.image-accent-yellow {
    position: absolute;
    width: 90px;
    height: 90px;
    background: #ffc107;
    border-radius: 16px;
    right: -20px;
    top: -20px;
}

.floating-stat {
    position: absolute;
    right: -20px;
    bottom: 30px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .1);
    display: flex;
    gap: 15px;
    align-items: center;
}

.schools {
    left: -20px;
    right: auto;
}

.floating-stat .icon {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #0057ff;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.floating-stat h4 {
    margin: 0;
    font-weight: 800;
}

.floating-stat p {
    margin: 0;
}

.vision-mission-section {
    background: #f8fafc;
    padding: 90px 0;
}

.vision-card,
.mission-card {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .06);
}

.vm-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: #0057ff;
    color: #fff;
    font-size: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.mission-card ul {
    list-style: none;
    padding: 0;
}

.mission-card li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 28px;
}

.mission-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0057ff;
    font-weight: bold;
}

.about-stats {
    padding-bottom: 80px;
}

.stats-wrapper {
    background: linear-gradient(135deg, #003da6, #0057ff);
    border-radius: 24px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 35px;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 180px;
}

.stat-item i {
    font-size: 36px;
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2.2rem;
    font-weight: 800;
}

@media(max-width:768px) {

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content h2,
    .commitment-content h2 {
        font-size: 2rem;
    }

    .floating-stat {
        position: relative;
        right: auto;
        left: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .stats-wrapper {
        gap: 30px;
    }
}

/* ==================================
OLYMPIADS PAGE
================================== */

.olympiads-section {
    padding: 80px 0;
}

.section-title h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #003da6;
    margin-bottom: 35px;
}

.olympiad-card {

    height: 100%;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;

    background: #fff;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .06);

    transition: .35s ease;
}

.olympiad-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0, 0, 0, .12);
}

.nso-card {
    background: #f6fbff;
}

.nmo-card {
    background: #f5fff7;
}

.neo-card {
    background: #faf8ff;
}

.olympiad-icon {

    width: 90px;
    height: 90px;

    margin: auto;
    margin-bottom: 20px;

    border-radius: 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 45px;

    color: #0057ff;
}

.olympiad-card h3 {

    color: #003da6;
    font-weight: 800;
    margin-bottom: 8px;
}

.olympiad-card h6 {

    color: #334155;
    margin-bottom: 15px;
}

.olympiad-card p {

    color: #64748b;
    line-height: 1.7;
    min-height: 90px;
}

.olympiad-card .btn {

    border-radius: 12px;
    padding: 10px 25px;
}

/* ===================== */

.why-section {

    background: #f8fafc;

    padding: 80px 0;
}

.feature-box {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    height: 100%;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, .05);

    transition: .3s ease;
}

.feature-box:hover {

    transform: translateY(-8px);

    box-shadow:
        0 15px 35px rgba(0, 0, 0, .1);
}

.feature-box i {

    font-size: 34px;

    color: #0057ff;

    margin-bottom: 18px;

    display: block;
}

.feature-box h5 {

    font-weight: 700;

    color: #003da6;

    margin-bottom: 10px;
}

.feature-box p {

    color: #64748b;

    line-height: 1.7;

    margin-bottom: 0;
}

@media(max-width:768px) {

    .olympiad-card p {
        min-height: auto;
    }

}

/* ==================================
REGISTRATION PAGE
================================== */

.registration-hero {
    background: #fff;
}

.fee-card {

    background: #eef5ff;

    border-radius: 24px;

    padding: 50px;

    text-align: center;

    max-width: 380px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.fee-card h3 {

    color: #003da6;

    font-weight: 700;
}

.fee-price {

    font-size: 5rem;

    font-weight: 800;

    color: #0057ff;

    margin: 20px 0;
}

.fee-card p {

    font-size: 1.3rem;

    color: #475569;

    margin: 0;
}

.registration-student {

    max-height: 520px;

    animation: floatStudent 4s ease-in-out infinite;
}

/* ==================== */

.section-box {

    background: #f8fafc;

    border-radius: 24px;

    padding: 40px;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
}

.section-box h2 {

    color: #003da6;

    font-weight: 700;
}

/* ==================== */

.process-card {

    background: #fff;

    border-radius: 20px;

    padding: 40px 20px;

    text-align: center;

    height: 100%;

    transition: .3s ease;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .05);
}

.process-card:hover {

    transform: translateY(-10px);
}

.process-card i {

    font-size: 55px;

    color: #0057ff;

    margin-bottom: 20px;
}

.process-card h5 {

    font-weight: 600;

    margin-bottom: 0;
}

/* ==================== */

.date-card {

    background: #fff;

    border-radius: 20px;

    padding: 30px;

    height: 100%;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .05);
}

.date-card h4 {

    margin-bottom: 30px;

    font-weight: 700;
}

.date-item {

    display: flex;

    align-items: center;

    gap: 15px;

    margin-bottom: 25px;

    font-size: 1.1rem;
}

.date-item i {

    font-size: 30px;

    color: #0057ff;
}

/* ==================== */

.registration-cta {

    padding-bottom: 80px;
}

.cta-box {

    background:
        linear-gradient(135deg,
            #003da6,
            #0057ff);

    color: #fff;

    border-radius: 24px;

    padding: 40px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 20px;
}

.cta-box h3 {

    font-weight: 800;

    margin-bottom: 10px;
}

.cta-box p {

    margin-bottom: 0;

    opacity: .9;
}

.cta-box .btn {

    padding: 14px 35px;

    border-radius: 14px;

    font-weight: 600;
}

/* ==================== */

@keyframes floatStudent {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

/* ==================== */

@media(max-width:992px) {

    .fee-card {

        margin: auto;
        margin-bottom: 40px;
    }

    .registration-student {

        max-height: 350px;
    }

}

@media(max-width:768px) {

    .fee-price {

        font-size: 3.5rem;
    }

    .cta-box {

        text-align: center;

        justify-content: center;
    }

}

/* ==================================
FOOTER
================================== */

.site-footer {

    background:
        linear-gradient(135deg,
            #002b75,
            #003da6);

    color: #fff;

    padding: 70px 0 25px;

    margin-top: 80px;
}

.footer-logo {

    max-width: 260px;

    margin-bottom: 35px;
}

/* ====================== */

.site-footer h5 {

    font-weight: 700;

    margin-bottom: 25px;

    color: #fff;
}

/* ====================== */

.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-links li {

    margin-bottom: 12px;
}

.footer-links a {

    color: rgba(255, 255, 255, .85);

    text-decoration: none;

    transition: .3s ease;
}

.footer-links a:hover {

    color: #fff;

    padding-left: 6px;
}

/* ====================== */

.footer-contact {

    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-contact li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 18px;

    color: rgba(255, 255, 255, .9);
}

.footer-contact i {

    color: #fff;

    margin-top: 3px;
}

/* ====================== */

.social-links {

    display: flex;

    gap: 15px;
}

.social-links a {

    width: 42px;

    height: 42px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .1);

    display: flex;

    align-items: center;

    justify-content: center;

    color: #fff;

    font-size: 18px;

    transition: .3s ease;
}

.social-links a:hover {

    background: #fff;

    color: #003da6;

    transform: translateY(-5px);
}

/* ====================== */

.site-footer hr {

    margin: 40px 0 20px;

    border-color:
        rgba(255, 255, 255, .15);
}

/* ====================== */

.footer-bottom {

    text-align: center;

    color:
        rgba(255, 255, 255, .75);

    font-size: .95rem;
}

/* ====================== */

@media(max-width:768px) {

    .footer-logo {

        max-width: 220px;
    }

    .site-footer {

        text-align: center;
    }

    .social-links {

        justify-content: center;
    }

    .footer-contact li {

        justify-content: center;
    }

}

/* ==================================
AWARDS PAGE
================================== */

.awards-section,
.school-awards,
.national-awards {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    color: #003da6;
    font-weight: 700;
    margin-bottom: 40px;
}

.certificate-card {

    background: #fff;

    border-radius: 24px;

    padding: 35px;

    display: flex;

    align-items: center;

    gap: 25px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.award-icon {

    width: 90px;
    height: 90px;

    border-radius: 20px;

    background: #eef5ff;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 42px;

    color: #0057ff;
}

/* ====================== */

.award-card {

    background: #fff;

    border-radius: 24px;

    padding: 40px 25px;

    text-align: center;

    height: 100%;

    transition: .35s ease;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .06);
}

.award-card:hover {

    transform: translateY(-10px);
}

.award-card i {

    font-size: 60px;

    margin-bottom: 20px;
}

.gold i {
    color: #f4b400;
}

.silver i {
    color: #b0b7c3;
}

.bronze i {
    color: #cd7f32;
}

.merit i {
    color: #0057ff;
}

/* ====================== */

.rank-awards {

    padding-bottom: 80px;
}

.rank-awards-box {

    background:
        linear-gradient(135deg,
            #003da6,
            #0057ff);

    border-radius: 28px;

    padding: 50px;

    color: #fff;
}

.rank-awards-box h2 {

    text-align: center;

    font-weight: 800;
}

.rank-card {

    text-align: center;

    padding: 30px;

    border-right:
        1px solid rgba(255, 255, 255, .15);
}

.rank-card:last-child {
    border-right: none;
}

.rank-medal {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    margin: auto;

    font-size: 42px;

    color: #fff;
}

.rank-medal.gold {
    background: #f4b400;
}

.rank-medal.silver {
    background: #c0c0c0;
}

.rank-medal.bronze {
    background: #cd7f32;
}

.rank-card h3 {

    margin-top: 20px;

    font-weight: 700;
}

.prize {

    font-size: 2rem;

    font-weight: 800;

    margin: 15px 0;
}

.rank-card ul {

    list-style: none;

    padding: 0;
}

.rank-card li {

    margin-bottom: 10px;
}

/* ====================== */

@media(max-width:992px) {

    .rank-card {

        border-right: none;

        border-bottom:
            1px solid rgba(255, 255, 255, .15);

        margin-bottom: 30px;
    }

}

@media(max-width:768px) {

    .certificate-card {

        flex-direction: column;

        text-align: center;
    }

}

/* ==================================
RESULTS PAGE
================================== */

.result-section {

    padding: 90px 0;
}

/* ===================== */

.result-card {

    background: #f8fafc;

    border-radius: 24px;

    padding: 35px;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.result-card h3 {

    color: #003da6;

    font-weight: 700;

    margin-bottom: 25px;
}

/* ===================== */

.level-buttons {

    display: flex;

    gap: 10px;

    margin-bottom: 25px;

    flex-wrap: wrap;
}

.level-buttons .btn {

    font-size: .85rem;
}

.active-level {

    background: #0057ff !important;
}

/* ===================== */

.form-label {

    font-weight: 600;

    color: #334155;
}

.form-control,
.form-select {

    height: 52px;

    border-radius: 12px;
}

.form-control:focus,
.form-select:focus {

    box-shadow: none;

    border-color: #0057ff;
}

/* ===================== */

.trophy-wrapper {

    position: relative;

    text-align: center;
}

.trophy-image {

    max-height: 500px;

    animation:
        trophyFloat 4s ease-in-out infinite;
}

/* ===================== */

.confetti {

    position: absolute;

    width: 12px;

    height: 12px;

    border-radius: 3px;
}

.confetti-1 {
    background: #ff4081;
    left: 15%;
    top: 10%;
}

.confetti-2 {
    background: #ff9800;
    left: 30%;
    top: 20%;
}

.confetti-3 {
    background: #2196f3;
    right: 25%;
    top: 15%;
}

.confetti-4 {
    background: #4caf50;
    right: 10%;
    top: 30%;
}

.confetti-5 {
    background: #9c27b0;
    left: 50%;
    top: 5%;
}

/* ===================== */

@keyframes trophyFloat {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }

}

/* ===================== */

@media(max-width:992px) {

    .result-card {

        margin-bottom: 30px;
    }

    .trophy-image {

        max-height: 350px;
    }

}

@media(max-width:576px) {

    .result-card {

        padding: 25px;
    }

    .level-buttons {

        flex-direction: column;
    }

}

/* ==================================
SCHOOLS ZONE
================================== */

.schools-zone {
    padding: 90px 0;
}

.school-login-card,
.features-card {

    background: #f8fafc;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.school-login-card h3,
.features-card h3 {

    color: #003da6;

    font-weight: 700;

    margin-bottom: 10px;
}

.school-login-card p {

    color: #64748b;

    margin-bottom: 25px;
}

/* ====================== */

.password-wrapper {

    position: relative;
}

.password-wrapper .form-control {

    padding-right: 50px;
}

.toggle-password {

    position: absolute;

    top: 50%;

    right: 12px;

    transform: translateY(-50%);

    border: none;

    background: none;

    color: #64748b;
}

/* ====================== */

.login-options {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 20px;

    font-size: .9rem;
}

.login-options a {

    color: #0057ff;

    text-decoration: none;
}

/* ====================== */

.new-school {

    text-align: center;
}

.new-school h5 {

    margin-bottom: 15px;

    color: #334155;
}

/* ====================== */

.features-grid {

    display: flex;

    flex-direction: column;

    gap: 20px;

    margin-top: 25px;
}

.feature-item {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    padding: 18px;

    background: #fff;

    border-radius: 16px;

    transition: .3s ease;

    box-shadow:
        0 8px 20px rgba(0, 0, 0, .04);
}

.feature-item:hover {

    transform: translateX(8px);
}

.feature-item i {

    font-size: 28px;

    color: #0057ff;
}

.feature-item h5 {

    margin-bottom: 5px;

    color: #003da6;

    font-weight: 600;
}

.feature-item p {

    margin-bottom: 0;

    color: #64748b;

    font-size: .95rem;
}

@media(max-width:768px) {

    .login-options {

        flex-direction: column;

        gap: 10px;
    }

}

/* ==================================
STUDENT ZONE
================================== */

.student-zone {
    padding: 90px 0;
}

.student-login-card,
.student-features-card {

    background: #f8fafc;

    border-radius: 24px;

    padding: 35px;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.student-login-card h3,
.student-features-card h3 {

    color: #003da6;

    font-weight: 700;

    margin-bottom: 10px;
}

.student-login-card p {

    color: #64748b;

    margin-bottom: 25px;
}

.new-student {

    text-align: center;
}

.new-student h5 {

    color: #334155;

    margin-bottom: 15px;
}

/* Highlight student feature cards */

.student-features-card .feature-item:hover {

    background: #eef5ff;

    border-left: 4px solid #0057ff;
}

/* ==================================
FAQ PAGE
================================== */

.faq-section {

    padding: 90px 0;
}

.faq-wrapper {

    max-width: 950px;

    margin: auto;
}

/* ====================== */

.accordion-item {

    border: none !important;

    margin-bottom: 18px;

    border-radius: 18px !important;

    overflow: hidden;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, .05);
}

/* ====================== */

.accordion-button {

    background: #fff;

    color: #1e293b;

    font-weight: 600;

    font-size: 1.05rem;

    padding: 24px 30px;

    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {

    background: #eef5ff;

    color: #003da6;
}

.accordion-button:focus {

    box-shadow: none;
}

/* ====================== */

.accordion-body {

    padding: 25px 30px;

    color: #64748b;

    line-height: 1.8;

    background: #fff;
}

/* ====================== */

.accordion-button::after {

    background-size: 18px;

    transition: .3s ease;
}

/* ====================== */

@media(max-width:768px) {

    .accordion-button {

        font-size: .95rem;

        padding: 18px 20px;
    }

    .accordion-body {

        padding: 20px;
    }

}

/* ==================================
CONTACT PAGE
================================== */

.contact-section {

    padding: 90px 0;
}

/* ===================== */

.contact-info-card,
.contact-form-card {

    background: #f8fafc;

    border-radius: 24px;

    padding: 40px;

    height: 100%;

    box-shadow:
        0 15px 40px rgba(0, 0, 0, .06);
}

.contact-info-card h2,
.contact-form-card h2 {

    color: #003da6;

    font-weight: 700;

    margin-bottom: 15px;
}

.contact-info-card>p {

    color: #64748b;

    margin-bottom: 35px;
}

/* ===================== */

.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 20px;

    margin-bottom: 35px;
}

.contact-icon {

    width: 60px;

    height: 60px;

    border-radius: 50%;

    background: #0057ff;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-shrink: 0;

    font-size: 22px;
}

.contact-item strong {

    color: #1e293b;

    display: block;

    margin-bottom: 10px;
}

.contact-item p {

    margin: 0;

    color: #475569;

    line-height: 1.8;
}

/* ===================== */

.form-label {

    color: #334155;

    font-weight: 600;

    margin-bottom: 8px;
}

.contact-form-card .form-control {

    height: 55px;

    border-radius: 14px;

    border: 1px solid #dbe3ee;
}

.contact-form-card textarea.form-control {

    height: auto;

    resize: none;
}

.contact-form-card .form-control:focus {

    border-color: #0057ff;

    box-shadow:
        0 0 0 4px rgba(0, 87, 255, .08);
}

/* ===================== */

.send-btn {

    height: 55px;

    border-radius: 14px;

    font-weight: 600;

    font-size: 1rem;
}

/* ===================== */

@media(max-width:992px) {

    .contact-info-card {

        margin-bottom: 25px;
    }

}

@media(max-width:768px) {

    .contact-info-card,
    .contact-form-card {

        padding: 25px;
    }

    .contact-item {

        gap: 15px;
    }

}