/* --- 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;
    }
}

/* ============================
start cpr-training-section
============================ */

.cpr-training-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.cpr-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.cpr-col { flex: 1; }

/* Titles & Text */
.cpr-main-title {
    font-size: 2.5rem;
    color: #333;
    line-height: 1.2;
    margin-bottom: 20px;
}
.cpr-main-title span { color: #cc4141; } /* Red Accent */

.cpr-desc p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Middle Image */
.img-wrapper img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Right Side Card */
.info-card {
    background: #fdfdfd;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    box-shadow: 5px 5px 20px rgba(0,0,0,0.02);
}
.info-card h3 { color: #2563eb; margin-bottom: 10px; } /* Blue Accent */

.cpr-features { list-style: none; padding: 0; margin-top: 20px; }
.cpr-features li {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: #444;
}

/* Button Styling (Gradient as per image) */
.reg-btn-desktop, .reg-btn-mobile {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(90deg, #cc4141 0%, #2563eb 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease;
}
.reg-btn-desktop:hover { transform: translateY(-3px); }
.reg-btn-mobile { display: none; }

/* --- Animations --- */
.animate-left { opacity: 0; transform: translateX(-50px); transition: 0.8s; }
.animate-right { opacity: 0; transform: translateX(50px); transition: 0.8s; }
.animate-zoom { opacity: 0; transform: scale(0.9); transition: 0.8s; }

.cpr-training-section.active .animate-left,
.cpr-training-section.active .animate-right,
.cpr-training-section.active .animate-zoom {
    opacity: 1;
    transform: translateX(0) scale(1);
}

/* Responsive */
@media (max-width: 1024px) {
    .cpr-container { flex-direction: column; text-align: center; }
    .reg-btn-desktop { display: none; }
    .reg-btn-mobile { display: inline-block; }
    .cpr-features { text-align: left; display: inline-block; }
}

/* ============================
end cpr-training-section
============================ */

/* =============================
start hero-training
============================= */

.hero-training {
    /* Gradient background as per image */
    background: linear-gradient(135deg, #a52a2a 0%, #3b429f 50%, #2563eb 100%);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    font-family: 'Poppins', sans-serif;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.ambulance-icon {
    font-size: 3rem;
}

.hero-header h1 {
    font-size: clamp(1.8rem, 5vw, 3.5rem);
    font-weight: 800;
    margin: 0;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: clamp(1rem, 2vw, 1.4rem);
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 400;
}

/* Enroll Button with Animation */
.enroll-btn {
    display: inline-block;
    background: #ffffff;
    color: #a52a2a;
    padding: 15px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    animation: pulse-white 2s infinite;
}

.enroll-btn:hover {
    transform: scale(1.1);
    background: #f8f8f8;
    box-shadow: 0 15px 30px rgba(0,0,0,0.3);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-training.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

@keyframes pulse-white {
    0% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    70% { box-shadow: 0 0 0 20px rgba(255, 255, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-header { flex-direction: column; gap: 5px; }
    .ambulance-icon { font-size: 2.5rem; }
    .hero-training { padding: 80px 15px; }
}

/* =============================
end hero-training
============================= */

/* =============================
start why-choose-section
============================= */

.why-choose-section {
    /* Section scope variables */
    --wcu-blue: #2563eb;
    --wcu-dark: #1e293b;
    --wcu-bg: #ffffff;
    
    padding: 80px 20px;
    background-color: var(--wcu-bg);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.wcu-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.wcu-main-title {
    font-size: 2.8rem;
    color: #cc4141; /* Red from image */
    margin-bottom: 50px;
    font-weight: 800;
}

.fire-emoji {
    display: inline-block;
    animation: flicker 1.5s infinite alternate;
}

/* Grid Layout */
.wcu-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Design */
.wcu-card {
    background: #f8faff; /* Light blue tint from image */
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(37, 99, 235, 0.1);
    opacity: 0;
    transform: translateY(40px);
}

.wcu-card:hover {
    transform: translateY(-12px);
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: var(--wcu-blue);
}

.wcu-icon-circle {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.wcu-card h3 {
    font-size: 1.5rem;
    color: var(--wcu-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.wcu-card p {
    color: #555;
    line-height: 1.6;
    font-size: 1.05rem;
}

/* Animations */
@keyframes flicker {
    0% { transform: scale(1); filter: drop-shadow(0 0 2px orange); }
    100% { transform: scale(1.1); filter: drop-shadow(0 0 10px red); }
}

.wcu-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .wcu-main-title { font-size: 2rem; }
    .why-choose-section { padding: 50px 15px; }
}

/* =============================
end why-choose-section
============================= */

/* =============================
start objectives-section
============================= */

.objectives-section {
    /* Background gradient matches your hero theme */
    background: linear-gradient(135deg, #2563eb 0%, #3b429f 50%, #a52a2a 100%);
    padding: 100px 20px;
    font-family: 'Poppins', sans-serif;
    color: white;
    overflow: hidden;
}

.obj-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.obj-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.obj-header h2 span {
    color: #ffd700; /* Yellow highlight like image */
}

.obj-header .subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Grid Layout */
.obj-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
}

/* Glassmorphism Card Design */
.obj-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 40px 20px;
    border-radius: 20px;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
}

.obj-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.25);
    border-color: #ffd700;
}

/* Icon Animation */
.obj-icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    background: rgba(255, 215, 0, 0.2);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    animation: float 3s ease-in-out infinite;
}

.obj-card p {
    font-size: 1.1rem;
    line-height: 1.5;
    font-weight: 500;
}

/* Keyframes */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* JS Triggered Animation */
.objectives-section.active .animate-up {
    animation: fadeInUp 0.8s forwards;
}

.obj-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .obj-header h2 { font-size: 1.8rem; }
    .objectives-section { padding: 60px 15px; }
}

/* =============================
end objectives-section
============================= */

/* ==============================
start training-info-section
============================== */

.training-info-section {
    padding: 80px 20px;
    background-color: #f0f4f8; /* Light neutral background */
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.ti-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

/* Card Styling */
.ti-card {
    flex: 1;
    min-width: 320px;
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: transform 0.3s ease;
}

.ti-card:hover {
    transform: translateY(-5px);
}

.ti-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 15px;
}

.ti-header-icon {
    font-size: 1.8rem;
    color: #2563eb;
}

.ti-card-header h2 {
    font-size: 1.6rem;
    color: #1e293b;
    font-weight: 700;
}

/* List Styling */
.ti-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ti-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid #f8fafc;
    color: #475569;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
}

.ti-list li:last-child { border-bottom: none; }

.ti-list li:hover {
    padding-left: 10px;
    color: #2563eb;
}

.ti-list .icon {
    font-size: 1.2rem;
    min-width: 25px;
}

/* Specific color for Learn list icons */
.learn-list .icon { color: #cc4141; }

/* Animations States */
.animate-left { opacity: 0; transform: translateX(-50px); transition: 0.8s ease; }
.animate-right { opacity: 0; transform: translateX(50px); transition: 0.8s ease; }

.training-info-section.active .animate-left,
.training-info-section.active .animate-right {
    opacity: 1;
    transform: translateX(0);
}

/* Staggered List Animation */
.training-info-section.active li {
    animation: listReveal 0.5s forwards;
}

@keyframes listReveal {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .ti-card { padding: 25px; }
    .ti-card-header h2 { font-size: 1.3rem; }
}

/* ==============================
end training-info-section
============================== */

/* ============================
start attendees-section
============================ */

.attendees-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.attn-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Base Card Styling */
.attn-card {
    flex: 1;
    min-width: 320px;
    border-radius: 20px;
    padding: 40px;
    color: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    transition: transform 0.4s ease;
}

.attn-card:hover {
    transform: translateY(-8px);
}

/* Blue & Red Themes from Image */
.who-should { background: linear-gradient(135deg, #0061ff 0%, #0047bb 100%); }
.languages { background: linear-gradient(135deg, #ff416c 0%, #cc0000 100%); }

.attn-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 15px;
}

.header-icon { font-size: 1.8rem; }

.attn-card h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

/* List Styling */
.attn-list {
    list-style: none;
    padding: 0;
}

.attn-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 12px 0;
    font-size: 1.05rem;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.check, .globe {
    font-weight: bold;
    min-width: 25px;
}

/* --- Animation States --- */
.animate-left { opacity: 0; transform: translateX(-60px); transition: 0.8s; }
.animate-right { opacity: 0; transform: translateX(60px); transition: 0.8s; }

.attendees-section.active .animate-left,
.attendees-section.active .animate-right {
    opacity: 1;
    transform: translateX(0);
}

.attendees-section.active .attn-list li {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .attn-card { padding: 30px 20px; }
    .attn-card h2 { font-size: 1.5rem; }
}

/* ============================
end attendees-section
============================ */

/* ==========================
start faq-section
========================== */

.faq-section {
    padding: 80px 20px;
    background-color: #f0f7ff;
    font-family: 'Poppins', sans-serif;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: 2.2rem;
    color: #3b429f;
}

.faq-header h2 span {
    display: block;
    font-size: 1.8rem;
    color: #4361ee;
}

/* Accordion Styling */
.faq-item {
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: linear-gradient(90deg, #4361ee 0%, #3b82f6 100%);
    color: white;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    filter: brightness(1.1);
}

.faq-arrow {
    transition: transform 0.4s ease;
    font-size: 1.2rem;
}

/* Answer Styling */
.faq-answer {
    background: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.3s ease;
}

.faq-answer p {
    padding: 20px 25px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Active State */
.faq-item.active .faq-answer {
    max-height: 200px; /* Adjust based on content */
}

.faq-item.active .faq-arrow {
    transform: rotate(90deg);
}

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

.faq-section.active .animate-up {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 600px) {
    .faq-header h2 { font-size: 1.6rem; }
    .faq-question { font-size: 1rem; padding: 15px 20px; }
}

/* ==========================
end faq-section
========================== */

/* ===========================
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;
}