/* --- 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 Training
=========================== */

:root {
        --primary-color: #e63946; /* Professional Red */
        --secondary-color: #1d3557; /* Deep Navy */
        --text-gray: #4a4a4a;
        --light-bg: #f8f9fa;
    }

    .training-section {
        padding: 80px 5%;
        background-color: #ffffff;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .content-wrapper {
        display: flex;
        align-items: center;
        gap: 60px;
        flex-wrap: wrap; /* Ensures responsiveness */
    }

    /* Left Side Styling & Animation */
    .image-container {
        flex: 1;
        min-width: 350px;
    }

    .image-box {
        position: relative;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        transition: transform 0.4s ease;
    }

    .image-box img {
        width: 100%;
        display: block;
        transition: scale 0.6s ease;
    }

    .image-box:hover {
        transform: translateY(-10px);
    }

    .image-box:hover img {
        scale: 1.05;
    }

    /* Right Side Content Styling */
    .text-content {
        flex: 1;
        min-width: 350px;
    }

    .badge {
        color: var(--primary-color);
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 0.9rem;
        display: block;
        margin-bottom: 15px;
    }

    .text-content h2 {
        font-size: 2.5rem;
        color: var(--secondary-color);
        line-height: 1.2;
        margin-bottom: 11px;
        text-align: left;
    }

    .text-content h2 span {
        color: var(--primary-color);
    }

    .description {
        font-size: 1.1rem;
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 30px;
        text-align: left;
    }

    .mission-box {
        background: var(--light-bg);
        padding: 25px;
        border-left: 5px solid var(--primary-color);
        border-radius: 8px;
        margin-bottom: 35px;
        text-align: left;
    }

    .mission-box h3 {
        margin-top: 0;
        color: var(--secondary-color);
        font-size: 1.3rem;
    }

    .cta-button {
        display: inline-flex;
        align-items: center;
        background: var(--secondary-color);
        color: white;
        padding: 15px 35px;
        border-radius: 50px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .cta-button:hover {
        background: var(--primary-color);
        box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3);
    }

    .arrow-icon {
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .cta-button:hover .arrow-icon {
        transform: translateX(5px);
    }

    /* Responsive Adjustments */
    @media (max-width: 992px) {
        .content-wrapper {
            flex-direction: column;
            text-align: center;
        }
        
        .mission-box {
            text-align: left;
        }

        .text-content h2 {
            font-size: 2rem;
        }
    }

/* ===========================
End Training
=========================== */

/* ===========================
start training section
=========================== */

/* Variables fakt hya section sathi */
.training-section {
    --training-primary: #2563eb;
    --training-secondary: #3b82f6;
    --training-accent: #ef4444;
    --training-text-dark: #1f2937;
    --training-text-light: #6b7280;
    --training-white: #ffffff;
    --training-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

    padding: 80px 5%;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    font-family: 'Poppins', sans-serif;
}

.training-section .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.training-section .section-title {
    font-size: 2.5rem;
    color: var(--training-text-dark);
    margin-bottom: 10px;
    font-weight: 700;
}

.training-section .section-subtitle {
    color: var(--training-text-light);
    margin-bottom: 50px;
    font-size: 1.1rem;
}

/* Grid Layout */
.training-section .training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.training-section .row-3-container {
    display: contents; 
}

/* Card Styling */
.training-section .card {
    background: var(--training-white);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--training-shadow);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05); /* Soft Border */
    display: flex;
    flex-direction: column;
    text-align: left;
}

.training-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Badge */
.training-section .badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--training-accent);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

/* Image Scaling */
.training-section .card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.training-section .card:hover img {
    transform: scale(1.1);
}

/* Card Content */
.training-section .card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: var(--training-text-dark);
    margin: 0;
}

.training-section .card p {
    padding: 0 20px;
    color: var(--training-text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    flex-grow: 1;
}

.training-section .instructor {
    display: block;
    padding: 15px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--training-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Button Styling */
.training-section .learn-more {
    margin: 0 20px 20px;
    padding: 12px;
    background: var(--training-primary);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.training-section .learn-more:hover {
    background: #1e40af;
    letter-spacing: 1px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .training-section .section-title { font-size: 2rem; }
    .training-section .training-grid { grid-template-columns: 1fr; }
}

/* ===========================
End training section
=========================== */

/* =====================================
start First Aid & CPR Practice Tests
===================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #f4f7f9;
}

.test-section {
    padding: 80px 20px;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.main-title {
    font-size: 2.5rem;
    color: #1a365d; /* Dark Blue */
    margin-bottom: 40px;
    line-height: 1.3;
}

.highlight {
    color: #e53e3e; /* Red from image */
    display: block;
    font-weight: 700;
}

/* Badge Layout */
.badge-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    perspective: 1000px;
}

/* Badge Design */
.badge {
    text-decoration: none;
    background: #ffffff;
    color: #2c5282;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: inline-block;
    cursor: pointer;
}

/* Hover Animation */
.badge:hover {
    transform: translateY(-8px) scale(1.05);
    background: #e53e3e;
    color: #fff;
    box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
    border-color: transparent;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .main-title {
        font-size: 1.8rem;
    }
    .badge {
        font-size: 0.85rem;
        padding: 10px 18px;
    }
}

/* ===================================
end First Aid & CPR Practice Tests
=================================== */

/* ===============================
start online mock test
=============================== */

/* Fakt features section sathi scope keleli CSS */
.features-section {
    /* Variables fakt hya section purtach maryadit */
    --f-primary: #2563eb;
    --f-text-dark: #1e293b;
    --f-bg-section: #f8fafc; /* Ha color fakt section cha background badlel */
    --f-card-bg: #ffffff;
    
    padding: 80px 20px;
    background-color: var(--f-bg-section); /* Purn page nahi, fakt section */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow: hidden; 
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--f-text-dark);
    margin-bottom: 50px;
}

/* Grid System */
.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Card Styling Madhe Ha Badal Kara */
.features-section .feature-card {
    background: var(--f-card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.03);
    
    /* YETHE BADAL KARA: */
    opacity: 1;           /* 0 kadhun 1 kara */
    transform: translateY(0); /* 30px kadhun 0 kara */
}

.features-section .feature-card.active {
    opacity: 1;
    transform: translateY(0);
}

.features-section .feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: var(--f-primary);
}

.features-section .icon-wrapper {
    font-size: 3rem;
    margin-bottom: 20px;
    display: inline-block;
}

.features-section .feature-card h3 {
    font-size: 1.25rem;
    color: var(--f-text-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.features-section .feature-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .features-section .section-title {
        font-size: 2rem;
    }
    .features-section {
        padding: 50px 15px;
    }
}

/* ===============================
end online mock test
===============================  */

/* ==============================
start Who Can Use These Tests
==============================  */

.who-can-use {
    /* Variables specific to this section */
    --wcu-bg: #cc7a7a; /* Image madhla background color */
    --wcu-card-bg: #ffffff;
    --wcu-text-red: #a52a2a;
    --wcu-text-dark: #333333;

    padding: 80px 20px;
    background-color: var(--wcu-bg);
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.who-can-use .wcu-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-can-use .wcu-title {
    text-align: center;
    color: white;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

/* Grid Layout */
.who-can-use .wcu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card Design */
.who-can-use .wcu-card {
    background: var(--wcu-card-bg);
    padding: 40px 25px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: all 0.4s ease-in-out;
    cursor: pointer;
    
    /* Animation Initial State */
    opacity: 0;
    transform: translateY(40px);
}

/* Hover Effect */
.who-can-use .wcu-card:hover {
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.who-can-use .wcu-icon-box {
    font-size: 3.5rem;
    margin-bottom: 20px;
    display: block;
}

.who-can-use .wcu-card h3 {
    color: var(--wcu-text-red);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.who-can-use .wcu-card p {
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* JS Animation Class */
.who-can-use .wcu-card.reveal {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .who-can-use .wcu-title {
        font-size: 1.6rem;
    }
    .who-can-use {
        padding: 50px 15px;
    }
}

/* ==============================
end Who Can Use These Tests
============================== */

/* =============================
start approach-section
============================= */

.approach-section {
    padding: 80px 20px;
    background-color: #ffffff; /* Section cha background white */
    font-family: 'Segoe UI', Roboto, sans-serif;
    overflow: hidden;
}

.approach-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap; /* Mobile sathi responsive */
}

/* Image Styling */
.approach-image {
    flex: 1;
    min-width: 300px;
}

.approach-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
    display: block;
}

/* Content Styling */
.approach-content {
    flex: 1;
    min-width: 300px;
}

.approach-title {
    color: #a52a2a; /* Reddish color as per image */
    font-size: 2.5rem;
    margin-bottom: 25px;
    font-weight: 700;
}

.approach-content p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.approach-content span {
    color: #2563eb; /* Blue highlights */
    font-weight: 600;
}

.approach-content strong {
    color: #1e293b;
}

/* Animations State */
.animate-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 0.8s ease-out;
}

.animate-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.8s ease-out;
}

/* JS Triggered Class */
.approach-section.show .animate-left,
.approach-section.show .animate-right {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .approach-container {
        flex-direction: column;
        text-align: center;
    }
    .approach-title {
        font-size: 2rem;
    }
}

/* =============================
end approach-section
=============================  */

/* ==============================
start solutions-section
============================== */

/* Section Scope */
.solutions-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.sol-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* Content Styling */
.sol-content {
    flex: 1.2;
}

.sol-item {
    margin-bottom: 40px;
}

.sol-title {
    font-size: 2.2rem;
    color: #a52a2a; /* Maroon/Red from image */
    margin-bottom: 15px;
    font-weight: 700;
}

.sol-title span {
    color: #2563eb; /* Blue from image */
}

.sol-content p {
    color: #555;
    line-height: 1.7;
    font-size: 1.05rem;
    text-align: justify;
}

/* Image Styling */
.sol-image {
    flex: 1;
}

.image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: scale(1.02);
}

.sol-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* --- Animations --- */
.animate-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.animate-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active State for JS */
.solutions-section.is-visible .animate-left,
.solutions-section.is-visible .animate-right {
    opacity: 1;
    transform: translateX(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .sol-container {
        flex-direction: column-reverse; /* Mobile var text khali image var */
        gap: 40px;
    }
    
    .sol-title {
        font-size: 1.8rem;
        text-align: center;
    }

    .sol-content p {
        text-align: center;
    }
}

/* ==============================
end solutions-section
============================== */

/* ==============================
start cert-section
============================== */

.cert-section {
    padding: 80px 20px;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.cert-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

/* Image Side */
.cert-image-box {
    flex: 1;
    position: relative;
}

.cert-image-box img {
    width: 100%;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    display: block;
}

.cert-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background: #2563eb; /* Blue highlight */
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Content Side */
.cert-content {
    flex: 1.2;
}

.cert-heading {
    font-size: 2.8rem;
    color: #cc4141; /* Reddish tone from image */
    margin-bottom: 5px;
    font-weight: 700;
}

.title-underline {
    width: 60px;
    height: 4px;
    background: #2563eb;
    margin-bottom: 25px;
}

.cert-main-text {
    font-size: 1.15rem;
    color: #333;
    line-height: 1.6;
}

.cert-main-text span {
    color: #2563eb;
    font-weight: 700;
}

.cert-content p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

.audience-box {
    background: #f8fafc;
    padding: 15px 20px;
    border-left: 5px solid #cc4141;
    border-radius: 8px;
    font-size: 0.95rem;
}

/* --- Animation Classes --- */
.animate-box {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.cert-section.active .animate-box {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .cert-container {
        flex-direction: column;
        text-align: center;
    }
    .title-underline {
        margin: 0 auto 25px;
    }
    .cert-badge {
        right: 50%;
        transform: translateX(50%);
    }
}

/* ==============================
end cert-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;
}