



*,
*::before,
*::after {
    box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
    :root {
        scroll-behavior: smooth;
    }
}

/* Global */
body {
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
    background-color: white;
    color: #333;
}

/* ----------------------------- */
/* navbar    */
/* ----------------------------- */
.cs-navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.cs-navbar-logo:hover { transform: scale(1.05); }
.cs-navbar-logo img {
    width: 35px;
    height: 35px;
}
.logo-coder {
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    background-image: linear-gradient(-225deg,#7700ff 0%,#d815c8 29%,#1d52e4 67%,#9900ff 100%);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
@media (max-width: 768px) {
    .cs-navbar-logo img { width: 39px; height: 39px; }
    .logo-coder { font-size: 1.4rem; margin-left: -5px; }
}
.cs-navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: #fff;
    font-family: "Font Awesome  Free" !important;
    z-index: 1200;
    box-shadow: 0 2px 10px rgba(2, 6, 23, 0.06);
    -webkit-font-smoothing: antialiased;
}
.cs-navbar i.fa,
.cs-navbar i.fas,
.cs-navbar i.far,
.cs-navbar i.fab {
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
}
.cs-navbar-container {
    margin: 0 auto;
    padding: 0.75rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.cs-navbar-logo {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #111;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.7rem;
}
.cs-navbar-menu {
    display: flex;
    gap: 1.15rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    font-size: 1.1rem;
    color: #575656;
    z-index: 2200;    /* fix: always above overlay! */
}
.cs-nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 2px;
    transition: color .18s ease, transform .18s ease;
    cursor: pointer;
}
.cs-nav-link:hover {
    color: #0b75ff;
    transform: translateY(-1px);
}
.cs-join-btn {
    display: inline-block;
    background: linear-gradient(to right, #6366f1, #ec4899);
    color: #fff;
    padding: 0.55rem 0.9rem;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
}
.cs-navbar-toggle {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 8px;
    gap: 6px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.cs-bar {
    width: 28px;
    height: 3px;
    background: #222;
    border-radius: 2px;
    display: block;
    transition: transform 300ms ease, opacity 220ms ease;
}
.cs-navbar-toggle.cs-active .cs-bar:nth-child(1) { transform: translateY(9px) rotate(45deg);}
.cs-navbar-toggle.cs-active .cs-bar:nth-child(2) { opacity: 0;}
.cs-navbar-toggle.cs-active .cs-bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg);}
.cs-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.32);
    opacity: 0;
    pointer-events: none;
    transition: opacity 280ms ease;
    z-index: 2000;
}
/* Prevent page scrolling while menu open */
body.cs-menu-open { overflow: hidden; }
/* ------------------------- MOBILE --------------------- */
@media (max-width: 900px) {
    .cs-navbar-logo {
        flex-shrink: 0;
        font-size: 1.3rem;
        font-weight: bold;
        color: #222;
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 6px;
        z-index: 2202;   /* stays above menu */
        position: relative;
    }
    .cs-navbar-logo { font-size: 1.5rem; }
    .cs-navbar-container { padding: 0.75rem 1rem; }
    .cs-navbar-toggle { display: flex; }
    .cs-navbar-menu {
        position: fixed;
        font-size: 1.2rem;
        top: 0;
        left: 0;
        height: 100vh;
        width: 260px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 84px 18px 18px 18px;
        margin: 0;
        background: #ffffff;
        transform: translateX(-110%);
        transition: transform 340ms cubic-bezier(.2, .9, .2, 1);
        box-shadow: 4px 0 20px rgba(2, 6, 23, 0.08);
        z-index: 2201;    /* fix: above overlay! */
    }
    body.cs-menu-open .cs-navbar-menu { transform: translateX(0);}
    body.cs-menu-open .cs-overlay { opacity: 1; pointer-events: auto; }
    .cs-navbar-menu li { width: 100%; }
    .cs-navbar-menu li a {
        display: block;
        width: 100%;
        padding: 1px 6px;
        border-radius: 6px;
        cursor: pointer;
    }
    .cs-join-btn {
        width: 100%;
        text-align: center;
        padding: 12px 6px;
    }
}
/* ----------------- CLICK FIXES (DO NOT REMOVE) ------------- */
.cs-navbar-menu, .cs-navbar-menu * { pointer-events: auto !important; }


/* ==========================
  HERO SECTION
========================== */


/* Base Reset */
.hero-section {
    color: #1f2937;
    background-image: linear-gradient(to top, #d5cbf8 0%, #fce0f4 100%);
    font-family: "Poppins", sans-serif;
    margin-bottom: 30px;
}


/* Hero Container */
.hero-section .hero {
    overflow-x: hidden;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: center;
    padding: 50px;
    max-width: 1450px;
    margin: auto;
}

/* Left Content */
.hero-section .hero-content {
    flex: 1;
    min-width: 580px;
    max-width: 650px;
}

.hero-section .badge {
    display: inline-block;
    background: #eef2ff;
    color: #6366f1;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 6px 12px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.hero-section .hero-content h1 {
    font: 1em sans-serif;
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.2;
    margin: 0 0 20px;
}

.hero-section .hero-content .highlight {
    background: linear-gradient(to right, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-section .hero-content p {
    font-size: 1rem;
    margin-bottom: 30px;
    color: #4b5563;
    font-weight: 400;
    line-height: 1.5;
}

.hero-section .buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-section .primary-btn,
.hero-section .secondary-btn {
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    padding: 14px 24px;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.hero-section .primary-btn {
    background: linear-gradient(to right, #6366f1, #ec4899);
    color: white;
}

.hero-section .secondary-btn {
    background: white;
    color: #6366f1;
    border: 2px solid #e0e7ff;
}

.hero-section .primary-btn:hover,
.hero-section .secondary-btn:hover {
    transform: translateY(-4px);
}

.hero-section .features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-section .dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    margin-right: 6px;
}

.hero-section .green {
    background: #22c55e;
}

.hero-section .blue {
    background: #3b82f6;
}

.hero-section .purple {
    background: #8b5cf6;
}

/* Right Side Preview */
.hero-section .hero-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    min-width: 300px;
    margin-top: 10px;
}

.hero-section .code-card-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow: visible;
}

.hero-section .code-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    height: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-section .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f3f4f6;
    padding: 12px 16px;
}

.hero-section .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
}

.hero-section .red {
    background: #f87171;
}

.hero-section .yellow {
    background: #facc15;
}

.hero-section .green {
    background: #4ade80;
}

.hero-section .nav-buttons {
    display: flex;
    gap: 8px;
}

.hero-section .nav-btn {
    background: white;
    border: none;
    border-radius: 8px;
    padding: 2px 8px;
    cursor: pointer;
    font-weight: bold;
    color: #6b7280;
    font-size: 16px;
    transition: background 0.2s;
}

.hero-section .nav-btn:hover {
    background: #e5e7eb;
}

.hero-section .image-carousel {
    margin: auto;
    width: 75%;
    margin-top: 20px;
    height: 390px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #111827;
    border-radius: 20px;
}

.hero-section .carousel-image {
    width: 100%;
    height: 100%;
   
}

.hero-section .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 10px 0;
}

.hero-section .carousel-dot {
    width: 8px;
    height: 8px;
    background: #d1d5db;
    border-radius: 50%;
    cursor: pointer;
}

.hero-section .carousel-dot.active {
    background: #6366f1;
}

/* Tag Badges */
.hero-section .tag {
    position: absolute;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 99;
    white-space: nowrap;
    pointer-events: none;
}

.hero-section .tag.top-right {
    top: -24px;
    right: -24px;
    background: linear-gradient(to right, #7fd0ff, #e07af7);
}

.hero-section .tag.bottom-left {
    bottom: -24px;
    left: -24px;
    background: linear-gradient(to right, #6366f1, #ec4899);
}

/* Shake Animation */
@keyframes infinite-shake {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(2px, -2px);
    }

    50% {
        transform: translate(-2px, 2px);
    }

    75% {
        transform: translate(2px, 2px);
    }
}

.hero-section .shake-tag {
    animation: infinite-shake 1s infinite;
}

/* --- Existing RESPONSIVE styles (scoped under .hero-section) --- */
@media (max-width: 1024px) {
    .hero-section .hero-content h1 {
        font-size: 3.1rem;
    }
}

@media (max-width: 768px) {
    .hero-section .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
    }

    .hero-section .hero-content {
        min-width: unset;
        max-width: 100%;
    }

    .hero-section .hero-content h1 {
        text-align: left;
    }

    .hero-section .hero-content p {
        text-align: center;
    }

    .hero-section .buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-section .primary-btn,
    .hero-section .secondary-btn {
        width: 80%;
    }

    .hero-section .hero-preview {
        margin-top: 30px;
        width: 100%;
    }

    .hero-section .code-card {
        height: 450px;

    }

    .hero-section .image-carousel {
        height: 350px;
    }

    /* Position tags more centered for small screens */
    .hero-section .tag.top-right {
        top: -20px;
        right: 10px;
    }

    .hero-section .tag.bottom-left {
        bottom: -20px;
        left: 10px;
    }

    .hero-section .badge {
        margin-left: -160px;
        margin-bottom: 15px;


    }
}

@media (max-width: 480px) {
    .hero-section .hero {
        padding: 30px 15px;
    }

    .hero-section .hero-content h1 {
        font-size: 2.5rem;
        margin-left: 10px;
    }

    .hero-section .hero-content p {
        font-size: 1rem;
        margin-left: 10px;
    }

    .hero-section .badge {
        margin-left: 10px;
        margin-bottom: 15px;
        margin-right: 90px;

    }

    .hero-section .code-card {
        height: 350px;

    }

    .hero-section .image-carousel {
        height: 245px;

    }

    .hero-section .tag.top-right {
        top: -16px;
        right: 8px;
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .hero-section .tag.bottom-left {
        bottom: -16px;
        left: 8px;
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .hero-section .features {
        text-align: center;
        justify-content: center;
    }

}


/* Section Heading */
.section-heading-text {
    font-size: clamp(1.75rem, 4vw, 3rem);
    /* Mobile → Desktop scaling */
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 0.75rem;
    letter-spacing: -0.02em;
    font-family: "Inter", "Poppins", sans-serif;
    padding: 0 1rem;
    /* Safe padding on small screens */
    max-width: 90%;
}

/* Subtitle (Mini Text) */
.section-mini-text {
    font-size: clamp(0.95rem, 2vw, 1.2rem);
    font-weight: 400;
    text-align: center;
    color: #374151;
    margin: 0 auto 2rem;
    max-width: 700px;
    line-height: 1.5;
    font-family: "Inter", "Poppins", sans-serif;
    opacity: 0.9;
    padding: 0 1rem;
    /* Prevents edge collisions on mobile */
}

/* Extra Responsive Tweaks */
@media (max-width: 640px) {
    .section-heading-text {
        font-size: 1.75rem;
        /* Compact but still bold */
    }

    .section-mini-text {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .section-heading-text {
        font-size: 2rem;
        /* Bigger heading on desktop */
    }

    .section-mini-text {
        font-size: 1.15rem;
    }
}


/* wave hero */
.waves {
    position: relative;
    width: 100%;

    height: 28vh;
    margin-bottom: -7px;
    /*Fix for safari gap*/
    min-height: 100px;
    max-height: 100px;
}


/* Animation */

.parallax>use {
    animation: move-forever 25s cubic-bezier(.55, .5, .45, .5) infinite;
}

.parallax>use:nth-child(1) {
    animation-delay: -2s;
    animation-duration: 7s;
}

.parallax>use:nth-child(2) {
    animation-delay: -3s;
    animation-duration: 10s;
}

.parallax>use:nth-child(3) {
    animation-delay: -4s;
    animation-duration: 13s;
}

.parallax>use:nth-child(4) {
    animation-delay: -5s;
    animation-duration: 20s;
}

@keyframes move-forever {
    0% {
        transform: translate3d(-90px, 0, 0);
    }

    100% {
        transform: translate3d(85px, 0, 0);
    }
}

/*Shrinking for mobile*/
@media (max-width: 768px) {
    .waves {
        height: 60px;
        min-height: 50px;
    }
}





/* Section Heading */
.section-heading-text-coding-bundle {
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 auto 0.75rem;
    letter-spacing: -0.02em;
    font-family: "Inter", "Poppins", sans-serif;
    padding: 0 1rem;
    /* Safe padding on small screens */
    max-width: 90%;
}

/* Subtitle (Mini Text) */
.section-mini-text-coding-bundle {
   font-size: 15px;
    font-weight: 400;
    text-align: center;
    color: #374151;
    max-width: 500px;
    margin: auto;
    opacity: 0.9;
   
}

/* Extra Responsive Tweaks */
@media (max-width: 640px) {
    .section-heading-text-coding-bundle {
        font-size: 1.75rem;
        /* Compact but still bold */
    }
    .section-mini-text-coding-bundle {
        font-size: 15px;
        margin-bottom: 1.5rem;
         text-align: center;
         width: 80%;
    }
}

@media (min-width: 1024px) {
    .section-heading-text-coding-bundle {
        font-size: 2.3rem;
        /* Bigger heading on desktop */
    }

    .section-mini-text-coding-bundle {
        font-size: 15px;
        text-align: center;
    }
}





/* .all-coding-bundle */


.all-coding-bundle {
    max-width: 1350px;
    margin: auto;
    padding: 60px 0px 30px 0px ;
}

.all-coding-bundle-container {


    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    justify-items: center;
    padding: 0 20px;
    gap: 25px;
    padding: 0 20px;
}

.all-coding-bundle-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 240px;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.all-coding-bundle-card:hover {
    transform: translateY(-5px);
}

.all-coding-bundle-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f59e0b, #f97316);
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 12px;
    font-weight: 600;
}

.all-coding-bundle-icon {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
    font-weight: 700;
}

/* Icon colors */
.all-coding-bundle-icon.js {
    background: linear-gradient(135deg, #facc15, #f59e0b);
}

.all-coding-bundle-icon.react {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.all-coding-bundle-icon.frontend {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
}

.all-coding-bundle-icon.node {
    background: linear-gradient(135deg, #10b981, #059669);
}

.all-coding-bundle-icon.experience {
    background: linear-gradient(135deg, #a855f7, #7e22ce);
}

.all-coding-bundle-icon  img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  object-fit: contain;
}

.all-coding-bundle-category {
    background: #f3f4f6;
    color: #4b5563;
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.all-coding-bundle-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111827;
}

.all-coding-bundle-enrolled {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.all-coding-bundle-discount {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.all-coding-bundle-price {
    font-weight: 700;
    font-size: 20px;
    color: #111827;
    margin-bottom: 3px;
}

.all-coding-bundle-old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #9ca3af;
    margin-left: 5px;
}

.all-coding-bundle-btn {
    display: block;
    width: 100%;
    color: white;
    font-weight: 600;
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

/* Button colors */
/* ===== All Coding Bundle Button Gradients ===== */

/* Primary Colors */
.all-coding-bundle-btn.orange {
    background: linear-gradient(to right, #f59e0b, #f97316);
}

.all-coding-bundle-btn.blue {
    background: linear-gradient(to right, #3b82f6, #2563eb);
}

.all-coding-bundle-btn.pink {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
}

.all-coding-bundle-btn.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.all-coding-bundle-btn.purple {
    background: linear-gradient(to right, #8b5cf6, #6366f1);
}

/* Additional Vibrant Colors */
.all-coding-bundle-btn.teal {
    background: linear-gradient(to right, #14b8a6, #0891b2);
}

.all-coding-bundle-btn.red {
    background: linear-gradient(to right, #ef4444, #dc2626);
}

.all-coding-bundle-btn.gold {
    background: linear-gradient(to right, #fbbf24, #f59e0b);
}

.all-coding-bundle-btn.indigo {
    background: linear-gradient(to right, #6366f1, #4f46e5);
}

.all-coding-bundle-btn.cyan {
    background: linear-gradient(to right, #06b6d4, #0891b2);
}

/* Cool Modern Gradients */
.all-coding-bundle-btn.sunset {
    background: linear-gradient(to right, #ff7e5f, #feb47b);
}

.all-coding-bundle-btn.ocean {
    background: linear-gradient(to right, #667eea, #764ba2);
}

.all-coding-bundle-btn.forest {
    background: linear-gradient(to right, #134e5e, #71b280);
}

.all-coding-bundle-btn.royal {
    background: linear-gradient(to right, #141e30, #243b55);
}

.all-coding-bundle-btn.fire {
    background: linear-gradient(to right, #f12711, #f5af19);
}

/* Trendy Combinations */
.all-coding-bundle-btn.neon {
    background: linear-gradient(to right, #00f260, #0575e6);
}

.all-coding-bundle-btn.cosmic {
    background: linear-gradient(to right, #667db6, #0082c8);
}

.all-coding-bundle-btn.aurora {
    background: linear-gradient(to right, #a8edea, #fed6e3);
}

.all-coding-bundle-btn.lava {
    background: linear-gradient(to right, #c21500, #ffc500);
}

.all-coding-bundle-btn.mint {
    background: linear-gradient(to right, #00b09b, #96c93d);
}




.all-coding-bundle-btn.gray {
    background: #e5e7eb;
    color: #9ca3af;
    cursor: not-allowed;
}

.all-coding-bundle-btn:hover {
    opacity: 0.9;
}

/* 📱 Phones — show 2 cards per row */
@media (max-width: 640px) {
    .all-coding-bundle-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .all-coding-bundle-card {
        width: 100%;
    }
}

/* 💻 Tablets — show 3 cards per row */
@media (min-width: 641px) and (max-width: 1024px) {
    .all-coding-bundle-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .all-coding-bundle-card {
        width: 100%;
    }
}

/* coding bundle end  */




/* More Coding Bundle Button Styles */
.cstar-bundle-cta-wrapper {
    text-align: center;
    padding: 0px 0px  40px 0px;
}

.cstar-bundle-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(to right, #6366f1, #ec4899);
    color: white;
    padding: 8px 40px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.cstar-bundle-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.cstar-bundle-cta-btn:hover::before {
    left: 100%;
}

.cstar-bundle-cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.cstar-btn-icon {
    font-size: 24px;
    animation: cstar-bounce 2s infinite;
}

.cstar-btn-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.cstar-bundle-cta-btn:hover .cstar-btn-arrow {
    transform: translateX(5px);
}

@keyframes cstar-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Animated Offer Banner Styles */
.cstar-offer-banner-container {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 20px;
}

.cstar-offer-banner-card {
    background: linear-gradient(135deg, #db92f8 0%, #a27cc9 100%);
    border-radius: 25px;
    padding: 0;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    animation: cstar-glow-pulse 3s ease-in-out infinite;
}

@keyframes cstar-glow-pulse {
    0%, 100% { box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4); }
    50% { box-shadow: 0 20px 80px rgba(102, 126, 234, 0.6); }
}

/* Left Section */
.cstar-offer-left {
    flex: 1;
    padding: 50px;
    color: white;
    z-index: 2;
    position: relative;
}

.cstar-offer-badge-wrap {
    margin-bottom: 0px;
}

.cstar-offer-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    animation: cstar-badge-pulse 2s ease-in-out infinite;
}

@keyframes cstar-badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.cstar-offer-title {
    font-size:2rem;
    font-weight: 800;
    margin-bottom: 0px;
    line-height: 1.2;
}

.cstar-offer-subtitle {
    font-size: 18px;
    margin-top: -7px;
    margin-bottom: 18px;
    opacity: 0.95;
    line-height: 1.5;
}

.cstar-offer-subtitle strong {
    color: #ffd700;
    font-size: 22px;
    animation: cstar-discount-flash 1.5s ease-in-out infinite;
}

@keyframes cstar-discount-flash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; transform: scale(1.05); }
}

/* Claim Button */
.cstar-offer-claim-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: #6366f1;
    padding: 10px 35px;
    border-radius: 12px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.cstar-offer-claim-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.cstar-claim-icon {
    font-size: 18px;
    animation: cstar-rocket-move 2s ease-in-out infinite;
}

@keyframes cstar-rocket-move {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

/* Right Section */
.cstar-offer-right {
    flex: 0 0 350px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
}

.cstar-price-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 50px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 20px;
    min-width: 400px;
    animation: cstar-price-float 3s ease-in-out infinite;
}

@keyframes cstar-price-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.cstar-original-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    text-decoration: line-through;
    margin-bottom: 5px;
}

.cstar-discount-price {
    font-size: 56px;
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cstar-save-tag {
    background: #ffd700;
    color: #764ba2;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
}

.cstar-offer-stats {
    display: flex;
    gap: 25px;
}

.cstar-stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 15px 65px;
    border-radius: 15px;
}

.cstar-stat-num {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 5px;
}

.cstar-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

/* Animated Glowing Elements */
.cstar-offer-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: cstar-glow-move 8s ease-in-out infinite;
}

.cstar-glow-1 {
    width: 200px;
    height: 200px;
    background: #ec4899;
    top: -50px;
    right: 100px;
    animation-delay: 0s;
}

.cstar-glow-2 {
    width: 150px;
    height: 150px;
    background: #6366f1;
    bottom: -30px;
    left: 150px;
    animation-delay: 2s;
}

.cstar-glow-3 {
    width: 180px;
    height: 180px;
    background: #fcd34d;
    top: 50%;
    left: 50%;
    animation-delay: 4s;
}

@keyframes cstar-glow-move {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

/* Responsive Design */
@media (max-width: 968px) {
    .cstar-offer-banner-card {
        height: auto;
        flex-direction: column;
        padding: 40px 30px;
    }

    .cstar-offer-left {
        padding: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    .cstar-offer-right {
        flex: 1;
        padding: 0;
    }

    .cstar-offer-title {
        font-size: 32px;
    }

    .cstar-offer-subtitle {
        font-size: 16px;
    }

    .cstar-discount-price {
        font-size: 48px;
    }

    .cstar-offer-stats {
        gap: 15px;
    }

    .cstar-stat-item {
        padding: 12px 20px;
    }
}

@media (max-width: 768px) {
    .cstar-bundle-cta-btn {
        padding: 15px 35px;
        font-size: 16px;
    }

    .cstar-offer-title {
        font-size: 28px;
    }

    .cstar-offer-subtitle {
        font-size: 15px;
    }

    .cstar-offer-subtitle strong {
        font-size: 18px;
    }

    .cstar-discount-price {
        font-size: 42px;
    }

    .cstar-price-box {
        min-width: 200px;
        padding: 25px;
    }

    .cstar-stat-num {
        font-size: 24px;
    }
}








/* 

coding notes section */

/* Section Base */
.coding-notes-section {
    max-width: 1350px;
    margin: auto;
    padding: 40px 0;
}

/* Grid Layout */
.coding-notes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    justify-items: center;
    padding: 0 20px;
}

/* Card Styles */
.coding-notes-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    width: 240px;
    text-align: center;
    padding: 25px 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.coding-notes-card:hover {
    transform: translateY(-5px);
}

/* Icon */
.coding-notes-icon {
    width: 90px;
    height: 90px;
    border-radius: 15px;
    margin: 0 auto 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 26px;
    font-weight: 700;
}



.coding-notes-icon img {
  width: 90px;
  height: 90px;
  border-radius: 15px;
  object-fit: contain;
}


.all-coding-notes-category {
    background: #f3f4f6;
    color: #4b5563;
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 10px;
}
/* Title */
.coding-notes-title {
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
    color: #111827;
}

/* Description */
.coding-notes-description {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

/* 🧾 Enrolled + Discount Row */
.coding-notes-info {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    margin: 6px 0 10px 0;
}

.coding-notes-enrolled {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.coding-notes-discount {
    display: inline-block;
    background: #10b981;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Price */
.coding-notes-pricing {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.coding-notes-price {
    font-weight: 700;
    font-size: 18px;
    color: #111827;
}

.coding-notes-oldprice {
    text-decoration: line-through;
    font-size: 14px;
    color: #9ca3af;
    margin-left: 5px;
}


/* Button */
.coding-notes-btn {
    display: block;
    width: 100%;
    color: white;
    font-weight: 600;
    padding: 10px 0;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}
/* Button 1 - Orange */
.coding-notes-btn.orange {
    background: linear-gradient(to right, #f59e0b, #f97316);
}

/* Button 2 - Blue */
.coding-notes-btn.blue {
    background: linear-gradient(to right, #3bf6f6, #2563eb);
}

/* Button 3 - Green */
.coding-notes-btn.green {
    background: linear-gradient(to right, #10a0b9, #059669);
}

/* Button 4 - Pink */
.coding-notes-btn.pinks {
    background: linear-gradient(to right, #fd3499, #743afa);
}

/* Button 5 - Purple/Yellow */
.coding-notes-btn.purple {
    background: linear-gradient(to right, #ffe816, #49bb07);
}

/* Button 6 - Red/Coral */
.coding-notes-btn.red {
    background: linear-gradient(to right, #ff6b6b, #ee5a6f);
}

/* Button 7 - Teal/Turquoise */
.coding-notes-btn.teal {
    background: linear-gradient(to right, #06b6d4, #0891b2);
}

/* Button 8 - Sunset (Yellow-Orange) */
.coding-notes-btn.sunset {
    background: linear-gradient(to right, #fbbf24, #fb923c);
}

/* Button 9 - Indigo/Blue */
.coding-notes-btn.indigo {
    background: linear-gradient(to right, #6366f1, #8b5cf6);
}

/* Button 10 - Mint/Emerald */
.coding-notes-btn.mint {
    background: linear-gradient(to right, #34d399, #10b981);
}

.coding-notes-btn:hover {
    opacity: 0.9;
}

/* 📱 Phones — 2 cards per row */
@media (max-width: 640px) {
    .coding-notes-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .coding-notes-card {
        width: 100%;
    }
}

/* 💻 Tablets — 3 cards per row */
@media (min-width: 641px) and (max-width: 1024px) {
    .coding-notes-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .coding-notes-card {
        width: 100%;
    }
}
/* last line desing */

/* Container for badges */
.info-badges-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

/* Badge bar */
.info-badges-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background: #fff;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 8px 40px;
  gap: 40px;
  flex-wrap: nowrap; /* keep badges in one line */
}

/* Individual badge */
.info-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Badge icon */
.info-badge-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
}

/* Badge colors */
.info-orange {
  background: linear-gradient(135deg, #ffb347, #ff9900);
}
.info-green {
  background: linear-gradient(135deg, #00c851, #007e33);
}
.info-blue {
  background: linear-gradient(135deg, #4285f4, #2a56c6);
}

/* Badge text */
.info-badge-text {
  font-weight: 500;
  color: #333;
  font-size: 14px;
}

/* Mobile responsive */
@media (max-width: 600px) {
  .info-badges-bar {
    width: 90%;          
    padding: 10px 15px;   
    gap: 4px;           
    border-radius: 25px; 
    flex-wrap: wrap;    
  }

  .info-badge-item {
    flex-shrink: 0;    
  }
}







/* <!-- Learn By Domain --> */

.career-kits-section {
    max-width: 1350px;
    margin: 60px auto;
    padding: 0 20px;
}

.career-kits-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

.career-kit-card {
    position: relative;
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 10px 25px;
    background: #fff;
    transition: all 0.3s ease;
}

.career-kit-card:hover {
    transform: translateY(-5px);
}

/* Border Colors */
.career-kit-card.yellow {
    border-color: #fbbf24;
}

.career-kit-card.blue {
    border-color: #3b82f6;
}

.career-kit-card.green {
    border-color: #10b981;
}

/* Badge */
.career-kit-badge {
    position: absolute;
    top: -12px;
    left: 20px;
    background: #3b82f6;
    color: #fff;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 8px;
}

/* Icon */
.career-kit-icon {
    font-size: 28px;
    margin-right: 5px;
    margin-bottom: 10px;

}

/* Title */
.career-kit-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 6px;
}

/* Description */
.career-kit-desc {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 12px;
    margin-left: 38px;
    margin-top: -4px;
}

/* List */
.career-kit-list {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.career-kit-list li {
    font-size: 14px;
    color: #374151;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Link */
.career-kit-link {
    display: inline-block;
    font-weight: 600;
    color: #0f172a;
    text-decoration: none;
    font-size: 15px;
    margin-top: 10px;
    margin-left: 5px;
    transition: color 0.3s ease;
}

.career-kit-link:hover {
    color: #2563eb;
}

/* Responsive */
@media (max-width: 768px) {
    .career-kits-container {
        grid-template-columns: 1fr;
    }
}























.interview-kits-section {
    padding: 60px 0;
}

.interview-kits-container {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    max-width: 1350px;
    margin: auto;
    margin-top:40px;
}
.interview-kits-section a{
    text-decoration: none;
}

/* Card Base */
.kit-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    width: 400px;
    padding: 30px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}

.kit-card:hover {
    transform: translateY(-5px);
}

/* Tags & Badges */
.kit-tag {
    background: #f9fafb;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    position: absolute;
    top: 15px;
    left: 20px;
    font-weight: 600;
}

.kit-badge-1 {
    background: #f9fafb;
    color: #ec4899;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f5c6e1, #8b5cf6);
    color: white;
    font-weight: 600;
}
.kit-badge-2 {
    background: #f9fafb;
    color: #ec4899;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #ec4899, #8b5cf6);
    color: white;
    font-weight: 600;
}
.kit-badge-3 {
    background: #f9fafb;
    color: #ec4899;
    border-radius: 20px;
    padding: 5px 12px;
    font-size: 12px;
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #f5c6e1, #8b5cf6);
    color: white;
    font-weight: 600;
}

.kit-discount {
    background: #ff0057;
    color: white;
    font-weight: 700;
    font-size: 12px;
    border-radius: 12px;
    padding: 5px 8px;
    position: absolute;
    top: -14px;
    right: 0px;
}

/* Icons */
.kit-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    margin: 0 auto 15px;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.js-icon {
    background: linear-gradient(to bottom right, #f97316, #f59e0b);
}

.frontend-icon {
    background: linear-gradient(to bottom right, #e74094, #8b5cf6);
}

.interview-icon {
    background: linear-gradient(to bottom right, #6366f1, #8b5cf6);
}

/* Text */
.kit-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.kit-subtitle {
    color: #6b7280;
    font-size: 14px;
    margin-bottom: 10px;
}

.kit-features-top {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 12px;
    color: #374151;
    margin-bottom: 20px;
}

.kit-price h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0;
}

.kit-price .old-price {
    text-decoration: line-through;
    font-size: 14px;
    color: #9ca3af;
    margin-left: 8px;
}

.kit-price .save {
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Feature List */
.kit-features-1 {
    list-style: none;
    text-align: left;
    font-size: 13px;
    color: #474c55;
    line-height: 1.6;
    padding-left: 10px;
    margin-bottom: 20px;
}

.kit-features-1 li {
    position: relative;
    padding-left: 20px;
    /* Add space for icon */
    margin-bottom: 3px;
}

.kit-features-1 li::before {
    content: "\2713";
    /* Unicode checkmark */
    position: absolute;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #ffffff;
    /* White color works now */
    font-weight: bold;
    padding: 1px 3px;
    border-radius: 100%;
    background: linear-gradient(to right, #f5cb10, #f69a5c);
}
/* Feature List 2 */
.kit-features-2{
    list-style: none;
    text-align: left;
    font-size: 13px;
    color: #474c55;
    line-height: 1.6;
    padding-left: 10px;
    margin-bottom: 20px;
}

.kit-features-2 li {
    position: relative;
    padding-left: 20px;
    /* Add space for icon */
    margin-bottom: 3px;
}

.kit-features-2 li::before {
    content: "\2713";
    /* Unicode checkmark */
    position: absolute;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #ffffff;
    /* White color works now */
    font-weight: bold;
    padding: 1px 3px;

    border-radius: 100%;
    background: linear-gradient(to bottom right, #ec4899, #8b5cf6);
}
/* Feature List-3 */
.kit-features-3 {
    list-style: none;
    text-align: left;
    font-size: 13px;
    color: #474c55;
    line-height: 1.6;
    padding-left: 10px;
    margin-bottom: 20px;
}

.kit-features-3 li {
    position: relative;
    padding-left: 20px;
    /* Add space for icon */
    margin-bottom: 3px;
}

.kit-features-3 li::before {
    content: "\2713";
    /* Unicode checkmark */
    position: absolute;

    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: #ffffff;
    /* White color works now */
    font-weight: bold;
    padding: 1px 3px;

    border-radius: 100%;

    background: linear-gradient(to right, #f5cb10, #f69a5c);
}


/* Buttons */
.kit-btn {
    border: none;
    border-radius: 10px;
    font-weight: 600;
    color: white;
    width: 100%;
    padding: 12px;
    font-size: 15px;
    cursor: pointer;
}

.kit-btn.dark {
    background: #111827;
}

.kit-btn.pink {
    background: linear-gradient(to right, #ec4899, #8b5cf6);
}

.kit-btn.gray {
    background: #d1d5db;
    color: #374151;
    cursor: not-allowed;
}

.kit-preview {
    margin-top: 10px;
    font-size: 14px;
    color: #4b5563;
    border: 1px rgb(204, 198, 198) solid;
    border-radius: 10px;
    padding: 12px;
     cursor: pointer;
}

/* Background Glow */
.foundation {
     background: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

.popular {

    background: linear-gradient(to right, #f7dbe9, #dfd7f3);
box-shadow: 
  0 8px 30px rgba(241, 179, 210, 0.4),  /* pink glow */
  0 4px 25px rgba(191, 166, 248, 0.3);  /* purple glow */

}


.insider {
    background: linear-gradient(to bottom, #f0f9ff, #ffffff);
}

/* Responsive */
@media (max-width: 768px) {
  .interview-kits-container {
   width: 90%;
    gap: 35px;
   
}
}






/* ===== Loading & Hover Animations (Extra Code) ===== */

/* Card Loading Animation */
.kit-card {
    animation: kitCardFadeIn 0.6s ease-out both;
}

/* Staggered animation for multiple cards */
.kit-card:nth-child(1) { animation-delay: 0.1s; }
.kit-card:nth-child(2) { animation-delay: 0.2s; }
.kit-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes kitCardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect - Scale & Border Glow (No shadow) */
.kit-card:hover {
    transform: translateY(-8px) scale(1.02);
    border: 2px solid rgba(236, 72, 153, 0.3);
}

/* Icon Hover Animation */
.kit-icon {
    transition: transform 0.3s ease;
}

.kit-card:hover .kit-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Button Hover Animation */
.kit-btn {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kit-btn:hover {
    transform: translateY(-2px);
}

.kit-btn.dark:hover {
    background: #1f2937;
}

.kit-btn.pink:hover {
    background: linear-gradient(to right, #f472b6, #a78bfa);
}

/* Button Ripple Effect */
.kit-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.kit-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Badge Pulse Animation */
.kit-badge-1, .kit-badge-2, .kit-badge-3 {
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
    }
}

/* Discount Badge Animation */
.kit-discount {
    animation: discountBounce 1s ease-in-out infinite;
}

@keyframes discountBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-3px);
    }
}

/* Feature List Hover */
.kit-features-1 li,
.kit-features-2 li,
.kit-features-3 li {
    transition: transform 0.2s ease, color 0.2s ease;
}

.kit-features-1 li:hover,
.kit-features-2 li:hover,
.kit-features-3 li:hover {
    transform: translateX(5px);
    color: #1f2937;
}

/* Preview Button Hover */
.kit-preview {
    transition: all 0.3s ease;
}

.kit-preview:hover {
    background: #f3f4f6;
    border-color: #9ca3af;
    transform: scale(1.02);
}

/* Popular Card Special Animation */
.popular {
    animation: kitCardFadeIn 0.6s ease-out both, popularGlow 3s ease-in-out infinite;
}

@keyframes popularGlow {
    0%, 100% {
        border: 2px solid rgba(236, 72, 153, 0.2);
    }
    50% {
        border: 2px solid rgba(236, 72, 153, 0.5);
    }
}

/* Title Hover Animation */
.kit-title {
    transition: color 0.3s ease;
}

.kit-card:hover .kit-title {
    color: #ec4899;
}

/* Price Animation on Hover */
.kit-price h2 {
    transition: transform 0.3s ease;
}

.kit-card:hover .kit-price h2 {
    transform: scale(1.05);
}







/* Start Coding Journey CTA Card */
.csj-journey-cta-container {
    max-width: 1100px;
    margin: 30px auto;
    padding: 0px 20px 40px 20px;
}

.csj-journey-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(to right, #6366f1, #ec4899);
    height: 100px;
    border-radius: 20px;
    padding: 0 40px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
    transition: all 0.4s ease;
    animation: csj-card-pulse 3s ease-in-out infinite;
}

@keyframes csj-card-pulse {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(99, 102, 241, 0.4);
        transform: translateY(0);
    }
    50% {
        box-shadow: 0 15px 50px rgba(99, 102, 241, 0.6);
        transform: translateY(-3px);
    }
}

.csj-journey-cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.6);
}

/* Shine Animation */
.csj-cta-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    animation: csj-shine-sweep 3s ease-in-out infinite;
}

@keyframes csj-shine-sweep {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

/* Left Section */
.csj-cta-left {
    display: flex;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.csj-cta-icon {
    font-size: 42px;
    animation: csj-rocket-bounce 2s ease-in-out infinite;
}

@keyframes csj-rocket-bounce {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-8px) rotate(-5deg);
    }
}

.csj-cta-text {
    color: white;
}

.csj-cta-title {
    font-size: 20px;
    font-weight: 800;
    margin: 0 0 4px 0;
    line-height: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.csj-cta-subtitle {
    font-size: 14px;
    margin: 0;
    opacity: 0.95;
    font-weight: 500;
    animation: csj-subtitle-glow 2s ease-in-out infinite;
}

@keyframes csj-subtitle-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
    }
}

/* Right Section */
.csj-cta-right {
    display: flex;
    align-items: center;
    gap: 25px;
    z-index: 2;
}

.csj-cta-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    animation: csj-badge-float 3s ease-in-out infinite;
}

@keyframes csj-badge-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}

.csj-badge-text {
    opacity: 0.95;
}

.csj-badge-divider {
    font-size: 18px;
    opacity: 0.7;
}

.csj-badge-highlight {
    color: #ffd700;
    font-weight: 800;
    animation: csj-highlight-pulse 1.5s ease-in-out infinite;
}

@keyframes csj-highlight-pulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.08);
        text-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    }
}

.csj-cta-arrow {
    font-size: 32px;
    color: white;
    font-weight: 700;
    animation: csj-arrow-move 1.5s ease-in-out infinite;
}

@keyframes csj-arrow-move {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(8px);
    }
}

/* Glowing Effects */
.csj-glow-effect {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.4;
    animation: csj-glow-float 6s ease-in-out infinite;
}



@keyframes csj-glow-float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translate(20px, -20px) scale(1.2);
        opacity: 0.6;
    }
}

/* Responsive Design */
@media (max-width: 1150px) {
    .csj-journey-cta-container {
        max-width: 95%;
    }
}

@media (max-width: 968px) {
    .csj-journey-cta-card {
        height: auto;
        padding: 25px 30px;
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .csj-cta-left {
        flex-direction: column;
        gap: 15px;
    }

    .csj-cta-title {
        font-size: 18px;
    }

    .csj-cta-subtitle {
        font-size: 13px;
    }

    .csj-cta-right {
        flex-direction: column;
        gap: 15px;
    }

    .csj-cta-badge {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 580px) {
    .csj-journey-cta-card {
        padding: 20px;
    }

    .csj-cta-icon {
        font-size: 36px;
    }

    .csj-cta-title {
        font-size: 16px;
    }

    .csj-cta-subtitle {
        font-size: 12px;
    }

    .csj-cta-badge {
        font-size: 12px;
        padding: 8px 15px;
        gap: 8px;
    }

    .csj-cta-arrow {
        font-size: 28px;
    }
}



/* Trusted by Thousands of Learners */
.trusted-main {
    background-image: linear-gradient(to top, #d5cbf8 0%, #fce0f4 100%);
    padding: 40px 0px;
    max-width: 1250px;
    border-radius: 19px;
    margin: auto;
    position: relative;
    overflow: hidden;
}

/* Shine effect on trusted-main */
.trusted-main::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: cs-trusted-shine 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes cs-trusted-shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.trusted-by-learners {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

.trusted-by-learners img {
    width: 120px;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease, filter 0.3s ease;
    position: relative;
}

/* Individual shine effect on each logo */
.trusted-by-learners img::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.6),
        transparent
    );
    animation: cs-logo-shine 3s ease-in-out infinite;
}

@keyframes cs-logo-shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.trusted-by-learners img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

/* 📱 Responsive: For small screens, show 2 logos per row */
@media (max-width: 768px) {
    .trusted-main {
        background-image: linear-gradient(to top, #d5cbf8 0%, #fce0f4 100%);
        padding: 40px 0px;
        width: 90%;
        border-radius: 19px;
        margin: auto;
    }

    .trusted-by-learners {
        justify-content: center;
    }

    .trusted-by-learners img {
        width: 40%;
        max-width: 140px;
    }
}

/* 🧩 Very small phones */
@media (max-width: 480px) {
    .trusted-by-learners {
        gap: 10px;
    }

    .trusted-by-learners img {
        width: 15%;
    }
}

/* Main Trust Bar */
.cs-trust-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    padding: 15px 30px;
    width: fit-content;
    margin: 30px auto;
    position: relative;
    overflow: hidden;
}

/* Shine animation for trust bar */
.cs-trust-bar::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(99, 102, 241, 0.2),
        transparent
    );
    animation: cs-trustbar-shine 3s ease-in-out infinite;
}

@keyframes cs-trustbar-shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.cs-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: #222;
    font-size: 1rem;
    position: relative;
    z-index: 1;
    animation: cs-trust-item-glow 2s ease-in-out infinite;
}

/* Glow animation for trust items */
@keyframes cs-trust-item-glow {
    0%, 100% {
        text-shadow: 0 0 5px rgba(99, 102, 241, 0);
    }
    50% {
        text-shadow: 0 0 10px rgba(99, 102, 241, 0.3);
    }
}

.cs-trust-item i {
    font-size: 1.2rem;
    color: #00b67a;
    animation: cs-icon-pulse 2s ease-in-out infinite;
}

/* Icon pulse animation */
@keyframes cs-icon-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(0, 182, 122, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(0, 182, 122, 0.6));
    }
}

/* Different colors for variety */
.cs-trust-item:nth-child(2) i {
    color: #f4b400;
    animation: cs-icon-pulse-gold 2s ease-in-out infinite;
}

@keyframes cs-icon-pulse-gold {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(244, 180, 0, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(244, 180, 0, 0.6));
    }
}

.cs-trust-item:nth-child(3) i {
    color: #2563eb;
    animation: cs-icon-pulse-blue 2s ease-in-out infinite;
}

@keyframes cs-icon-pulse-blue {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 2px rgba(37, 99, 235, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 8px rgba(37, 99, 235, 0.6));
    }
}

/* Sub Info Line */
.cs-trust-subinfo {
    text-align: center;
    margin-top: 10px;
    font-size: 0.95rem;
    color: #444;
    animation: cs-subinfo-fade 3s ease-in-out infinite;
}

@keyframes cs-subinfo-fade {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.cs-trust-subinfo i {
    color: #00b67a;
    margin-left: 20px;
    animation: cs-subinfo-icon-rotate 4s linear infinite;
}

@keyframes cs-subinfo-icon-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* 📱 Responsive */
@media (max-width: 768px) {
    .cs-trust-bar {
        flex-wrap: wrap;
        gap: 15px;
        padding: 15px 20px;
        width: 90%;
    }

    .cs-trust-item {
        font-size: 0.9rem;
    }

    .cs-trust-subinfo {
        font-size: 0.85rem;
        padding: 0 10px;
        width: 90%;
        margin: auto;
    }
}







/* FAQ Section */
.faq-section {
  max-width: 750px;
  margin: 80px auto;
  text-align: center;
  font-family: "Poppins", sans-serif;
  padding: 0 20px;
}

/* Header */
.faq-header h2 {
  margin-top: 10px;
  margin-bottom: -10px;
  font-size: 28px;
  font-weight: 700;
    background: linear-gradient(90deg, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.faq-header p {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 40px;
}

/* FAQ Cards */
.faq-container details {
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.08);
  margin-bottom: 16px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  text-align: left;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-container details[open] {
  background: #f9fafb;
  box-shadow: 0 0 25px rgba(236, 72, 153, 0.15),
              0 0 35px rgba(139, 92, 246, 0.1);
}

/* Question Title */
.faq-container summary {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: #575d66;
  list-style: none;
}

.faq-container summary::-webkit-details-marker {
  display: none;
}

/* Icons */
.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Answer Text */
.faq-container details p {
  margin-top: 12px;
  font-size: 15px;
  color: #4b5563;
  line-height: 1.6;
  padding-left: 48px;
  animation: slideDown 0.3s ease;
}

/* Smooth Open Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* FAQ Section - Mobile Responsive */
@media (max-width: 480px) {
  .faq-section {
    margin: 40px 15px;
    padding: 0 10px;
  }

  /* Header */
  .faq-tag {
    font-size: 16px;
    padding: 4px 12px;
  }

  .faq-header h2 {
    font-size: 22px;
    margin-top: 8px;
  }

  .faq-header p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  /* FAQ Cards */
  .faq-container details {
    padding: 14px 16px;
    border-radius: 12px;
  }

  /* Question Title */
  .faq-container summary {
    font-size: 15px;
    gap: 8px;
  }

  /* Icon inside summary */
  .faq-icon {
    width: 30px;
    height: 30px;
    font-size: 16px;
  }

  /* Answer Text */
  .faq-container details p {
    font-size: 14px;
    padding-left: 40px;
  }
}






/* LIMITED TIME: 90% OFF */
.offer-badge-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  font-family: 'Inter', sans-serif;
}

.offer-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, #ff6a6a, #ff4e92);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(255, 80, 120, 0.3);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: shake 2s ease-in-out infinite; /* 👈 Shake animation */
}

.offer-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 80, 120, 0.4);
}

.offer-icon {
  font-size: 16px;
}

/* ✨ Shake animation keyframes */
@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-3px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(3px);
  }
}









/* Footer */
.footer {
  background: linear-gradient(to right, #273585, #82449b);
  color: #f9fafb;
  padding: 40px 20px 20px;
  font-family: "Poppins", sans-serif;
  box-shadow: rgba(0, 0, 0, 0.25) 0px -10px 30px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Branding */
.footer-brand {
  flex: 1;
  min-width: 350px;
}

.footer-title {
  display: flex;
  align-items: center;
  gap: 12px; /* Space between logo and text */
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #f9fafb;
}

.footer-title img.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  object-fit: cover;
}

/* Brand description */
.footer-brand p {
  font-size: 0.85rem;
  color: #d1d5db;
  line-height: 1.6;
}

/* Links Section */
.footer-links {
  flex: 1;
  min-width: 200px;
  margin-left: 120px;
  
}

.footer-links h4 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #fbbf24;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #e5e7eb;
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: #a78bfa;
  text-shadow: 0 0 8px rgba(139, 92, 246, 0.6);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  padding-top: 20px;
  font-size: 0.9rem;
  color: #cbd5e1;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .footer-container {
    flex-direction: column;
    text-align: left; /* All text left-aligned */
    gap: 25px;
    padding: 30px 15px;
  }

  /* Footer Branding */
  .footer-brand {
    min-width: 100%;
  }

  .footer-title {
    flex-direction: row; /* Keep logo and text side by side */
    justify-content: flex-start;
    align-items: center;
    font-size: 1.3rem;
    gap: 10px;
  }

  .footer-title img.footer-logo {
    width: 36px;
    height: 36px;
    margin: 0;
  }

  .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: left;
  }

  /* Footer Links */
  .footer-links {
    text-align: left;
    flex: 1;
    min-width: 100%;
    margin-left: 0;
  }

  .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .footer-links li {
    margin-bottom: 8px;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  /* Footer Bottom */
  .footer-bottom {
    text-align: left;
    font-size: 0.85rem;
    padding-top: 15px;
  }
}
























.all-coding-bundle-btn-group {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 15px;
}

.all-coding-bundle-btn {
      margin-top: 15px;
  flex: 1;
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.details-btn {
  border: 1px solid rgb(170, 162, 162);
  color: rgb(58, 42, 42);
}

.details-btn:hover {
  background-color: #d1e1ee;
  transform: translateY(-2px);
}

