/* --- 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;
    }
}

.cpr-info-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
    /* Light gray background */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.cpr-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.cpr-image-col,
.cpr-content-col {
    flex: 1;
    min-width: 300px;
}

.cpr-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
}

.cpr-card img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

.cpr-heading {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cpr-description {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 25px;
}

.cpr-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.cpr-features li {
    margin-bottom: 12px;
    color: #444;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.cpr-features li i {
    color: #333;
    /* Darker check icon */
    margin-right: 10px;
    font-size: 14px;
}

.cpr-btn {
    display: inline-block;
    background-color: #00bcd4;
    /* Teal color from image */
    color: white;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.cpr-btn:hover {
    background-color: #0097a7;
}

/* Responsive for Mobile */
@media (max-width: 768px) {
    .cpr-container {
        flex-direction: column;
        text-align: center;
    }

    .cpr-features li {
        justify-content: center;
    }
}


/* CSS Styles */
:root {
    --primary-red: #e54d53;
    --bg-light: #f9f9f9;
    --text-dark: #333;
    --text-gray: #666;
}

.product-tabs-section {
    padding: 50px 20px;
    font-family: 'Poppins', sans-serif;
}

.tabs-container {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Tabs Header */
.tabs-header {
    display: flex;
    background: #eee;
    position: relative;
    border-bottom: 2px solid #ddd;
}

.tab-btn {
    flex: 1;
    padding: 15px;
    border: none;
    background: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    color: var(--text-gray);
    font-size: 16px;
    z-index: 1;
}

.tab-btn.active {
    color: white;
}

.tab-indicator {
    position: absolute;
    height: 100%;
    width: 50%;
    background: var(--primary-red);
    left: 0;
    transition: 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 0;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 40px;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 25px;
}

.info-col h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.info-col ul {
    list-style: none;
    padding: 0;
}

.info-col ul li {
    margin-bottom: 10px;
    color: var(--text-gray);
    font-size: 14px;
}

.info-col i {
    color: var(--primary-red);
    margin-right: 8px;
}

/* Review Form */
.review-form {
    margin-top: 20px;
}

.input-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.input-group input,
.input-group textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--primary-red);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stars {
    color: #ffb400;
    font-size: 20px;
    cursor: pointer;
    margin-bottom: 15px;
}

.submit-review-btn {
    background: var(--text-dark);
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.submit-review-btn:hover {
    background: var(--primary-red);
}

/* Responsive */
@media (max-width: 768px) {

    .info-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .tab-content {
        padding: 20px;
    }
}


/* Related Images Section Styles */
.related-section {
    padding: 60px 0 100px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a202c; /* Dark Blue-Black */
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.underline {
    width: 60px;
    height: 4px;
    background: #e54d53; /* Red highlight */
    margin: 0 auto 50px;
    border-radius: 2px;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Desktop var 4 images */
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    border: 1px solid #f0f0f0;
    opacity: 0; /* JS Animation sathi */
    transform: translateY(30px); /* JS Animation sathi */
}

.related-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    transition: transform 0.5s ease;
}

/* Hover Animations */
.related-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #e54d53;
}

.related-card:hover img {
    transform: scale(1.03);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .related-grid {
        grid-template-columns: repeat(2, 1fr); /* Tablet var 2 images */
    }
}

@media (max-width: 600px) {
    .related-grid {
        grid-template-columns: 1fr; /* Mobile var 1 image */
        gap: 20px;
    }
    .section-title {
        font-size: 26px;
    }
}

/* ===========================
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;
}