    body {
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
        padding-top: 96px; /* height of both navbars */
    }

    /* ---------- TOP BLACK NAVBAR ---------- */
    .top-info-bar {
        background: #000;
        color: #fff;
        font-size: 14px;
        height: 40px;
    }

    .top-info-bar a {
        color: #fff;
        text-decoration: none;
        margin-right: 18px;
        display: inline-flex;
        align-items: center;
    }

    .top-info-bar a:hover {
        color: #ccc;
    }

    .top-info-bar i {
        margin-right: 6px;
        font-size: 16px;
    }

    .social-icons a {
        margin-left: 10px;
        font-size: 16px;
    }

    /* ---------- MAIN WHITE NAVBAR ---------- */
    .main-navbar {
        top: 40px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    }

    .main-navbar .nav-link {
        color: #000;
        font-weight: 500;
        margin-left: 18px;
    }

    .main-navbar .nav-link:hover {
        color: #0071e3;
    }

    .navbar-brand i {
        font-size: 22px;
        color: #000;
    }

    /* ---------- FOOTER ---------- */
.site-footer {
    background: #000;
    color: #fff;
    font-size: 14px;
}

.site-footer h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.site-footer p,
.site-footer li {
    color: #d1d1d1;
    line-height: 1.7;
}

.site-footer ul {
    list-style: none;
    padding: 0;
}

.site-footer ul li {
    margin-bottom: 10px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
}

.site-footer a:hover {
    color: #ccc;
}

.footer-icons a {
    font-size: 20px;
    margin-right: 16px;
}

.footer-bottom {
    border-top: 1px solid #222;
    margin-top: 40px;
    padding-top: 20px;
    font-size: 13px;
    color: #aaa;
}

.store-buttons img {
    height: 42px;
    margin-right: 10px;
    margin-top: 15px;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25d366;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    z-index: 999;
    text-decoration: none;   /* 🔥 remove underline */
}

.whatsapp-float:hover {
    color: #fff;
    text-decoration: none;   /* 🔥 ensure no underline on hover */
}

/* ---------- BANNER SLIDER ---------- */
.banner-section {
   
    background: linear-gradient(135deg, #f5f5f7, #ffffff);
   
}

.banner-slider img {
    max-height: 420px;
    object-fit: contain;
    animation: zoomFade 4s ease-in-out infinite;
}

/* Smooth zoom animation */
@keyframes zoomFade {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 0.9; }
}

/* ---------- BEST SELLING COURSES ---------- */
/* ---------- BEST SELLING COURSES ---------- */
/* ======================= BEST SELLING SECTION ======================= */
.best-selling {
    background: #f5f5f7;
    padding: 70px 0;
    position: relative; /* needed for scroll buttons */
}

/* CENTER + BOLD TITLE */
.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #000;
}

/* ======================= SCROLL CONTAINER ======================= */
.course-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-behavior: smooth; /* smooth scroll effect */
    padding: 1rem 0;
}

.course-scroll::-webkit-scrollbar {
    display: none; /* hide scrollbar */
}

/* ======================= COURSE CARD ======================= */
.course-card {
    flex: 0 0 auto;
    max-width: 250px; /* responsive width */
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.course-card:hover {
    transform: translateY(-6px); /* subtle hover lift */
}

/* IMAGE */
.course-img {
    width: 100%;
    overflow: hidden;
    border-radius: 16px 16px 0 0;
}

.course-img img {
    width: 100%;
    display: block; /* ensures full width image */
    object-fit: cover;
}

/* CARD BODY */
.course-body {
    padding: 18px;
}

/* DISCOUNT BADGE */
.discount-badge {
    background: #e63946;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 10px;
}

/* TITLE */
.course-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* PRICE */
.price-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    font-size: 14px;
}

.new-price {
    font-size: 20px;
    font-weight: 700;
    color: #000;
}

/* ======================= SCROLL BUTTONS ======================= */
.scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.left-btn { left: 10px; }
.right-btn { right: 10px; }

.scroll-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.why-choose-us {
    background: linear-gradient(135deg, #f5f5ff, #e0d8ff);
    padding: 70px 0;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 50px;
    color: #000;
}

.cards-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.choose-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    padding: 25px;
    max-width: 250px;
    text-align: center;
    transition: transform 0.3s ease;
}

.choose-card:hover {
    transform: translateY(-10px);
}

.choose-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.choose-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.choose-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.truly-believe {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #222;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #ff6b6b;
    margin: 15px auto 0;
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.video-card {
    flex: 0 0 300px;
    max-width: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #fff;
    position: relative;
}

.video-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.18);
}

.video-card iframe {
    width: 100%;
    height: 200px;
    display: block;
    border-radius: 15px 15px 0 0;
}

.video-card .video-info {
    padding: 15px 20px;
    text-align: center;
    background: #fff;
}

.video-card .video-info h4 {
    margin: 10px 0 5px;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.video-card:hover .video-info h4 {
    color: #ff6b6b;
}

.video-card .video-info p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Add subtle overlay effect */
.video-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 15px;
}

.video-card:hover::before {
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .video-card { flex: 0 0 45%; }
}

@media (max-width: 768px) {
    .video-card { flex: 0 0 100%; }
}

/* --- Our Impact Section --- */
.our-impact {
    padding: 80px 20px;
    background: linear-gradient(135deg, #e8eaff 0%, #ffffff 100%);
    text-align: center;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}

.section-desc {
    font-size: 16px;
    color: #333;
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.impact-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.impact-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 30px;
    width: 250px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.impact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.impact-card .icon {
    font-size: 36px;
    color: #6366F1; /* soft purple */
    margin-bottom: 15px;
}

.impact-card .number {
    font-size: 28px;
    font-weight: 700;
    color: #111;
    margin-bottom: 5px;
}

.impact-card .label {
    font-size: 16px;
    color: #555;
}

/* Responsive */
@media (max-width: 992px) {
    .impact-card { width: 45%; }
}

@media (max-width: 768px) {
    .impact-card { width: 100%; }
}

/* --- Testimonials Section --- */
.testimonials {
    padding: 80px 20px;
    background: #f5f7ff;
    text-align: center;
}

.testimonials .section-title {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 50px;
    color: #111;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: #fff;
    border-radius: 15px;
    padding: 25px 20px;
    width: 300px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 35px rgba(0,0,0,0.15);
}

.testimonial-photo {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    border-radius: 50%;
    overflow: hidden;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-comment {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
    font-style: italic;
}

.testimonial-name {
    font-weight: 700;
    font-size: 16px;
    color: #111;
}

.testimonial-designation {
    font-size: 14px;
    color: #888;
}

/* Responsive */
@media (max-width: 992px) {
    .testimonial-card { width: 45%; }
}

@media (max-width: 768px) {
    .testimonial-card { width: 100%; }
}

.video-wrapper {
    position: relative;
    cursor: pointer;
    border-radius: 12px;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0,0,0,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 22px;
    transition: 0.3s;
}

.video-wrapper:hover .play-button {
    background: rgba(255,0,0,0.85);
}

.testimonial-rating {
    margin: 8px 0;
    color: #ffc107; /* Gold */
    font-size: 14px;
}

.testimonial-rating i {
    margin-right: 2px;
}

.resource-card {
    transition: all 0.3s ease;
    border-radius: 12px;
}

.resource-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.badge {
    font-size: 12px;
    padding: 6px 10px;
}
