:root {
    --primary-color: #0a192f;
    /* Darker Royal Blue for depth */
    --primary-light: #112240;
    /* Lighter shade for cards */
    --secondary-color: #ffd700;
    /* Gold */
    --secondary-hover: #ffae00;
    --accent-color: #64ffda;
    /* Cyan for 'electric' pops */
    --text-color: #333333;
    --text-light: #8892b0;
    --bg-color: #f8f9fa;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 6px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.12);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 14px 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(10, 25, 47, 0.3);
}

.btn-accent {
    background: var(--secondary-color);
    color: var(--primary-color);
}

.btn-accent:hover {
    background: var(--secondary-hover);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
}

/* Header */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: -20px;
    /* Move slightly left as requested */
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: #002366;
    /* Deep Royal Blue */
    letter-spacing: -0.5px;
    line-height: 1;
}

.logo-text span {
    color: #0077cc;
    /* Lighter Professional Blue */
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--primary-color);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    color: var(--primary-color);
    font-size: 1.1rem;
    display: flex;
    /* Center icon */
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(10, 25, 47, 0.05);
    transition: var(--transition);
}

.social-icons a:hover {
    transform: translateY(-3px);
}

/* Brand Colors */
.social-icons a.social-fb {
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
}

.social-icons a.social-fb:hover {
    background: #1877F2;
    color: white;
}

.social-icons a.social-li {
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
}

.social-icons a.social-li:hover {
    background: #0A66C2;
    color: white;
}

.social-icons a.social-ig {
    color: #E1306C;
    background: rgba(225, 48, 108, 0.1);
}

.social-icons a.social-ig:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icons a.social-tw {
    color: #1DA1F2;
    background: rgba(29, 161, 242, 0.1);
}

.social-icons a.social-tw:hover {
    background: #1DA1F2;
    color: white;
}

.social-icons a.social-yt {
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
}

.social-icons a.social-yt:hover {
    background: #FF0000;
    color: white;
}


.social-icons a.login-icon {
    background: transparent;
    width: auto;
    height: auto;
    border-radius: 0;
    margin-left: 10px;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
    padding-left: 15px;
}

.social-icons a.login-icon:hover {
    background: transparent;
    color: var(--secondary-color);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    margin-bottom: 2rem;
    clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
    overflow: hidden;
    background: #0a192f;
    /* Fallback */
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.85), rgba(10, 25, 47, 0.7));
}

.hero-content {
    width: 100%;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero .highlight {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1.2s ease;
}

.hero-btns {
    animation: fadeInUp 1.4s ease;
}

.hero-btns .btn {
    margin: 0 10px;
}

/* Features */
.features {
    padding: 4rem 0;
    margin-top: -8rem;
    position: relative;
    z-index: 10;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-bottom-color: var(--secondary-color);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.4rem;
}

/* Sections General */
section {
    padding: 5rem 0;
}

/* Course Grid */
.course-grid,
.testimonial-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.course-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.course-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.course-content {
    padding: 1.5rem;
}

.course-content h3 {
    margin-bottom: 0.5rem;
}

.category {
    display: inline-block;
    background: rgba(100, 255, 218, 0.1);
    color: #008080;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.read-more {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    color: var(--secondary-color);
}

/* Testimonials */
.section-testimonials {
    background: var(--primary-color);
    color: var(--white);
}

.section-testimonials .section-title {
    color: var(--white);
}

.section-testimonials p {
    font-style: italic;
    font-size: 1.1rem;
    opacity: 0.9;
}

/*.testimonial-slider {*/
/*    display: flex;*/
/*    gap: 30px;*/
/*    overflow-x: hidden;*/
/*     Hide scrollbar for JS control */
/*    padding-bottom: 2rem;*/
/*    scroll-behavior: smooth;*/
/*}*/

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;          /* allow scrolling */
    padding-bottom: 2rem;
    scroll-behavior: smooth;
    cursor: grab;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;             /* hide scrollbar properly */
}

.testimonial-slider {
    -ms-overflow-style: none;  /* IE / Edge */
    scrollbar-width: none;     /* Firefox */
}

.testimonial-card {
    flex: 0 0 350px;           /* fixed card width for carousel */
}




/* Common Card Style */
.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 350px;
}

/* Page Specific Grid */
.testimonials-page {
    background: var(--bg-color);
    /* Original Light Background */
}

.testimonials-page .testimonial-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

/* Dark Card for slider, Light/White card for page? User asked for White Name. 
   If page is light, white name is invisible. 
   Assuming User wants the Dark Theme Card EVERYWHERE or the Page to be Dark.
*/
.testimonials-page .testimonial-card {
    background: var(--primary-color);
    /* Force Dark card on page too */
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.student-info {
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 15px;
}

.student-info h4 {
    color: var(--white);
    /* Requested White Color */
    font-size: 1.1rem;
    margin-bottom: 0px;
}

.student-info small {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Calendar Table */
.calendar-wrapper {
    overflow-x: auto;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-md);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid #eee;
}

th {
    background: #f4f6f9;
    color: var(--primary-color);
    font-weight: 700;
}

tr:hover {
    background: #fcfcfc;
}

.status-badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.status-badge.open {
    background: #e6ffFA;
    color: #00AA99;
}

.status-badge.fast-filling {
    background: #fff8e6;
    color: #b78a00;
}

.status-badge.closed {
    background: #ffe6e6;
    color: #d32f2f;
}



/* Impact Stats (New) */
.section-stats {
    background: #002366;
    /* Deep Royal Blue */
    color: var(--white);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.stat-item h2 {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    font-weight: 800;
}

.stat-item p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Corporate CTA (New) */
.section-corporate {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 5rem 0;
    text-align: center;
}

.section-corporate h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-corporate p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Form Styles Override if needed */
.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.info-item i {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Page Header (Sub pages) */
.page-header {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 0 3rem;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.page-header p {
    opacity: 0.8;
}

/* Footer */
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 3rem;
}

/* On large screens, make contact section span 2 cols if needed, or just let them reflow */
@media(min-width: 1200px) {
    .footer-content {
        grid-template-columns: 1fr 0.5fr 2fr;
        /* Logo (1), Links (0.5), Contacts (2 - wide for horizontal) */
    }
}

footer {
    background: linear-gradient(rgba(2, 12, 27, 0.95), rgba(2, 12, 27, 0.95)), url('../images/footer-map.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    color: #a8b2d1;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
    position: relative;
}

.footer-section h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 30px;
    height: 2px;
    background: var(--secondary-color);
}

.footer-contact-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-contact-row .contact-item {
    flex: 1;
    min-width: 200px;
    /* Ensure they don't get too squished */
    margin-bottom: 0 !important;
    /* Override inline styles */
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Response */
/* Mobile Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 3px auto;
    transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
        animation: fadeInUp 0.3s ease;
    }

    .social-icons {
        display: none;
    }

    /* Hide social on tiny screens or move to menu */
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Discount Banner */
.discount-banner {
    background: linear-gradient(90deg, #ff8c00, #ff0080, #40e0d0);
    color: white;
    padding: 10px 0;
    font-weight: bold;
    font-size: 1.2rem;
    overflow: hidden;
    position: relative;
    white-space: nowrap;
}

.discount-text {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
}

.discount-banner span {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    border: 1px dashed white;
    margin-left: 5px;
}

@keyframes marquee {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(-100%, 0);
    }
}

/* Video Slider Section */
.section-videos {
    background: #0b1120;
    padding: 4rem 0;
    color: white;
    overflow: hidden;
}

.section-videos .section-title {
    margin-bottom: 2rem;
    color: var(--white);
    text-align: center;
}

.video-slider-container {
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.video-track {
    display: flex;
    gap: 30px;
    animation: scrollVideos 40s linear infinite;
    width: max-content;
}

.video-track:hover {
    animation-play-state: paused;
}

.video-card {
    min-width: 320px;
    width: 320px;
    background: #1a253a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.video-card:hover {
    transform: scale(1.05);
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.video-thumbnail {
    position: relative;
    height: 180px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail::after {
    content: '\f144';
    /* FontAwesome Play Icon */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s;
}

.video-thumbnail:hover::after {
    color: #ff0000;
    /* YouTube Red */
}

.video-card h4 {
    padding: 15px;
    font-size: 1rem;
    color: #e2e8f0;
    margin: 0;
}

@keyframes scrollVideos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Lead Gen Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    display: none;
    /* Hidden by default */
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.popup-overlay.show {
    display: flex;
    opacity: 1;
}

.popup-content {
    background: white;
    width: 90%;
    max-width: 450px;
    padding: 30px 20px;
    border-radius: 12px;
    position: relative;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s ease;
    border: 2px solid var(--secondary-color);
}

.popup-overlay.show .popup-content {
    transform: translateY(0);
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #555;
    line-height: 1;
}

.close-btn:hover {
    color: red;
}

.ad-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.ad-slide.active-ad {
    display: block;
}

.ad-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.ad-slide h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.ad-slide h3 span {
    color: var(--secondary-color);
}

.ad-slide p {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.popup-dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 5px;
}

.popup-dots .dot {
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    cursor: pointer;
}

.popup-dots .dot.active {
    background: var(--secondary-color);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 150px;
    left: 30px;
    /* Moved to left */
    background-color: #25d366;
    color: #FFF;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 2px #999;
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    color: white;
}

/* AI Chat Bot Widget */
.chat-widget-btn {
    position: fixed;
    bottom: 40px;
    right: 40px;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1002;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

.chat-widget-btn:hover {
    transform: scale(1.1) rotate(10deg);
}

.chat-widget-box {
    position: fixed;
    bottom: 110px;
    right: 40px;
    width: 350px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1003;
    animation: slideUp 0.3s ease;
}

.chat-widget-box.open {
    display: flex;
}

.chat-header {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-body {
    padding: 15px;
    height: 300px;
    overflow-y: auto;
    background: #f4f7f6;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-msg {
    max-width: 80%;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-msg.bot {
    background: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.chat-msg.user {
    background: var(--secondary-color);
    color: var(--primary-color);
    align-self: flex-end;
    border-bottom-right-radius: 0;
    font-weight: 500;
}

.chat-input-area {
    padding: 10px;
    border-top: 1px solid #eee;
    background: white;
    display: flex;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 8px 15px;
    outline: none;
}

.chat-input-area button {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Chat Prompt Bubble */
.chat-prompt {
    position: fixed;
    bottom: 110px;
    right: 40px;
    background: white;
    padding: 10px 15px;
    border-radius: 10px;
    border-bottom-right-radius: 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    z-index: 1001;
    display: none;
    animation: fadeIn 0.5s;
}

.chat-prompt.show {
    display: block;
}

/* Learning Path Section */
.section-learning-path {
    padding: 5rem 0;
    background: #f8f9fa;
    text-align: center;
}

.path-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 3rem;
    position: relative;
}

.path-step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.path-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.path-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    background: rgba(0, 119, 204, 0.1);
    width: 80px;
    height: 80px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.path-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.path-arrow {
    font-size: 2rem;
    color: #ccc;
    display: none;
}

@media (min-width: 992px) {
    .path-arrow {
        display: block;
    }
}

/* Urgency Bar */
.urgency-bar {
    background: #FF4500;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1002;
}

.urgency-bar p {
    margin: 0;
}

.urgency-bar a.btn-xs {
    background: white;
    color: #FF4500;
    padding: 2px 10px;
    border-radius: 3px;
    font-weight: bold;
    text-decoration: none;
    margin-left: 10px;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.urgency-bar a.btn-xs:hover {
    background: #0a192f;
    color: white;
}

/* Callback Widget */
.callback-widget {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 999;
}

.callback-btn {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-weight: bold;
    border-radius: 10px 0 0 10px;
    cursor: pointer;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s;
}

.callback-form-modal {
    position: fixed;
    top: 50%;
    right: -320px;
    /* Hidden */
    transform: translateY(-50%);
    width: 300px;
    background: white;
    padding: 20px;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
    border-left: 4px solid var(--secondary-color);
}

.callback-form-modal.open {
    right: 0;
}

.callback-form-modal h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.callback-form-modal input {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Social Proof Notification */
.social-proof-popup {
    position: fixed;
    bottom: 30px;
    left: 20px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 15px;
    width: 320px;
    z-index: 999;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
    border-left: 4px solid #25d366;
}

.social-proof-popup.show {
    transform: translateY(0);
    opacity: 1;
}

.proof-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #ddd;
}

.proof-text h4 {
    margin: 0;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.proof-text p {
    margin: 3px 0 0;
    font-size: 0.8rem;
    color: #666;
}

.proof-text span {
    display: block;
    font-size: 0.7rem;
    color: #999;
    margin-top: 2px;
}