    :root {
        --primary: #1888bc;
        --primary-dark: #136f9a;
        --secondary: #e6f4fa;
        --text-dark: #222;
        --text-light: #555;
        --white: #fff;
        --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        --shadow-glow: 0 0 20px rgba(24, 136, 188, 0.3);
        --border-radius: 20px;
        --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    section {
        padding: 50px 20px;
    }

    /* sections ke beech gap control */
    section+section {
        margin-top: -20px;
        /* 🔥 magic fix */
    }

    body {
        font-family: 'Poppins', sans-serif;
        line-height: 1.6;
        color: var(--text-light);
        overflow-x: hidden;
    }

    h1,
    h2,
    h3 {
        font-weight: 700;
        line-height: 1.2;
    }

    h1 {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    h2 {


        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    /* HERO */
    .hero {
        background: linear-gradient(135deg, #f0f7fb 0%, #e0f0f8 100%);
        padding: 60px 20px 140px;
        /* Stats overlay ke liye bottom padding extra */
        position: relative;
        overflow: hidden;
    }

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: radial-gradient(circle at 20% 80%, rgba(24, 136, 188, 0.1) 0%, transparent 50%);
        pointer-events: none;
    }

    .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        /* 🔥 ye sabse important */
        gap: 20px;
    }

    /* NAVBAR */
    .navbar {
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(20px);
        padding: 0.6rem 1.5rem;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }

    .nav-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        min-height: 56px;
    }

    .logo img {
        height: 50px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        transition: var(--transition);
    }

    .logo img:hover {
        transform: scale(1.05);
        filter: drop-shadow(0 6px 12px rgba(24, 136, 188, 0.2));
    }

    /* BUTTONS */
    .nav-buttons {
        display: flex;
        gap: 10px;
        align-items: center;
    }

    .login-btn {
        padding: 8px 18px;
        border: 2px solid #1888bc;
        color: #1888bc;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
    }

    .signup-btn {
        padding: 10px 20px;
        background: var(--primary);
        color: #fff;
        border-radius: 25px;
        text-decoration: none;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: var(--transition);
    }

    /* HOVER */
    .signup-btn:hover {
        background: var(--primary-dark);
        box-shadow: 0 5px 15px rgba(24, 136, 188, 0.3);
    }

    .login-btn:hover {
        background: #1888bc;
        color: #fff;
    }

    /* NAVBAR OVERFLOW FIX FOR MOBILE */
    @media(max-width: 480px) {
        .navbar {
            padding: 0.6rem 1rem;
        }

        .logo img {
            height: 38px;
        }

        .nav-buttons {
            gap: 6px;
        }

        .login-btn,
        .signup-btn {
            padding: 6px 12px;
            font-size: 13px;
        }
    }

    .left {
        flex: 1;
        max-width: 480px;
        margin-left: 32px;
        /* 🔥 thoda tight */
    }

    .tag {
        background: rgba(24, 136, 188, 0.1);
        border: 1px solid rgba(24, 136, 188, 0.2);
        color: #1888bc;
        padding: 8px 18px;
        border-radius: 30px;
        font-size: 13px;
        font-weight: 600;
        display: inline-block;
    }

    .left h1 {
        color: var(--text-dark);
        margin: 20px 0;
        line-height: 1.1;
    }

    .highlight {
        background: #e6f4fa;
        color: #1888bc;
        padding: 5px 10px;
        border-radius: 5px;
    }

    .left p {
        color: #555;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .rating {
        margin: 15px 0;
        font-weight: bold;
    }

    .btn-group {
        margin-top: 20px;
        display: flex;
        gap: 15px;
        flex-wrap: wrap;
    }

    .primary-btn {
        background: var(--primary);
        color: #fff;
        padding: 12px 25px;
        border: none;
        border-radius: 12px;
        cursor: pointer;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        transition: var(--transition);
    }

    .primary-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(24, 136, 188, 0.3);
    }

    .secondary-btn {
        border: 2px solid var(--primary);
        color: var(--primary);
        padding: 10px 25px;
        border-radius: 12px;
        background: none;
        cursor: pointer;
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 16px;
        transition: var(--transition);
    }

    .secondary-btn:hover {
        background: rgba(24, 136, 188, 0.05);
    }


    .img-box {
        width: min(100%, 750px);
        margin-inline: auto;
    }

    .main-img {
        MARGIN-TOP: 10px;
        width: 100%;
        max-width: 750px;
        height: auto;
        display: block;
        filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.1));
    }

    .right {
        position: relative;
    }

    /* BADGE BASE */
    .badge {
        position: absolute;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(10px);
        padding: 10px 16px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.6);
        display: flex;
        align-items: center;
        gap: 8px;
        animation: floatBadge 4s ease-in-out infinite;
        cursor: pointer;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    }

    .badge i {
        color: var(--primary);
        font-size: 16px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .badge:hover {
        background: rgba(255, 255, 255, 0.98);
        border-color: rgba(24, 136, 188, 0.24);
        transform: translateY(-8px) scale(1.04);
        box-shadow: 0 18px 35px rgba(24, 136, 188, 0.22);
    }

    .badge:hover i {
        color: var(--primary-dark);
        transform: scale(1.15) rotate(-8deg);
    }

    /* 🔥 ab image ke hisaab se */
    .badge1 {
        top: 15%;
        left: 20%;
        animation-delay: 0s;
    }

    .badge2 {
        top: 10%;
        right: 0%;
        animation-delay: 1s;
    }

    .badge3 {
        bottom: 20%;
        left: 10%;
        animation-delay: 2s;
    }

    /* NEW BADGES */
    .badge4 {
        top: 45%;

        animation-delay: 0.5s;
    }

    .badge5 {
        bottom: 10%;
        right: 10%;
        animation-delay: 1.5s;
    }

    @keyframes floatBadge {

        0%,
        100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(-12px) rotate(-2deg);
        }
    }

    @media(max-width:768px) {

        .hero {
            padding: 42px 16px 92px;
        }

        /* ===== CONTAINER ===== */
        .container {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 4px;
            padding-top: 8px;
        }

        /* ===== LEFT ===== */
        .left {
            max-width: 100%;
            margin-left: 0;
        }

        .left h1 {
            font-size: 28px;
            line-height: 1.3;
        }

        .left p {
            font-size: 14px;
        }

        .btn-group {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .primary-btn,
        .secondary-btn {
            width: 100%;
            justify-content: center;
        }

        /* ===== RIGHT (IMAGE) ===== */
        .right {
            width: 100%;
            position: relative;
            display: flex;
            justify-content: center;
            margin-top: -8px;
            overflow: hidden;
        }

        .main-img {
            width: 100%;
            max-width: 100%;
            height: auto;
        }

        /* ===== BADGES ===== */
        .badge {
            font-size: 10px;
            padding: 5px 8px;
            border-radius: 15px;
        }

        .badge1 {
            top: 10%;
            left: 20%;
        }

        .badge2 {
            top: 7%;
            right: 5%;
        }

        .badge3 {
            bottom: 20%;
            left: 0%;
        }

        .badge4 {
            top: 40%;
            right: 70%;
        }

        .badge5 {
            bottom: 10%;
            right: 10%;
        }


    }


    /* REVIEW */
    .review-card {
        margin-top: 15px;
        background: #fff;
        padding: 10px;
        border-radius: 10px;
        display: inline-block;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }



    /* STATS */
    .stats {
        background: transparent;
        padding: 0 20px 60px;
        margin-top: -80px;
        /* OVERLAPPING TRICK */
        position: relative;
        z-index: 10;
    }

    .stats-container {
        max-width: 1200px;
        margin: auto;
        background: var(--white);
        padding: 40px;
        border-radius: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        text-align: center;
    }

    /* BOX */
    .stat-box {
        flex: 1;
        min-width: 150px;
        transition: var(--transition);
    }

    .stat-box:hover {
        transform: translateY(-5px);
    }

    .stat-box .icon {
        margin-bottom: 15px;
        width: 64px;
        height: 64px;
        margin-left: auto;
        margin-right: auto;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(24, 136, 188, 0.12), rgba(24, 136, 188, 0.04));
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .stat-box .icon i {
        font-size: 28px;
        color: var(--primary);
    }

    .stat-box h3 {
        font-size: 32px;
        color: #222;
    }

    .stat-box p {
        color: #777;
        font-weight: 500;
    }

    /* DIVIDER */
    .divider {
        width: 1px;
        height: 70px;
        background: rgba(0, 0, 0, 0.1);
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
        .stats-container {
            flex-direction: column;
            gap: 20px;
            padding: 30px 20px;
        }

        .stats {
            margin-top: -40px;
        }

        .divider {
            display: none;
        }
    }



    /* COURSES */
    .courses {
        padding: 60px 20px;
        text-align: center;
        background: var(--white);
    }

    .courses h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--text-dark);
        margin-bottom: 10px;
    }

    .sub {
        margin: 0 0 50px;
        color: var(--text-light);
        font-size: 1.1rem;
    }

    /* GRID */
    .course-cards {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 25px;
        max-width: 1200px;
        margin: auto;
    }

    /* CARD */
    .course-card {
        background: #fff;
        padding: 30px 25px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
        text-align: center;
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* HOVER */
    .course-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--shadow-glow);
        border-color: rgba(24, 136, 188, 0.2);
    }

    /* CARD ICON */
    .course-card .icon {
        width: 70px;
        height: 70px;
        background: var(--secondary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        transition: var(--transition);
    }

    .course-card:hover .icon {
        background: var(--primary);
    }

    .course-card .icon i {
        font-size: 30px;
        color: var(--primary) !important;
        transition: var(--transition);
    }

    .course-card .icon img {
        width: 34px;
        height: 34px;
        object-fit: contain;
        transition: var(--transition);
    }

    .course-card .brand-icon img {
        width: 36px;
        height: 36px;
    }

    .course-card:hover .icon i {
        color: var(--white) !important;
    }

    .course-card:hover .icon img {
        transform: scale(1.06);
    }

    .course-card:hover .brand-icon img {
        filter: brightness(0) invert(1);
    }

    /* TEXT */
    .course-card h3 {
        color: var(--text-dark);
        margin-bottom: 12px;
        font-size: 20px;
    }

    .course-card p {
        font-size: 14px;
        color: var(--text-light);
        margin-bottom: 25px;
        line-height: 1.6;
        flex-grow: 1;
        /* Text chota hone pe bhi button ko neeche push karega */
    }

    .course-card a {
        width: 100%;
        display: block;
        text-decoration: none;
    }

    /* BUTTON */
    .course-card .enroll-btn {
        width: 100%;
        padding: 12px;
        background: transparent;
        color: var(--primary);
        border: 2px solid var(--primary);
        border-radius: 10px;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
    }

    .course-card .enroll-btn:hover {
        background: var(--primary);
        color: var(--white);
        box-shadow: 0 5px 15px rgba(24, 136, 188, 0.3);
    }

    /* RESPONSIVE */
    @media(max-width:1024px) {
        .course-cards {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media(max-width:768px) {
        .course-cards {
            grid-template-columns: 1fr;
        }

        .course-card {
            padding: 30px;
        }
    }



    /* USP SECTION */
    .usp {
        background: #f8fbff;
        padding: 60px 20px;
        text-align: center;
    }

    .usp h2 {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .subtitle {
        color: #666;
        margin-bottom: 40px;
    }

    /* CARDS */
    .usp-cards {
        display: flex;
        justify-content: center;
        gap: 20px;
        flex-wrap: wrap;
    }

    .usp-card {
        width: 230px;
        padding: 20px;
        border-radius: 15px;
        background: #fff;
        text-align: center;
        border: 2px solid #eee;
        transition: 0.3s;
    }

    .usp-card-icon {
        width: 62px;
        height: 62px;
        margin: 0 auto 12px;
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, rgba(24, 136, 188, 0.12), rgba(24, 136, 188, 0.04));
    }

    .usp-card-icon i {
        font-size: 28px;
        color: var(--primary);
    }

    .usp-card p {
        font-size: 14px;
        color: #444;
    }

    .usp-card.blue {
        border-color: #1888bc;
    }

    .usp-card.red {
        border-color: #ff6b6b;
    }

    .usp-card.green {
        border-color: #2ecc71;
    }

    .usp-card.yellow {
        border-color: #f1c40f;
    }

    .usp-card:hover {
        transform: translateY(-5px);
    }

    /* CTA STRIP */
    .usp-cta {
        margin-top: 50px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: #fff;
        padding: 18px 20px;
        border-radius: 16px;
        box-shadow: 0 10px 24px rgba(24, 136, 188, 0.18);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        max-width: 760px;
        margin-left: auto;
        margin-right: auto;
    }

    .usp-cta-main {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        font-size: 17px;
        font-weight: 700;
        flex-wrap: nowrap;
    }

    .usp-cta-step {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(255, 255, 255, 0.12);
        padding: 9px 16px;
        border-radius: 999px;
        backdrop-filter: blur(4px);
        white-space: nowrap;
    }

    .usp-cta-step i {
        color: #ffc107;
        /* Icons ko thoda stand-out karne ke liye yellow tint */
        font-size: 14px;
    }

    .usp-cta-arrow {
        font-size: 15px;
        color: rgba(255, 255, 255, 0.7);
        animation: pulseRight 1.5s infinite;
    }

    .usp-cta-sub {
        font-size: 13px;
        color: var(--secondary);
        opacity: 0.9;
    }

    @keyframes pulseRight {
        0% {
            transform: translateX(0);
        }

        50% {
            transform: translateX(5px);
        }

        100% {
            transform: translateX(0);
        }
    }

    /* RESPONSIVE */
    @media(max-width:768px) {
        .usp h2 {
            font-size: 24px;
        }

        .usp-cta-main {
            flex-direction: column;
            gap: 8px;
            flex-wrap: wrap;
        }

        .usp-cta-arrow {
            animation: pulseDown 1.5s infinite;
        }

        @keyframes pulseDown {
            0% {
                transform: rotate(90deg) translateX(0);
            }

            50% {
                transform: rotate(90deg) translateX(5px);
            }

            100% {
                transform: rotate(90deg) translateX(0);
            }
        }
    }

    /* GAIN SECTION */
    .gain {
        padding: 60px 20px;
        text-align: center;
        background: #f8fbff;
        /* Match other sections */
    }

    .gain h2 {
        font-size: 32px;
        margin-bottom: 10px;
        color: var(--text-dark);
    }

    .gain .subtitle {
        /* Reusing subtitle class */
        color: var(--text-light);
        margin-bottom: 40px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }

    /* BOX */
    .gain-box {
        max-width: 1100px;
        margin: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 40px;
        flex-wrap: nowrap;
        /* Prevent wrapping on medium screens */
    }

    /* LEFT */
    .gain-left {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 25px;
        max-width: 550px;
    }

    .gain-item {
        display: flex;
        align-items: flex-start;
        /* Align to top */
        gap: 20px;
        text-align: left;
        background: var(--white);
        padding: 20px;
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
        border: 1px solid rgba(0, 0, 0, 0.03);
        transition: var(--transition);
    }

    .gain-item:hover {
        transform: translateY(-5px) scale(1.02);
        box-shadow: var(--shadow-glow);
    }

    .gain-icon {
        flex-shrink: 0;
        width: 50px;
        height: 50px;
        background: var(--secondary);
        color: var(--primary);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }

    .gain-text h4 {
        font-size: 18px;
        color: var(--text-dark);
        margin-bottom: 5px;
    }

    .gain-text p {
        font-size: 15px;
        color: var(--text-light);
        line-height: 1.5;
    }

    /* RIGHT */
    .gain-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .gain-right img {
        width: 100%;
        max-width: 500px;
        /* 🔥 Image ko unnecessarily bada hone se rokne ke liye */
        border-radius: var(--border-radius);
        box-shadow: var(--shadow);
    }

    /* DM INFOGRAPHIC DESIGN */
    .dm-infographic {
        position: relative;
        width: 400px;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: auto;
    }

    .dm-center {
        text-align: center;
        width: 230px;
        z-index: 3;
        background: radial-gradient(circle, rgba(248, 251, 255, 0.92) 0%, rgba(248, 251, 255, 0.68) 62%, rgba(248, 251, 255, 0) 100%);
        backdrop-filter: blur(4px);
        padding: 25px 20px;
        border-radius: 50%;
        box-shadow: none;
        border: none;
    }

    .dm-center h3 {
        color: var(--primary-dark);
        font-size: 1.3rem;
        margin-bottom: 8px;
        font-weight: 800;
    }

    .dm-center p {
        font-size: 0.85rem;
        color: var(--text-light);
        line-height: 1.5;
        margin: 0;
    }

    .dm-circle-path {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 320px;
        height: 320px;
        transform: translate(-50%, -50%);
        border: 2px dashed rgba(142, 68, 173, 0.4);
        border-radius: 50%;
        z-index: 1;
    }

    .dm-nodes-container {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 2;
    }

    .dm-node {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%) rotate(calc(var(--i) * 60deg)) translateY(-160px) rotate(calc(var(--i) * -60deg));
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        width: 110px;
        animation: orbitSwing 9s ease-in-out infinite;
    }

    .dm-icon {
        width: 55px;
        height: 55px;
        background: linear-gradient(135deg, var(--primary), #8e44ad);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 22px;
        box-shadow: 0 8px 20px rgba(142, 68, 173, 0.3);
        transition: var(--transition);
        border: 2px solid #fff;
    }

    .dm-icon img {
        width: 24px;
        height: 24px;
        object-fit: contain;
    }

    .dm-node:hover .dm-icon {
        transform: scale(1.1);
        box-shadow: 0 10px 25px rgba(24, 136, 188, 0.5);
    }

    .dm-node span {
        font-size: 0.75rem;
        font-weight: 600;
        color: var(--text-dark);
        background: rgba(255, 255, 255, 0.72);
        backdrop-filter: blur(2px);
        padding: 4px 10px;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        text-align: center;
        white-space: pre-wrap;
        line-height: 1.2;
    }

    @keyframes orbitSwing {

        0%,
        100% {
            transform: translate(-50%, -50%) rotate(calc((var(--i) * 60deg) - 35deg)) translateY(-160px) rotate(calc((var(--i) * -60deg) + 35deg));
        }

        50% {
            transform: translate(-50%, -50%) rotate(calc((var(--i) * 60deg) + 35deg)) translateY(-160px) rotate(calc((var(--i) * -60deg) - 35deg));
        }
    }

    /* BUTTON */
    .gain-btn {
        display: inline-block;
        margin-top: 40px;
        padding: 12px 30px;
        background: var(--primary);
        text-decoration: none;
        color: #fff;
        border: none;
        border-radius: 8px;
        cursor: pointer;
        font-weight: 600;
        transition: var(--transition);
    }

    .gain-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
    }

    /* RESPONSIVE */
    @media(max-width:992px) {

        /* A new breakpoint for better transition */
        .gain-box {
            flex-direction: column;
        }

        .gain-right {
            margin-top: 30px;
            max-width: 500px;
            /* Allow image to be a bit bigger when stacked */
        }
    }

    @media(max-width:768px) {
        .gain-right {
            width: 100%;
            overflow-x: hidden;
            overflow-y: visible;
        }

        .dm-infographic {
            width: min(100%, 360px);
            height: 392px;
            transform: scale(0.9);
            margin-top: -6px;
            margin-bottom: 0;
            padding-top: 12px;
            padding-bottom: 20px;
        }

        .gain h2 {
            font-size: 28px;
        }

        .gain-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .gain-icon {
            margin-bottom: 10px;
        }
    }

    /* COMBO SECTION */
    .combo {
        background:
            radial-gradient(circle at top left, rgba(74, 222, 128, 0.14), transparent 26%),
            radial-gradient(circle at top right, rgba(255, 255, 255, 0.12), transparent 22%),
            linear-gradient(145deg, #071a2f 0%, #0c2744 48%, #134f73 100%);
        padding: 72px 20px;
        text-align: center;
        color: #fff;
        position: relative;
        overflow: hidden;
    }

    .combo::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image:
            linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
        background-size: 34px 34px;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 92%);
        pointer-events: none;
    }

    .combo-kicker {
        display: inline-flex;
        align-items: center;
        padding: 7px 14px;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: #d9f3ff;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .combo h2 {
        font-size: clamp(1.8rem, 3.6vw, 2.2rem);
        margin-bottom: 10px;
        color: var(--white);
        position: relative;
        z-index: 1;
    }

    .combo-subtitle {
        max-width: 650px;
        margin: 0 auto 30px;
        color: rgba(255, 255, 255, 0.8);
        font-size: 15px;
        position: relative;
        z-index: 1;
    }

    .combo-grid {
        max-width: 1100px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        align-items: stretch;
        position: relative;
        z-index: 1;
    }

    /* CARD */
    .combo-card {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(242, 249, 255, 0.96) 100%);
        color: var(--text-dark);
        margin: 6px 0;
        padding: 22px;
        border-radius: 22px;
        text-align: left;
        box-shadow: 0 14px 34px rgba(0, 0, 0, 0.2);
        transition: var(--transition);
        display: flex;
        flex-direction: column;
        border: 1px solid rgba(24, 136, 188, 0.12);
        position: relative;
        overflow: hidden;
    }

    .combo-card::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(24, 136, 188, 0.12), transparent 45%);
        pointer-events: none;
    }

    .combo-card:hover {
        transform: translateY(-8px) scale(1.01);
        box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
    }

    .combo-card-featured {
        background: linear-gradient(180deg, #ffffff 0%, #eef8ff 100%);
        border: 1px solid rgba(74, 222, 128, 0.35);
        box-shadow: 0 18px 46px rgba(10, 37, 64, 0.28);
    }

    .combo-card-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-bottom: 14px;
        position: relative;
        z-index: 1;
    }

    .combo-badge,
    .combo-mode {
        display: inline-flex;
        align-items: center;
        border-radius: 999px;
        padding: 6px 11px;
        font-size: 11px;
        font-weight: 700;
    }

    .combo-badge {
        background: linear-gradient(135deg, #20c997, #0ea5e9);
        color: #fff;
        box-shadow: 0 10px 24px rgba(14, 165, 233, 0.24);
    }

    .combo-badge-muted {
        background: linear-gradient(135deg, #1888bc, #0a2540);
    }

    .combo-mode {
        color: #31506a;
        background: rgba(24, 136, 188, 0.08);
        border: 1px solid rgba(24, 136, 188, 0.14);
    }

    .combo-card h3 {
        color: var(--primary);
        font-size: 24px;
        margin-bottom: 12px;
        position: relative;
        z-index: 1;
    }

    .combo-card ul {
        list-style: none;
        padding: 0;
        flex-grow: 1;
        margin-bottom: 20px;
        position: relative;
        z-index: 1;
    }

    .combo-card li {
        margin: 10px 0;
        font-size: 14px;
        color: #476173;
        display: flex;
        align-items: flex-start;
        gap: 12px;
        padding: 10px 12px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(24, 136, 188, 0.08);
        border-radius: 14px;
        backdrop-filter: blur(6px);
    }

    .combo-card li i {
        color: #2ecc71;
        font-size: 18px;
        margin-top: 2px;
    }

    .combo-card a {
        text-decoration: none;
        width: 100%;
        position: relative;
        z-index: 1;
    }

    .combo-card button {
        width: 100%;
        padding: 13px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: #fff;
        border: none;
        border-radius: 14px;
        font-size: 15px;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 16px 30px rgba(24, 136, 188, 0.24);
    }

    .combo-card button:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 34px rgba(24, 136, 188, 0.32);
    }

    @media(max-width:768px) {
        .combo {
            padding: 60px 16px;
        }

        .combo-subtitle {
            font-size: 14px;
            margin-bottom: 24px;
        }

        .combo-grid {
            grid-template-columns: 1fr;
            gap: 18px;
        }

        .combo-card {
            max-width: 100%;
            margin: 0;
            padding: 20px 18px;
        }

        .combo-card-top {
            flex-wrap: wrap;
        }

        .combo-card h3 {
            font-size: 22px;
        }

    }

    /* CERTIFICATE */
    .certificate {
        padding: 80px 20px 40px;
        background: var(--white);
    }

    .cert-container {
        max-width: 1200px;
        margin: auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 50px;
        background: #f8fbff;
        padding: 50px;
        border-radius: 30px;
        box-shadow: var(--shadow);
        border: 1px solid rgba(0, 0, 0, 0.03);
    }

    /* LEFT */
    .cert-left {
        flex: 1;
        max-width: 600px;
    }

    .cert-left h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--text-dark);
        margin-bottom: 20px;
    }

    .cert-left p.subtitle {
        font-size: 1.1rem;
        color: var(--text-light);
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .cert-list {
        list-style: none;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .cert-list li {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1.1rem;
        color: var(--text-dark);
        font-weight: 500;
    }

    .cert-list li i {
        color: #f1c40f;
        /* Premium Gold Color for Certificate theme */
        font-size: 22px;
        background: rgba(241, 196, 15, 0.15);
        width: 45px;
        height: 45px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        flex-shrink: 0;
    }

    /* BUTTON */
    .cert-btn {
        display: inline-block;
        padding: 14px 35px;
        background: var(--primary);
        color: var(--white);
        text-decoration: none;
        font-weight: 600;
        font-size: 16px;
        border-radius: 12px;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(24, 136, 188, 0.2);
    }

    .cert-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(24, 136, 188, 0.3);
        color: var(--white);
    }

    /* IMAGE */
    .cert-right {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .cert-right img {
        width: 100%;
        max-width: 500px;
        border-radius: 20px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
    }

    .cert-right img:hover {
        transform: translateY(-10px);
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
        .cert-container {
            flex-direction: column;
            text-align: center;
            padding: 40px 20px;
        }

        .cert-list {
            align-items: center;
            /* Center the list itself */
            text-align: left;
            /* Keep text left aligned */
        }

        .cert-list li {
            width: 100%;
            max-width: 400px;
            /* Keep text readable */
        }
    }

    /* VIDEO SECTION */
    .video-review {
        padding: 40px 20px 80px;
        text-align: center;
        background: var(--white);
    }

    .video-review h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--text-dark);
        margin-bottom: 40px;
    }

    /* SLIDER */
    .video-slider {
        position: relative;
        max-width: 1100px;
        margin: auto;
        overflow: hidden;
        padding: 20px 10px;
    }

    .video-track {
        display: flex;
        transition: transform 0.5s ease-in-out;
    }

    /* CARD */
    .video-card {
        min-width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 40px;
        padding: 20px;
    }

    /* VIDEO */
    .video-card video {
        width: 100%;
        max-width: 350px;
        border-radius: 20px;
        box-shadow: var(--shadow);
        border: 4px solid var(--white);
        cursor: pointer;
        pointer-events: auto;
    }

    /* TEXT */
    .video-text {
        max-width: 400px;
        text-align: left;
        background: var(--white);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
        border: 1px solid rgba(0, 0, 0, 0.03);
        position: relative;
    }

    .quote-icon {
        font-size: 35px;
        color: rgba(24, 136, 188, 0.15);
        margin-bottom: 10px;
    }

    .video-text p {
        color: var(--text-light);
        margin-bottom: 20px;
        font-size: 1.05rem;
        line-height: 1.7;
        font-style: italic;
    }

    .video-text h4 {
        color: var(--primary);
        font-size: 1.2rem;
    }

    .video-text span {
        color: #888;
        font-size: 0.9rem;
        font-weight: 500;
    }

    /* BUTTON */
    .video-prev,
    .video-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: var(--white);
        color: var(--primary);
        border: none;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        font-size: 18px;
        z-index: 10;
        transition: var(--transition);
    }

    .video-prev:hover,
    .video-next:hover {
        background: var(--primary);
        color: var(--white);
    }

    /* POSITION */
    .video-prev {
        left: 0;
    }

    .video-next {
        right: 0;
    }

    /* RESPONSIVE */
    @media(max-width:850px) {
        .video-card {
            flex-direction: column;
            text-align: center;
        }

        .video-text {
            text-align: center;
            padding: 20px;
        }
    }

    /* WHY SECTION */
    .why {
        padding: 80px 20px;
        text-align: center;
        background: var(--white);
    }

    .why h2 {
        font-size: clamp(2rem, 4vw, 2.5rem);
        color: var(--text-dark);
    }

    .why-sub {
        margin: 15px 0 30px;
        color: var(--text-light);
        font-size: 1.1rem;
    }

    .why-btn-wrap {
        margin-top: 40px;
    }

    .why-btn {
        padding: 14px 35px;
        background: var(--primary);
        color: var(--white);
        border: none;
        border-radius: 12px;
        font-weight: 600;
        font-size: 16px;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 5px 15px rgba(24, 136, 188, 0.2);
    }

    .why-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(24, 136, 188, 0.3);
    }

    /* BOX */
    .why-box {
        max-width: 1000px;
        margin: auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 20px;
        margin-top: 40px;
    }

    /* ITEM */
    .why-item {
        display: flex;
        align-items: center;
        gap: 15px;
        text-align: left;
        font-size: 1.1rem;
        background: var(--white);
        padding: 20px 25px;
        border-radius: 15px;
        transition: var(--transition);
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
        font-weight: 500;
        color: var(--text-dark);
    }

    .why-item i {
        font-size: 24px;
        color: #2ecc71;
        flex-shrink: 0;
    }

    /* HOVER */
    .why-item:hover {
        transform: translateY(-5px);
        border-color: rgba(24, 136, 188, 0.2);
        box-shadow: var(--shadow-glow);
    }

    /* WHY BOX OVERFLOW FIX */
    @media(max-width:768px) {
        .video-review {
            padding: 32px 20px 40px;
        }

        .why {
            padding: 46px 20px 80px;
        }

        .why-box {
            grid-template-columns: 1fr;
        }
    }

    /* FAQ */
    .faq {
        padding: 80px 20px;
        text-align: center;
        background: #f8fbff;
    }

    .faq h2 {
        color: var(--text-light);
        font-size: 1.2rem;
        font-weight: 500;
        margin-bottom: 5px;
    }

    .faq h3 {
        color: var(--text-dark);
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 50px;
    }

    /* CONTAINER */
    .faq-container {
        max-width: 850px;
        margin: auto;
        text-align: left;
    }

    /* ITEM */
    .faq-item {
        background: var(--white);
        margin: 15px 0;
        border-radius: 12px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        overflow: hidden;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
        transition: var(--transition);
    }

    .faq-item:hover {
        border-color: rgba(24, 136, 188, 0.3);
    }

    /* QUESTION */
    .faq-question {
        padding: 20px 25px;
        font-weight: 600;
        font-size: 1.1rem;
        color: var(--text-dark);
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
        transition: var(--transition);
    }

    /* ANSWER */
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        padding: 0 25px;
        color: var(--text-light);
        transition: all 0.3s ease;
        line-height: 1.6;
    }

    /* ACTIVE */
    .faq-item.active {
        border-color: var(--primary);
        box-shadow: 0 5px 20px rgba(24, 136, 188, 0.1);
    }

    .faq-item.active .faq-question {
        color: var(--primary);
    }

    .faq-item.active .faq-answer {
        max-height: 200px;
        padding: 0 25px 20px;
    }

    /* ICON ROTATE */
    .faq-icon {
        transition: transform 0.3s ease;
        color: var(--primary);
    }

    .faq-item.active .faq-icon {
        transform: rotate(180deg);
    }

    .quick-actions {
        position: fixed;
        right: 25px;
        bottom: 25px;
        display: flex;
        flex-direction: column;
        gap: 15px;
        z-index: 9999;
    }

    .whatsapp-btn {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #25D366, #128C7E);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
        transition: var(--transition);
        animation: pulseWA 2s infinite;
    }

    .whatsapp-btn i {
        font-size: 34px;
        color: #fff;
        line-height: 1;
    }

    .whatsapp-icon-img {
        display: none;
        width: 30px;
        height: 30px;
        object-fit: contain;
        flex-shrink: 0;
    }

    .whatsapp-label {
        display: none;
    }

    .whatsapp-btn:hover {
        transform: scale(1.1) translateY(-3px);
        animation: none;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
    }

    @keyframes pulseWA {
        0% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        }
    }

    @keyframes pulseBtnGlow {
        0% {
            box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
        }

        70% {
            box-shadow: 0 0 0 15px rgba(239, 68, 68, 0);
        }

        100% {
            box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
        }
    }

    .login-btn,
    .signup-btn,
    .hero .primary-btn,
    .hero .secondary-btn,
    .primary-btn,
    .secondary-btn,
    .gain-btn,
    .cert-btn,
    .why-btn,
    .courses .enroll-btn,
    .course-card .enroll-btn,
    .combo-card button,
    .cta-box .footer-btn {
        animation: pulseBtnGlow 2s infinite;
    }

    @keyframes mobileButtonShimmer {
        0% {
            transform: translateX(-135%);
            opacity: 0;
        }

        20% {
            opacity: 0.2;
        }

        55% {
            transform: translateX(135%);
            opacity: 0.48;
        }

        100% {
            transform: translateX(135%);
            opacity: 0;
        }
    }

    @media(max-width:768px) {

        /* ========== PREMIUM MOBILE EFFECTS (Touch & Animation) ========== */

        /* 1. Native App-like Press Effect for Buttons (Active State replaces Hover on mobile) */
        .login-btn:active,
        .signup-btn:active,
        .primary-btn:active,
        .secondary-btn:active,
        .course-card .enroll-btn:active,
        .gain-btn:active,
        .cert-btn:active,
        .cta-box .footer-btn:active,
        .why-btn:active,
        .combo-card button:active {
            transform: scale(0.92) !important;
            transition: transform 0.1s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 2px 8px rgba(24, 136, 188, 0.2) !important;
        }

        /* 2. Interactive Press Effect for Cards when Tapped */
        .course-card:active,
        .usp-card:active,
        .combo-card:active,
        .stat-box:active,
        .gain-item:active {
            transform: scale(0.97) translateY(0) !important;
            box-shadow: 0 4px 15px rgba(24, 136, 188, 0.15) !important;
            border-color: rgba(24, 136, 188, 0.4) !important;
            transition: all 0.15s ease;
        }

        /* 3. Apply the Shimmer Effect to Main CTAs */
        .signup-btn,
        .primary-btn,
        .gain-btn,
        .cert-btn,
        .why-btn,
        .combo-card button {
            position: relative;
            overflow: hidden;
        }

        .signup-btn::after,
        .primary-btn::after,
        .gain-btn::after,
        .cert-btn::after,
        .why-btn::after,
        .combo-card button::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
            animation: mobileButtonShimmer 2.5s infinite ease-in-out;
            pointer-events: none;
            z-index: 1;
        }

        /* 4. ALL Cards Automatically Float & Glow while scrolling (Bina click ke) */
        .course-card,
        .usp-card,
        .combo-card,
        .stat-box,
        .gain-item {
            animation: mobileCardFloatGlow 3.5s infinite alternate ease-in-out !important;
        }

        @keyframes mobileCardFloatGlow {
            0% {
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
                border-color: rgba(0, 0, 0, 0.03);
                transform: translateY(0);
            }

            100% {
                box-shadow: 0 12px 30px rgba(24, 136, 188, 0.18);
                border-color: rgba(24, 136, 188, 0.3);
                transform: translateY(-6px);
            }
        }

        /* 5. Buttons Automatically Breathe & Pulse Glow (Bina click ke) */
        /* Fix WhatsApp Icon stopping its pulse after being touched on mobile */
        .whatsapp-btn:hover,
        .whatsapp-btn:focus,
        .whatsapp-btn:active {
            animation: pulseWA 2s infinite !important;
            transform: scale(1.05) !important;
        }

        .whatsapp-btn {
            width: 60px;
            min-width: 60px;
            height: 60px;
            padding: 0;
            gap: 0;
            border-radius: 50%;
        }

        .whatsapp-btn i {
            font-size: 30px;
            display: none;
        }

        .whatsapp-icon-img {
            display: block;
        }

        .whatsapp-label {
            display: none;
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .login-btn,
        .signup-btn,
        .hero .primary-btn,
        .hero .secondary-btn,
        .primary-btn,
        .secondary-btn,
        .course-card .enroll-btn,
        .gain-btn,
        .cert-btn,
        .why-btn,
        .combo-card button,
        .cta-box .footer-btn {
            border-radius: 14px;
            animation: pulseBtnGlow 2s infinite !important;
            overflow: hidden;
            max-width: 100%;
            box-sizing: border-box;
        }

        .secondary-btn,
        .hero .secondary-btn,
        .course-card .enroll-btn,
        .login-btn {
            background: linear-gradient(135deg, rgba(24, 136, 188, 0.1), rgba(24, 136, 188, 0.02));
            border-color: rgba(24, 136, 188, 0.75);
            box-shadow: 0 10px 24px rgba(24, 136, 188, 0.16);
        }

        .signup-btn,
        .hero .primary-btn,
        .primary-btn,
        .gain-btn,
        .cert-btn,
        .cta-box .footer-btn {
            background: linear-gradient(135deg, #1996d1 0%, #1888bc 52%, #0f6f9f 100%);
            box-shadow: 0 12px 26px rgba(24, 136, 188, 0.28);
        }

        .login-btn,
        .signup-btn,
        .primary-btn,
        .secondary-btn,
        .course-card .enroll-btn,
        .gain-btn,
        .cert-btn,
        .cta-box .footer-btn {
            letter-spacing: 0.2px;
        }

        .quick-actions {
            right: 18px;
            bottom: 18px;
        }
    }

    @media (prefers-reduced-motion: reduce) {

        .login-btn,
        .signup-btn,
        .primary-btn,
        .secondary-btn,
        .course-card .enroll-btn,
        .gain-btn,
        .cert-btn,
        .cta-box .footer-btn,
        .badge,
        .stat-box,
        .course-card,
        .usp-card,
        .gain-item,
        .combo-card,
        .faq-item {
            animation: none !important;
        }

        .login-btn::after,
        .signup-btn::after,
        .primary-btn::after,
        .secondary-btn::after,
        .course-card .enroll-btn::after,
        .gain-btn::after,
        .cert-btn::after,
        .cta-box .footer-btn::after {
            animation: none !important;
            content: none !important;
        }
    }

    .icon i {
        font-size: 40px;
        color: #1888bc !important;
        /* 🔥 force blue */
    }

    .enquiry-section {
        padding: 42px 20px 52px;
        background:
            linear-gradient(180deg, #f7fbff 0%, #eef6fb 100%);
    }

    .enquiry-card {
        max-width: 660px;
        margin: 0 auto;
        padding: 24px 24px 28px;
        border-radius: 24px;
        background: linear-gradient(180deg, #18bdd0 0%, #1499bb 44%, #0f5b88 100%);
        box-shadow: 0 24px 44px rgba(15, 73, 116, 0.18);
        border: 1px solid rgba(20, 153, 187, 0.18);
        transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
    }

    .enquiry-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 28px 52px rgba(15, 73, 116, 0.24);
        border-color: rgba(255, 255, 255, 0.22);
    }

    .enquiry-card h2 {
        text-align: center;
        color: #fff7eb;
        font-size: clamp(2rem, 4vw, 2.5rem);
        margin-bottom: 14px;
        font-family: "Georgia", "Times New Roman", serif;
    }

    .enquiry-divider {
        width: 132px;
        height: 10px;
        margin: 0 auto 28px;
        border-radius: 999px;
        background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(24, 136, 188, 0.9) 28%, rgba(24, 136, 188, 0.9) 72%, rgba(255, 255, 255, 0));
        position: relative;
    }

    .enquiry-divider::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 22%;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        background: #d8e6f2;
        transform: translate(-50%, -50%);
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
        animation: enquiryDotMove 2.8s ease-in-out infinite alternate;
    }

    @keyframes enquiryDotMove {
        0% {
            left: 22%;
        }

        100% {
            left: 78%;
        }
    }

    .enquiry-form {
        display: grid;
        gap: 14px;
    }

    .enquiry-form label {
        color: #f7fbff;
        font-size: 1rem;
        font-weight: 700;
        letter-spacing: 0.2px;
        transition: color 0.25s ease, transform 0.25s ease;
    }

    .enquiry-form label:hover {
        color: #ffffff;
        transform: translateX(2px);
    }

    .enquiry-form input,
    .enquiry-form select {
        width: 100%;
        height: 54px;
        border: 1px solid rgba(255, 255, 255, 0.55);
        border-radius: 8px;
        padding: 0 18px;
        font-size: 1rem;
        color: #1f2f45;
        background: rgba(255, 255, 255, 0.96);
        outline: none;
        box-shadow: 0 8px 18px rgba(7, 41, 74, 0.08);
        transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .enquiry-form input::placeholder,
    .enquiry-form select {
        color: #6f7684;
    }

    .enquiry-form input:focus,
    .enquiry-form select:focus {
        border-color: rgba(239, 68, 68, 0.92);
        box-shadow: 0 12px 24px rgba(239, 68, 68, 0.18);
        transform: translateY(-1px);
    }

    .enquiry-form input:hover,
    .enquiry-form select:hover {
        border-color: rgba(24, 136, 188, 0.7);
        box-shadow: 0 12px 24px rgba(8, 76, 122, 0.12);
        transform: translateY(-1px);
    }

    .enquiry-submit {
        justify-self: center;
        margin-top: 10px;
        min-width: 138px;
        height: 52px;
        padding: 0 24px;
        border: none;
        border-radius: 16px;
        background: linear-gradient(180deg, #1888bc, #0a4b73);
        color: #fff;
        font-size: 1.05rem;
        font-weight: 600;
        cursor: pointer;
        transition: var(--transition);
        box-shadow: 0 14px 28px rgba(5, 42, 78, 0.34);
    }

    .enquiry-submit:hover {
        transform: translateY(-2px);
        box-shadow: 0 18px 32px rgba(5, 42, 78, 0.42);
    }

    .enquiry-status {
        min-height: 22px;
        margin-top: 2px;
        text-align: center;
        color: #f6fbff;
        font-size: 0.95rem;
        font-weight: 500;
        padding: 10px 12px;
        border-radius: 10px;
    }

    .enquiry-status.is-success {
        background: rgba(15, 157, 88, 0.18);
        color: #d7ffe8;
    }

    .enquiry-status.is-error {
        background: rgba(217, 48, 37, 0.18);
        color: #ffe2de;
    }

    /* Footer */
    .footer {
        background: linear-gradient(135deg, #0a2540 0%, #1a365d 100%);
        color: var(--white);
        padding: 80px 20px 20px;
        position: relative;
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        display: grid;
        grid-template-columns: 1.5fr 1.2fr 1fr;
        gap: 50px;
        padding-bottom: 50px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-box h4 {
        font-size: 20px;
        margin-bottom: 25px;
        color: var(--white);
        position: relative;
        padding-bottom: 10px;
    }

    .footer-box h4::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 3px;
        background: var(--primary);
        border-radius: 2px;
    }

    .footer-box p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.8;
        margin-bottom: 20px;
    }

    .brand-box img {
        height: 55px;
        margin-bottom: 20px;
        filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
    }

    /* SOCIAL LINKS */
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }

    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        color: var(--white);
        border-radius: 50%;
        text-decoration: none;
        transition: var(--transition);
        font-size: 18px;
    }

    .social-links a:hover {
        background: var(--primary);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(24, 136, 188, 0.4);
    }

    /* CONTACT ALIGNMENT */
    .contact-item {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        margin-bottom: 15px;
        color: rgba(255, 255, 255, 0.7);
        font-size: 15px;
        line-height: 1.6;
    }

    .contact-item i {
        color: var(--primary);
        font-size: 18px;
        margin-top: 4px;
    }

    .contact-item a {
        color: inherit;
        text-decoration: none;
        word-break: break-word;
    }

    .contact-item a:hover {
        color: var(--white);
    }

    /* BUTTON */
    .cta-box .footer-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-top: 10px;
        padding: 12px 25px;
        background: var(--primary);
        color: var(--white) !important;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: var(--transition);
    }

    .cta-box .footer-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(24, 136, 188, 0.3);
    }

    /* BOTTOM */
    .footer-bottom {
        text-align: center;
        padding-top: 25px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        font-size: 14px;
        color: rgba(255, 255, 255, 0.6);
    }

    /* RESPONSIVE */
    @media(max-width:992px) {
        .footer-container {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
    }

    @media(max-width:768px) {
        .enquiry-section {
            padding: 34px 16px 44px;
        }

        .enquiry-card {
            max-width: 540px;
            padding: 22px 16px 24px;
            border-radius: 20px;
        }

        .enquiry-card h2 {
            font-size: 2rem;
        }

        .enquiry-divider {
            margin-bottom: 22px;
        }

        .enquiry-form input,
        .enquiry-form select,
        .enquiry-submit {
            height: 50px;
        }

        .footer-container {
            grid-template-columns: 1fr;
            text-align: center;
        }

        .footer-box h4::after {
            left: 50%;
            transform: translateX(-50%);
        }

        .contact-item {
            flex-direction: column;
            align-items: center;
            text-align: center;
            gap: 10px;
        }

        .contact-item i {
            margin-top: 0;
            font-size: 20px;
        }

        .social-links {
            justify-content: center;
        }
    }
