/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --sky-blue: #00BFFF;
    /* Academy Title Color */
    --dark-blue: #2c3e8c;
    /* Logo/Register Button Color */
    --black: #000000;
    /* Links Color */
    --white: #ffffff;
    /* Navbar Background */
    --light-gray: #f8f9fa;
    /* Hover Background */
    --transition: all 0.3s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #f4f4f4;
}

/* --- Header & Navbar Layout --- */
header {
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 2000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 85px;
    /* Fixed height */
    max-width: 1400px;
    margin: 0 auto;
}

/* --- Logo Section --- */
.logo-section {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo {
    height: 65px;
    width: auto;
}

.brand-text {
    display: flex;
    flex-direction: column;
}

.elite {
    color: var(--dark-blue);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
    text-transform: uppercase;
}

.academy {
    color: var(--sky-blue);
    font-size: 14px;
    font-weight: 600;
}

/* --- Desktop Navigation --- */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 5px;
}

.nav-links {
    text-decoration: none;
    color: var(--black);
    padding: 10px 15px;
    font-size: 16px;
    font-weight: 500;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-links:hover {
    color: var(--sky-blue);
}

/* --- Dropdown Styling (Desktop) --- */
.dropdown {
    position: relative;
}

/* Desktop Dropdown Position Update */
.dropdown-menu {
    position: absolute;
    top: 100%;
    /* Default top */
    margin-top: 18px;
    /* Ya mule dropdown 10px khali sarakel */
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 10px 0;
    border-top: 3px solid var(--sky-blue);
    border-radius: 8px;
    /* Charhi bajuni smooth corners */

    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    /* Suruvatila thoda khali asel */
    transition: var(--transition);
}

/* Hover kelyavar to tyachya jagevar yeil */
.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* --- Dropdown Text Styling (Desktop & General) --- */
.dropdown-menu li a {
    padding: 14px 25px;
    /* Padding thodi vadhvli aahe */
    display: block;
    text-decoration: none;
    color: var(--black);
    font-size: 16px;
    /* Text size 14px varun 16px kela aahe */
    font-weight: 500;
    /* Text thoda bold kela aahe */
    transition: 0.2s;
    line-height: 1.4;
    /* Don lines madhe vyavasthit antar rahil */
}

.dropdown-menu li a:hover {
    background-color: var(--light-gray);
    color: var(--sky-blue);
    padding-left: 30px;
    /* Hover kelyavar thoda jast slide hoil (Animated effect) */
}

/* --- Mobile View Dropdown Text (Optional) --- */
@media screen and (max-width: 1024px) {
    .dropdown-menu li a {
        font-size: 17px;
        /* Mobile var thoda aankhi motha kela aahe touch karnyasaathi sope jail */
        padding: 15px 40px;
        /* Mobile dropdown madhe indentation vadhvli aahe */
    }
}

/* --- Action Buttons --- */
.nav-btns {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 15px;
}

.btn {
    padding: 10px 22px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
    transition: var(--transition);
}

.btn.mock {
    background-color: #f0f0f0;
    color: #333;
}

.btn.mock:hover {
    background-color: #e2e2e2;
}

.btn.register {
    background-color: var(--dark-blue);
    color: white;
}

.btn.register:hover {
    background-color: #1a2a6c;
    box-shadow: 0 4px 12px rgba(44, 62, 140, 0.3);
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 2001;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* --- Hamburger to X Animation --- */
.menu-toggle.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* --- RESPONSIVE MOBILE VIEW (Max 1024px) --- */
@media screen and (max-width: 1024px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        /* Fixed or Absolute as per preference */
        top: 85px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 0;
        transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        overflow-y: auto;
        z-index: 1999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-links {
        width: 100%;
        padding: 15px 30px;
        font-size: 18px;
        justify-content: space-between;
        border-bottom: 1px solid #f0f0f0;
    }

    /* Mobile Dropdown (Navbar chya khali layer sarkhe) */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        display: none;
        /* Controlled by JS class .active */
        transform: none;
        box-shadow: none;
        background-color: #fcfcfc;
        border-top: none;
        padding-left: 20px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-btns {
        width: 100%;
        padding: 30px;
        flex-direction: column;
        margin: 0;
    }

    .btn {
        width: 100%;
        padding: 15px;
    }
}

/* ===========================
End Header
=========================== */

/* ===========================
Start Video Banner
=========================== */

/* Branding Variables */
:root {
    --navy: #2b3990;
    --red: #ed1c24;
}

.clear-video-banner {
    position: relative;
    width: 98%;
    /* Width vadhavli aahe (95% varun 98%) */
    max-width: 1800px;
    /* Jast mohtya screen sathi limit vadhavli */
    margin: 30px auto;
    /* Center alignment */
    height: 85vh;
    /* Height thodi vadhavli */
    border-radius: 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    background-color: #000;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    z-index: 10;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#bgVideo {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay-02 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.banner-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    color: #fff;
    text-align: center;
    padding: 0 20px;
}

/* --- Typography & Animations --- */
.subtle-fade {
    font-size: 4.5rem;
    /* Headline thodi mohti keli */
    font-weight: 800;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 2px 4px 15px rgba(0, 0, 0, 0.6);
    animation: fadeSlow 1.5s ease-out forwards;
}

.subtle-fade-delay {
    font-size: 1.5rem;
    margin-bottom: 40px;
    opacity: 0;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.5);
    animation: fadeSlow 1.5s ease-out 0.5s forwards;
}

.cta-btns {
    opacity: 0;
    animation: fadeSlow 1.5s ease-out 1s forwards;
}

@keyframes fadeSlow {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- PREMIUM BUTTONS CSS --- */
.btn-red-elite {
    background-color: var(--red);
    color: #fff;
    padding: 16px 40px;
    /* Buttons thode broad kele */
    border-radius: 50px;
    /* Capsule shape buttons (Modern look) */
    text-decoration: none;
    font-weight: 700;
    margin: 10px;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid var(--red);
    box-shadow: 0 8px 20px rgba(237, 28, 36, 0.3);
}

.btn-red-elite:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(43, 57, 144, 0.4);
}

.btn-outline-white {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin: 10px;
    display: inline-block;
    transition: all 0.4s ease;
    backdrop-filter: blur(5px);
    /* Glassmorphism effect */
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--navy);
    transform: translateY(-5px);
}

/* --- Mobile Responsive --- */
@media (max-width: 768px) {
    .clear-video-banner {
        width: 95%;
        height: 65vh;
        border-radius: 25px;
        margin: 20px auto;
    }

    .subtle-fade {
        font-size: 2.8rem;
    }

    .subtle-fade-delay {
        font-size: 1.2rem;
    }

    .btn-red-elite,
    .btn-outline-white {
        padding: 12px 30px;
        font-size: 14px;
        width: 80%;
        /* Mobile var buttons ekameka khali vyavasthit distat */
    }
}

/* ===========================
End Video Banner
=========================== */

/* ==========================
Start About
========================== */

:root {
    --navy: #2b3990;
    --red: #ed1c24;
    --light-bg: #f9faff;
}

.about-section {
    padding: 80px 0;
    background-color: #fff;
    overflow: hidden;
}

.about-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* --- Left Side: Video Styling --- */
.about-left {
    flex: 1;
    min-width: 400px;
}

.video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(43, 57, 144, 0.15);
}

.about-video {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--red);
    color: #fff;
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(237, 28, 36, 0.3);
}

.experience-badge .years {
    display: block;
    font-size: 28px;
    font-weight: 800;
}

.experience-badge .exp-text {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
}

/* --- Right Side: Content Styling --- */
.about-right {
    flex: 1.2;
    min-width: 400px;
}

.sub-heading {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.main-heading {
    color: var(--navy);
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Features List Design */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 35px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--red);
    font-size: 20px;
    background: rgba(237, 28, 36, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feature-item span {
    font-weight: 600;
    color: var(--navy);
    font-size: 15px;
}

.btn-about {
    display: inline-block;
    background: var(--navy);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-about:hover {
    background: var(--red);
    transform: translateY(-3px);
}

/* Responsive Mobile */
@media (max-width: 991px) {
    .about-wrapper {
        flex-direction: column;
    }

    .about-left,
    .about-right {
        min-width: 100%;
    }

    .main-heading {
        font-size: 30px;
    }
}

/* ==========================
End About
========================== */

/* ==========================
Start Vision Mission
========================== */

:root {
    --navy: #2b3990;
    --red: #ed1c24;
    --light-bg: #f4f7fa;
}

.mission-vision-section {
    padding: 100px 0;
    background-color: var(--light-bg);
}

.section-top {
    text-align: center;
    margin-bottom: 60px;
}

.badge-red {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.title-navy {
    color: var(--navy);
    font-size: 40px;
    font-weight: 800;
    margin: 10px 0;
}

.divider {
    width: 70px;
    height: 4px;
    background: var(--red);
    margin: 15px auto;
    border-radius: 2px;
}

/* Grid Layout */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

/* Card Styling */
.mv-card {
    background: #fff;
    padding: 50px 40px;
    border-radius: 25px;
    position: relative;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 5px solid transparent;
    overflow: hidden;
}

.mv-card.mission {
    border-bottom-color: var(--navy);
}

.mv-card.vision {
    border-bottom-color: var(--red);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Icon Box */
.mv-icon-box {
    width: 70px;
    height: 70px;
    background: var(--light-bg);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: 0.4s;
}

.mv-icon-box i {
    font-size: 32px;
    transition: 0.4s;
}

.mission .mv-icon-box i {
    color: var(--navy);
}

.vision .mv-icon-box i {
    color: var(--red);
}

.mv-card:hover .mv-icon-box {
    background: var(--navy);
}

.mv-card.vision:hover .mv-icon-box {
    background: var(--red);
}

.mv-card:hover .mv-icon-box i {
    color: #fff;
}

/* Content Styling */
.mv-content h3 {
    font-size: 26px;
    color: var(--navy);
    font-weight: 700;
    margin-bottom: 20px;
}

.quote {
    font-size: 17px;
    color: #444;
    font-style: italic;
    font-weight: 600;
    border-left: 4px solid var(--red);
    padding-left: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.mv-content p {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .mv-grid {
        grid-template-columns: 1fr;
    }

    .mv-card {
        padding: 40px 30px;
    }
}

/* ==========================
End Vision Mission
========================== */

/* ==========================
Start Team Member
========================== */

:root {
    --navy: #2b3990;
    --red: #ed1c24;
}

.team-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.container {
    width: 95%;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.main-title {
    color: var(--navy);
    font-size: 32px;
    font-weight: 800;
}

.title-divider {
    width: 50px;
    height: 3px;
    background: var(--red);
    margin: 10px auto;
}

/* Single Row Logic */
.team-row {
    display: flex;
    flex-wrap: wrap;
    /* Mobile sathi wraps */
    margin: 0 -10px;
    /* Spacing adjust */
}

.team-col {
    flex: 0 0 25%;
    /* Desktop var 4 column (100 / 4 = 25%) */
    padding: 0 10px;
    box-sizing: border-box;
}

.team-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    border-bottom: 4px solid var(--navy);
}

.team-card:hover {
    transform: translateY(-10px);
    border-bottom-color: var(--red);
}

.img-container {
    width: 100%;
    height: 250px;
    /* Photo height fixed */
}

.img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-content {
    padding: 20px;
    text-align: center;
}

.info-content h3 {
    font-size: 18px;
    color: var(--navy);
    margin-bottom: 5px;
}

.role {
    font-size: 13px;
    color: var(--red);
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.edu {
    font-size: 12px;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
}

.desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

/* --- Responsive Adjustments --- */

/* Tablet var 2-2 photos distil */
@media (max-width: 992px) {
    .team-col {
        flex: 0 0 50%;
        margin-bottom: 20px;
    }
}

/* Mobile var 1-1 photo disel */
@media (max-width: 576px) {
    .team-col {
        flex: 0 0 100%;
    }

    .main-title {
        font-size: 26px;
    }
}

/* ==========================
End Team Member
========================== */

/* <!-- ===========================
Start Why Choose Elite Plus 
=========================== --> */

:root {
    --navy: #2b3990;
    --red: #ed1c24;
    --soft-gray: #f4f7fa;
}

.why-choose-section {
    padding: 80px 0;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.section-header {
    margin-bottom: 50px;
}

.badge {
    color: var(--red);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
}

.main-title {
    color: var(--navy);
    font-size: 36px;
    font-weight: 800;
    margin: 10px 0;
}

.divider {
    width: 60px;
    height: 4px;
    background: var(--red);
    margin: 0 auto;
    border-radius: 2px;
}

/* Grid Center Alignment sathi */
.why-choose-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

/* Card Design */
.choose-card {
    background: var(--soft-gray);
    padding: 40px 30px;
    border-radius: 20px;
    width: calc(33.333% - 25px);
    /* Desktop var 3 cards */
    min-width: 300px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.choose-card:hover {
    background: var(--navy);
    transform: translateY(-12px);
    box-shadow: 0 15px 35px rgba(43, 57, 144, 0.2);
}

/* Icon Animation */
.icon-box {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.4s;
}

.choose-card:hover .icon-box {
    background: var(--red);
    color: #fff;
    transform: rotateY(360deg);
}

.choose-card h3 {
    color: var(--navy);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: 0.3s;
}

.choose-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    transition: 0.3s;
}

/* Hover kelyavar text color white honyasathi */
.choose-card:hover h3,
.choose-card:hover p {
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .choose-card {
        width: calc(50% - 25px);
    }
}

@media (max-width: 768px) {
    .choose-card {
        width: 100%;
    }

    .main-title {
        font-size: 28px;
    }
}

/* <!-- ===========================
End Why Choose Elite Plus 
=========================== --> */

/* ===========================
Start Footer
=========================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root {
    --primary-blue: #2e3192;
    --accent-red: #ed1c24;
    --dark-navy: #1a1c4d; /* Background साठी नवीन शेड */
    --white: #ffffff;
    --glass-white: rgba(255, 255, 255, 0.05);
    --text-light: #e0e0e0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

/* --- Animated Background Footer --- */
.elite-footer {
    /* Gradient Background जो खूप प्रीमियम दिसतो */
    background: linear-gradient(135deg, #1a1c4d 0%, #2e3192 100%);
    padding: 100px 0 0 0;
    border-top: 8px solid var(--accent-red);
    position: relative;
    color: var(--white);
    overflow: hidden;
}

/* Background वर फिरणारे छोटे गोळे (Floating Shapes) */
.elite-footer::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: var(--accent-red);
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(50px);
    animation: float 6s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding: 0 25px;
    position: relative;
    z-index: 2;
}

/* --- Typography & Headings --- */
.footer-col h3 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 35px;
    position: relative;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -10px;
    width: 30px;
    height: 4px;
    background: var(--accent-red);
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.footer-col:hover h3::after {
    width: 60px;
}

/* --- Logo & About Section --- */
.footer-logo {
    max-width: 220px;
    margin-bottom: 25px;
    background: white; /* लोगो उठून दिसण्यासाठी पांढरा बॅकग्राउंड */
    padding: 10px;
    border-radius: 10px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
    transition: transform 0.5s ease;
}

.footer-logo:hover {
    transform: scale(1.05) rotate(-2deg);
}

.about-col p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* --- Navigation Links with Glow Effect --- */
.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links li a {
    text-decoration: none;
    color: var(--text-light);
    font-size: 15px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
}

.footer-links li a::before {
    content: '→';
    margin-right: -15px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--accent-red);
}

.footer-links li a:hover {
    color: var(--white);
    transform: translateX(10px);
    text-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.footer-links li a:hover::before {
    margin-right: 10px;
    opacity: 1;
}

/* --- Contact Details --- */
.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    gap: 15px;
    background: var(--glass-white);
    padding: 15px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent-red);
}

.contact-item i {
    color: var(--accent-red);
    font-size: 20px;
}

.contact-item span {
    font-size: 14px;
}

/* --- Social Icons with Pulse Animation --- */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: var(--white);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.5s ease;
    position: relative;
}

.social-icon:hover {
    background: var(--accent-red);
    color: var(--white);
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 0 20px rgba(237, 28, 36, 0.6);
}

/* --- Copyright Section --- */
.footer-bottom {
    text-align: center;
    padding: 30px;
    margin-top: 80px;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 14px;
    color: #bbb;
    letter-spacing: 1px;
}

/* --- Responsive Settings --- */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
}

@media (max-width: 650px) {
    .elite-footer {
        padding: 60px 0 0 0;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-links li a {
        justify-content: center;
    }

    .contact-item {
        justify-content: center;
        text-align: left;
    }

    .social-links {
        justify-content: center;
    }
}

/* ===========================
End Footer
=========================== */

/* Modal Background */
.custom-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

/* Popup Box */
.modal-content {
    background: #fff;
    margin: 10% auto;
    padding: 30px;
    width: 350px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

.close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
}

/* Tabs Styling */
.tab-header {
    display: flex;
    justify-content: space-around;
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
}

.tab-header button {
    background: none;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-weight: bold;
    color: #666;
}

.tab-header button.active {
    color: #d90429;
    border-bottom: 2px solid #d90429;
}

/* Inputs & Submit */
.modal-content input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
}

.auth-submit {
    width: 100%;
    padding: 12px;
    background: #28a745;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
    font-size: 16px;
}

/* Mock Modal Specific Styling */
#trainingSelect {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #f9f9f9;
    cursor: pointer;
}

.close-mock {
    position: absolute;
    right: 20px;
    top: 10px;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}