:root {
    /* Main Theme Colors */
    --primary-color: #273158;
    --accent-color: #cf9c0a;
    --light-bg: #f8faff;
    --text-dark: #1a1a2e;
    --glass-bg: rgba(255, 255, 255, 0.9);
    
    /* Mentor Section Specific Colors */
    --honey-gold: #cf9c0a;
    --bold-blue: #273158;
    --powerful-blue: #181d38;
    --lily-white: #E9F9FF;
    --teal: #53b2bf;
    
    /* Fonts */
    --font-main-heading: 'Nunito', 'finowings', serif;
    --font-small-heading: 'Nunito', sans-serif;
    --font-text: 'DM Sans', sans-serif;
    --gold-premium: #cf9c0a;
    --finowings-blue: #273158;
}

body {
    font-family: 'Heebo', sans-serif;
    color: var(--text-dark);
}

/* Section Background */
.mentor-section {
    background-color: var(--lily-white);
    font-family: var(--font-text);
}

/* Main Card Design */
.trainer-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(24, 29, 56, 0.08);
    border-top: 6px solid var(--honey-gold);
    transition: all 0.3s ease-in-out;
}

.trainer-card:hover {
    box-shadow: 0 25px 60px rgba(24, 29, 56, 0.12);
    transform: translateY(-5px);
}

/* Image Wrapper with Offset Shadow Effect */
.trainer-img-wrapper {
    position: relative;
    display: inline-block;
}

.trainer-img {
    border-radius: 16px;
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 12px #273158;
    transition: transform 0.3s ease;
}

.trainer-card:hover .trainer-img {
    transform: scale(1.02);
}

/* Typography & Colors */
.mentor-tag {
    color: var(--honey-gold);
    font-family: var(--font-small-heading);
    font-size: 1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.mentor-name {
    color: var(--powerful-blue);
    font-family: var(--font-main-heading);
    font-weight: 900;
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
}

.mentor-desc {
    color: var(--bold-blue);
    font-family: var(--font-text);
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Achievement Grid Boxes */
.achievement-box {
    border-left: 4px solid var(--teal);
    padding-left: 18px;
    background: rgba(233, 249, 255, 0.4);
    padding: 15px 15px 15px 20px;
    border-radius: 0 10px 10px 0;
    transition: background 0.3s ease;
}

.achievement-box:hover {
    background: var(--lily-white);
    border-left-color: var(--honey-gold);
}

.achievement-title {
    color: var(--powerful-blue);
    font-family: var(--font-small-heading);
    font-weight: 800;
    font-size: 1.2rem;
    margin-bottom: 6px;
}

.achievement-desc {
    color: var(--bold-blue);
    font-family: var(--font-text);
    font-size: 1rem;
    margin: 0;
    font-weight: 500;
}

/* Social Media Buttons in Mentor Section */
.btn-social-mentor {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #263238;
    color: #263238;
    border-radius: 4px;
    transition: all 0.3s ease;
    background: transparent;
    font-size: 1.1rem;
}

.btn-social-mentor:hover {
    background-color: var(--powerful-blue);
    color: #fff;
    border-color: var(--powerful-blue);
    transform: translateY(-3px);
}

/* Hero Section Premium Styling */
.hero-section {
    background: linear-gradient(135deg, #273158 0%, #1a1a2e 100%);
    padding: 120px 0 80px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(207, 156, 10, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(to right, #fff, #cf9c0a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtext {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 800px;
}

.btn-premium {
    background: linear-gradient(45deg, #cf9c0a, #e6b121);
    color: #fff;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 10px 20px rgba(207, 156, 10, 0.3);
}

.btn-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(207, 156, 10, 0.4);
    color: #fff;
}

/* Stats Cards */
.stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.stat-card-lucknow {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border-bottom: 5px solid #cf9c0a;
}

.stat-card-lucknow:hover {
    transform: translateY(-10px);
}

.stat-icon-box {
    width: 70px;
    height: 70px;
    background: #f0f4ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.stat-number-lc {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.stat-label-lc {
    font-size: 0.9rem;
    color: #666;
    text-transform: uppercase;
    font-weight: 600;
}

/* Section Headings */
.section-title-luck {
    position: relative;
    display: inline-block;
    margin-bottom: 45px;
    text-align: center;
    width: 100%;
}

.section-title-luck h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.section-title-luck .line {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 15px auto;
    border-radius: 2px;
}

/* Learning Path */
.path-step {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-num {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-right: 20px;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(39, 49, 88, 0.3);
}

.step-content h4 {
    font-weight: 700;
    margin-bottom: 5px;
    color: var(--primary-color);
}

/* FAQ STYLES */
.faq-section {
    padding: 80px 0;
    background: #fdfdfd;
}

.faq-container-blue {
    background: #e9f9ff;
    padding: 50px 40px;
    border-radius: 24px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.accordion-item {
    border: none;
    margin-bottom: 20px;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.accordion-button {
    color: #273158;
    font-weight: 700;
    background-color: #ffffff;
    border-left: 6px solid #cf9c0a;
    padding: 20px 25px;
    box-shadow: none !important;
    font-size: 1.1rem;
}

.accordion-button:not(.collapsed) {
    color: #ffffff;
    background-color: #273158;
    border-left: 6px solid #cf9c0a;
}

.accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-body {
    background-color: #ffffff;
    color: #555;
    font-weight: 500;
    border-top: 1px solid #eee;
    padding: 25px;
    line-height: 1.7;
    font-size: 1rem;
}

/* Lead Form Section */
.cta-section {
    padding: 100px 0;
    position: relative;
    z-index: 1;
}

.lead-form-box {
    background: #fff;
    padding: 45px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-top: 5px solid var(--gold-premium);
    position: relative;
}

.form-label-premium {
    font-weight: 700;
    color: var(--finowings-blue);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-control-premium {
    height: 60px;
    border-radius: 12px;
    border: 1.5px solid #e1e1e1;
    padding: 15px 25px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9fa;
    margin-bottom: 22px;
}

.form-control-premium:focus {
    border-color: var(--finowings-blue);
    box-shadow: 0 0 0 4px rgba(39, 49, 88, 0.1);
    background: #fff;
}

textarea.form-control-premium {
    height: 120px;
    resize: none;
}

.btn-enroll-now {
    width: 100%;
    height: 60px;
    background: var(--gold-premium);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(207, 156, 10, 0.3);
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-enroll-now:hover {
    background: var(--finowings-blue);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(39, 49, 88, 0.3);
    color: white;
}

.btn-enroll-now i {
    transition: transform 0.3s ease;
}

.btn-enroll-now:hover i {
    transform: translateX(5px);
}

/* ==========================================================
   Media Queries (Tablets)
   ========================================================== */
@media (max-width: 991px) {
    .trainer-card {
        padding: 30px 20px;
    }
    .mentor-name {
        font-size: 2rem;
    }
    .trainer-img {
        box-shadow: 10px 10px 0px var(--teal);
        margin-bottom: 20px;
    }
}

/* ==========================================================
   Media Queries (Mobile Phones)
   ========================================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 40px !important;
    }
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.3 !important;
        margin-bottom: 20px !important;
    }
    .hero-subtext {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }
    .hero-img-box {
        margin-top: 40px !important;
    }
    .btn-premium {
        width: 100% !important;
        margin-bottom: 20px !important;
        padding: 18px 25px !important;
        display: block !important;
    }
    .stats-section {
        margin-top: 10px !important;
    }
    .stat-card-lucknow {
        padding: 20px 10px !important;
        margin-bottom: 10px !important;
    }
    .section-title-luck h2 {
        font-size: 1.8rem !important;
    }
    .lead-form-box {
        padding: 30px 20px;
    }
    .courses-section .text-center {
        padding: 0 15px;
    }
    .courses-section .btn-premium {
        width: 100% !important;
        display: block !important;
    }
}