/* position submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-left: 0.1rem;
    display: none;
}

/* show submenu on hover */
.dropdown-submenu .dropdown-menu.show {
    display: block;
}

   .custom-card {
        background: #ffffff;
        border-radius: 20px;
        padding: 25px;
        position: relative;
        overflow: hidden;
        height: 100%;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .custom-card h4 {
        font-weight: 600;
        margin-bottom: 20px;
    }

    .pill {
        border: 1px solid #ddd;
        border-radius: 25px;
        padding: 8px 18px;
        display: inline-block;
        margin: 5px;
        font-size: 14px;
        background: #f8f9fa;
    }

    .explore {
        margin-top: 20px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: 500;
    }

    .arrow {
        width: 35px;
        height: 35px;
        background: #f1f1f1;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* responsive spacing */
    .card-wrapper {
        margin-bottom: 20px;
    }
    /* Pills container */
.pill-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 15px;
}

/* Pills */
.pill-btn {
    border: 1px solid #e5e7eb;
    border-radius: 30px;
    padding: 8px 18px;
    font-size: 14px;
    background: #f9fafb;
    color: #374151;
    text-decoration: none;
    transition: all 0.25s ease;
}

/* Hover */
.pill-btn:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

/* Explore section */
.explore {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none;
    color: #111827;
    font-weight: 500;
}

/* Arrow button */
.arrow {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

/* Arrow hover */
.explore:hover .arrow {
    background: #111827;
    color: #fff;
    transform: translateX(5px);
}
.trusted-section {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
}

.trusted-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.trusted-list {
    list-style: none;
    padding: 0;
}

.trusted-list li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #e2e8f0;
}

.trusted-box {
    background: #111827;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    transition: 0.3s;
}

.trusted-box:hover {
    transform: translateY(-5px);
}

.trusted-box h4 {
    margin-bottom: 10px;
}

.trusted-box p {
    color: #cbd5f5;
}
.stats-section {
    background: #f1f5f9;
}

.stats-box {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.stat-item h5 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 10px;
    color: #0f172a;
}

.stat-item p {
    font-size: 14px;
    color: #475569;
    margin-top: 5px;
}

/* Hover effect (optional premium feel) */
.stat-item:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.trust-section {
    background: linear-gradient(135deg, #020617, #0f172a);
    color: #fff;
}

.trust-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
}

.trust-subtitle {
    font-size: 16px;
    color: #cbd5f5;
    max-width: 600px;
    margin: auto;
    line-height: 1.6;
}
.counter-section {
    background: linear-gradient(135deg, #065f46, #064e3b);
    padding: 50px 0;
    color: #fff;
}

.counter {
    font-size: 42px;
    font-weight: 700;
    color: #facc15;
}

.counter::after {
    content: "+";
}

.counter-section p {
    margin-top: 10px;
    font-size: 16px;
    color: #d1fae5;
}

/* hover effect */
.counter-section .col-lg-3:hover {
    transform: translateY(-5px);
    transition: 0.3s;
}
.testimonial-section {
    background: #f8fafc;
}

.testimonial-slider {
    overflow: hidden;
    position: relative;
}

.testimonial-track {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.5s ease;
}

/* Cards */
.testimonial-card {
    width: 60%;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    margin: 0 15px;
    opacity: 0.4;
    transform: scale(0.85);
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Active center card */
.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
}

/* Text */
.testimonial-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: #475569;
    font-size: 15px;
}

.testimonial-card h6 {
    margin-top: 15px;
    font-weight: 600;
}

.testimonial-card span {
    font-size: 13px;
    color: #64748b;
}

/* Dots */
.dots {
    margin-top: 20px;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background: #cbd5f5;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background: #3b82f6;
}
.hero-section {
    padding: 80px 0;
}

.hero-box {
    background: linear-gradient(135deg, #111827, #1f2937);
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.hero-box h1 {
    color: #fff;
    font-size: 36px;
    font-weight: 700;
    max-width: 800px;
    margin: auto;
    line-height: 1.4;
}

/* Button hover */
.hero-box .btn:hover {
    background: #facc15;
    color: #000;
    transform: translateY(-2px);
}
.trusted-section {
    background: #ffffff; /* white background */
    color: #0f172a; /* dark text */
}

.trusted-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0f172a;
}

.trusted-list {
    list-style: none;
    padding: 0;
}

.trusted-list li {
    margin-bottom: 10px;
    color: #475569; /* soft dark gray */
}

/* IMAGE BOX */
.image-box {
    background: #ffffff;
    padding: 20px;
    border-radius: 20px;
    display: inline-block;

    /* softer shadow for light UI */
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.image-box img {
    max-width: 100%;
    border-radius: 10px;
}

/* ================= MOBILE (≤ 768px) ================= */
@media (max-width: 768px) {

    /* 🔹 HEADINGS */
    h1 {
        font-size: 26px !important;
        line-height: 1.3;
    }

    h2 {
        font-size: 22px !important;
    }

    h4 {
        font-size: 18px;
    }

    /* 🔹 HERO SECTION */
    .hero-box {
        padding: 30px 20px;
    }

    .hero-box h1 {
        font-size: 24px;
    }

    /* 🔹 CARDS SECTION */
    .custom-card {
        padding: 20px;
    }

    .pill-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    .explore {
        margin-top: 15px;
    }

    .arrow {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    /* 🔹 TRUSTED SECTION */
    .trusted-title {
        font-size: 22px;
        text-align: center;
    }

    .trusted-list {
        text-align: center;
    }

    .trusted-list li {
        font-size: 14px;
    }

    .image-box {
        padding: 15px;
    }

    /* 🔹 COUNTER SECTION */
    .counter {
        font-size: 26px;
    }

    .counter-section p {
        font-size: 13px;
    }

    /* 🔹 TESTIMONIAL */
    .testimonial-card {
        padding: 20px;
    }

    .testimonial-card p {
        font-size: 13px;
    }

    /* 🔹 BUTTONS */
    .btn {
        font-size: 14px;
        padding: 8px 16px;
    }
}


/* ================= EXTRA SMALL (≤ 576px) ================= */
@media (max-width: 576px) {

    /* 🔹 SECTION SPACING */
    section {
        padding: 40px 0 !important;
    }

    /* 🔹 CARDS STACK FIX */
    .row.g-4 {
        gap: 15px;
    }

    /* 🔹 PILLS CENTER */
    .pill-container {
        justify-content: center;
    }

    /* 🔹 TEXT CENTER EVERYWHERE */
    .trusted-section,
    .hero-section,
    .testimonial-section {
        text-align: center;
    }

    /* 🔹 IMAGE FIX */
    .image-box img {
        max-width: 90%;
    }


}


/* ================= TABLET (768px - 992px) ================= */
@media (min-width: 768px) and (max-width: 992px) {

    .hero-box h1 {
        font-size: 28px;
    }

    .trusted-title {
        font-size: 26px;
    }

    .custom-card {
        padding: 22px;
    }
}
.logo-strip {
    background: #f1f5f9;
    overflow: hidden;
    padding: 15px 0;
}

.logo-track {
    display: flex;
    gap: 40px;
    width: max-content;

    animation: scrollLeft 20s linear infinite;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.logo-item img {
    height: 35px;
}

.logo-item span {
    font-size: 16px;
    color: #374151;
    font-weight: 500;
}

/* Animation */
@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
.footer-section {
    background: #f8fafc;
    padding: 60px 0;
    color: #0f172a;
}

.footer-section h6 {
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    text-decoration: none;
    color: #475569;
    font-size: 14px;
    transition: 0.3s;
}

.footer-section ul li a:hover {
    color: #0d6efd;
}

/* text */
.footer-text {
    font-size: 14px;
    color: #475569;
}

/* social icons */
.social-icons a {
    display: inline-block;
    margin-right: 10px;
    color: #0f172a;
    font-size: 16px;
    transition: 0.3s;
}

.social-icons a:hover {
    color: #0d6efd;
}

/* app buttons */
.app-buttons img {
    margin-right: 10px;
    border-radius: 6px;
}

/* page */
.bank-page {
    background: #f8fafc;
}

/* breadcrumb */
nav a {
    text-decoration: none;
    color: #64748b;
}

nav .active {
    color: #ef4444;
    font-weight: 500;
}

/* filter */
.filter-box {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

.filter-box label {
    display: block;
    margin-bottom: 10px;
    color: #374151;
}

/* cards */
.course-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card img {
    width: 100%;
}

.course-body {
    padding: 15px;
}

.badge {
    background: #e5e7eb;
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 5px;
}

.course-body h6 {
    margin-top: 10px;
    font-weight: 600;
}

/* price */
.price {
    font-weight: bold;
    margin-top: 10px;
    color: green;
}

.price span {
    text-decoration: line-through;
    color: #9ca3af;
    margin-left: 10px;
}
.course-item {
    transition: 0.3s;
}
#noResult {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.defence-hero {
    background: #0f172a;
    color: #fff;
}

.hero-text {
    max-width: 700px;
    margin: auto;
    color: #cbd5f5;
}

.content-section h2 {
    margin-bottom: 15px;
}

.list li {
    margin-bottom: 8px;
}

.custom-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.cta-section {
    background: #f8fafc;
}
.batches-section {
    background: #f8fafc;
}

/* cards */
.batch-card {
    background: #fff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
    transition: 0.3s;
}

.batch-card:hover {
    transform: translateY(-5px);
}

.batch-card h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

.batch-card ul {
    padding-left: 18px;
}

.batch-card li {
    margin-bottom: 8px;
}

/* CTA */
.cta-box {
    background: #111827;
    color: #fff;
    padding: 40px 20px;
    border-radius: 15px;
}

.cta-box p {
    color: #cbd5f5;
}

/* main box */
.cta-box {
    background: #111827;
    padding: 50px 25px;
    border-radius: 20px;
    color: #fff;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

/* heading */
.cta-box h2 {
    font-size: 32px;
    font-weight: 700;
}

/* subtitle */
.cta-subtitle {
    color: #cbd5f5;
    margin-top: 10px;
}

/* features */
.feature-item {
    background: #1f2937;
    padding: 10px 15px;
    border-radius: 10px;
    font-size: 14px;
    transition: 0.3s;
}

/* hover */
.feature-item:hover {
    background: #374151;
    transform: translateY(-3px);
}

/* button hover */
.cta-box .btn:hover {
    background: #facc15;
    color: #000;
}
.course-buttons {
    display: flex;
    gap: 10px;
}

.course-buttons .btn {
    flex: 1;
    font-size: 13px;
    padding: 6px 10px;
}

/* hover effects */
.course-buttons .btn-outline-dark:hover {
    background: #111827;
    color: #fff;
}

.course-buttons .btn-warning:hover {
    background: #facc15;
    color: #000;
}
.course-page {
    background: #f8fafc;
}

/* TITLE */
.course-title {
    font-weight: 700;
}

/* INFO */
.info-row {
    display: flex;
    gap: 20px;
    margin: 15px 0;
    color: #475569;
    flex-wrap: wrap;
}

/* LIVE BOX */
.live-box {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #e5e7eb;
}

/* PLAN */
.plan-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 2px solid transparent;
    position: relative;
}

.plan-card.active {
    border-color: #3b82f6;
}

.tag {
    position: absolute;
    top: -10px;
    left: 15px;
    background: #3b82f6;
    color: #fff;
    font-size: 12px;
    padding: 3px 8px;
    border-radius: 5px;
}

.plan-card .price {
    font-weight: bold;
    font-size: 20px;
}

.plan-card .old {
    text-decoration: line-through;
    color: #9ca3af;
}

/* FEATURES */
.features li {
    margin-bottom: 8px;
}

/* RIGHT CARD */
.buy-card {
    background: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);

    position: sticky;
    top: 100px;
}

.buy-card img {
    border-radius: 10px;
}

/* TAGS */
.tags span {
    background: #e5e7eb;
    padding: 4px 10px;
    border-radius: 5px;
    font-size: 12px;
    margin-right: 5px;
}

.tags .blue {
    background: #dbeafe;
    color: #2563eb;
}

/* PRICE */
.buy-card h3 span {
    text-decoration: line-through;
    font-size: 14px;
    color: #9ca3af;
}

/* COUPON */
.coupon {
    background: #f1f5f9;
    padding: 10px;
    border-radius: 8px;
    font-size: 14px;
    margin-top: 10px;
}

.coupon span {
    float: right;
    color: red;
    cursor: pointer;
}

/* wrapper */
.feature-wrapper {
    display: grid;
    gap: 20px;
}

/* card */
.feature-box {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* heading */
.feature-box h4 {
    margin-bottom: 15px;
    font-weight: 600;
}

/* grid inside */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

/* items */
.feature-grid div {
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 8px;
    font-size: 14px;
}

/* pricing */
.old-price {
    text-decoration: line-through;
    color: #9ca3af;
}

.new-price {
    font-weight: bold;
    color: #16a34a;
}

/* CTA */
.cta-box {
    text-align: center;
    background: #111827;
    color: #fff;
}

.cta-buttons {
    margin-top: 10px;
}

.cta-buttons .btn {
    margin: 5px;
}

/* responsive */
@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }
}
.simple-uc {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
}

.uc-box {
    max-width: 400px;
}

.uc-box h2 {
    font-weight: 600;
    margin-bottom: 10px;
}

.uc-box p {
    color: #6b7280;
    font-size: 14px;
}

/* STICKY BAR */
.founder-notice {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #111827;
    color: #fff;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-size: 14px;
    z-index: 9999;
}

/* MODAL */
.founder-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
}

/* MODAL CONTENT */
.modal-content {
    background: #fff !important;
    margin: 5% auto;
    padding: 25px;
    border-radius: 10px;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
}

/* CLOSE BUTTON */
.close-btn {
    float: right;
    font-size: 22px;
    cursor: pointer;
}

/* TEXT */
.modal-body p {
    font-size: 14px;
    color: #374151;
    margin-bottom: 10px;
}

.modal-body ul {
    padding-left: 18px;
}

.modal-body li {
    font-size: 14px;
    margin-bottom: 5px;
}

blockquote {
    background: #111827;
    color: #fff;
    padding: 10px;
    border-radius: 6px;
    margin: 10px 0;
}
/* FOUNDER BUTTON (ABOVE WHATSAPP) */
.founder-fab {
    position: fixed;
    bottom: 90px; /* 👈 moved above WhatsApp */
    right: 20px;  /* 👈 moved to right side */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #111827;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

/* IMAGE */
.founder-fab img {
    width: 28px;
    height: 28px;
    object-fit: contain;
}

/* HOVER */
.founder-fab:hover {
    transform: scale(1.1);
    background: #1f2937;
}

/* PULSE */
.founder-fab {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,0,0,0.4); }
    70% { box-shadow: 0 0 0 10px rgba(0,0,0,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,0,0,0); }
}
/* WHATSAPP BUTTON */
.whatsapp-fab {
    position: fixed;
    bottom: 20px;
    right: 20px; /* RIGHT SIDE */
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: 0.3s;
}

/* HOVER */
.whatsapp-fab:hover {
    transform: scale(1.1);
    background: #20c35a;
}
.whatsapp-fab {
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}
.about-section {
    background: #f8fafc;
}

/* headings */
.section-block h2 {
    font-weight: 600;
}

.section-intro {
    color: #6b7280;
    font-size: 14px;
}

/* cards */
.about-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    height: 100%;
}

.about-card h5 {
    font-size: 16px;
    margin-bottom: 8px;
}

.about-card p {
    font-size: 13px;
    color: #475569;
}

/* small cards */
.about-card.small h6 {
    font-size: 14px;
}

/* course boxes */
.course-box {
    background: #111827;
    color: #fff;
    padding: 12px;
    text-align: center;
    border-radius: 8px;
    font-size: 14px;
}

/* CTA */
.cta-line {
    font-weight: 600;
}
/* card hover */
.about-card {
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    border-color: #e2e8f0;
}
/* course hover */
.course-box {
    transition: all 0.3s ease;
}

.course-box:hover {
    transform: translateY(-5px) scale(1.03);
    background: #1f2937;
    cursor: pointer;
}
/* button hover */
.btn-warning {
    transition: all 0.3s ease;
}

.btn-warning:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(250, 204, 21, 0.4);
}
.nat-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #d5e7f9, #4294ff);
}

/* LEFT */
.nat-section h1 {
    font-size: 40px;
    font-weight: 700;
}

.nat-section h4 {
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
}

.desc {
    color: #475569;
    margin-bottom: 20px;
}

.tags span {
    display: inline-block;
    padding: 8px 12px;
    background: #fff;
    margin-right: 8px;
    border-radius: 20px;
    font-size: 13px;
}

.tags .highlight {
    background: #facc15;
}

/* FORM */
.form-box {
    background: #4f46e5;
    padding: 30px;
    border-radius: 20px;
    color: #fff;
}

.form-box h3 {
    margin-bottom: 20px;
}

.form-box input,
.form-box select {
    width: 100%;
    padding: 10px;
    margin-bottom: 12px;
    border-radius: 8px;
    border: none;
}

.btn-submit {
    width: 100%;
    background: #facc15;
    border: none;
    padding: 12px;
    border-radius: 10px;
    font-weight: 600;
}
.feature-section h1 {
    font-size: 32px;
}

/* CARD */
.feature-card {
    background: #e7e7e7;
    padding: 20px;
    border-radius: 15px;
    border: 1px solid #e5e7eb;
    transition: 0.3s;
    height: 100%;
}

.feature-card h6 {
    margin-top: 10px;
    font-weight: 600;
}

.feature-card p {
    font-size: 13px;
    color: #6b7280;
}

/* ICON */
.icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
}

/* CUSTOM COLOR */
.bg-purple {
    background: #7c3aed;
}

/* HOVER */
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.tagline-section {
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
}

.tagline {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.4;
}

.tagline span {
    color: #facc15;
}
/* SECTION */
.subscription-section {
    background: #f8fafc;
}

/* TITLE */
.subscription-title {
    font-size: 30px;
    font-weight: 700;
    color: #1f2937;
}

/* BUTTON */
.subscription-btn {
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 10px;
}

/* FEATURES */
.feature-item {
    font-size: 14px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* HOVER EFFECT */
.subscription-btn:hover {
    background: #059669;
}
/* SECTION */
.recommended-section {
    background: #ffffff;
}

/* HEADER LINK */
.see-all {
    color: #10b981;
    font-weight: 600;
    text-decoration: none;
}

.see-all:hover {
    text-decoration: underline;
}

/* CARD */
.course-card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

/* IMAGE */
.course-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* HOVER EFFECT */
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.293);
}
.course-overlay {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    font-weight: 600;
}

/* OVERLAY */
.otp-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;

    align-items: center;
    justify-content: center;
}

/* BOX */
.otp-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    width: 400px;
    max-width: 90%;
    text-align: center;
    position: relative;

    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    animation: popup 0.3s ease;
}

/* ANIMATION */
@keyframes popup {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* CLOSE */
.otp-close {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 22px;
    cursor: pointer;
}

/* ICON */
.otp-icon img {
    width: 70px;
    margin-bottom: 15px;
}

/* TITLE */
.otp-box h4 {
    font-weight: 600;
    margin-bottom: 20px;
}

/* INPUTS */
.otp-box input {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.3s;
}

.otp-box input:focus {
    border-color: #6366f1;
}

/* BUTTON */
.otp-btn {
    width: 100%;
    padding: 12px;
    background: #facc15;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    margin-top: 5px;
    transition: 0.3s;
}

.otp-btn:hover {
    background: #eab308;
}

/* TERMS */
.otp-terms {
    font-size: 12px;
    margin-top: 15px;
    color: #6b7280;
}

.otp-terms a {
    color: #2563eb;
    text-decoration: none;
}