* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background-color: #fefcf7;
            color: #1e293b;
            scroll-behavior: smooth;
            line-height: 1.5;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* buttons & utility */
        .btn-primary {
            background: linear-gradient(105deg, #ff7a2f 0%, #ff4d2e 100%);
            color: white;
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            font-size: 1rem;
            border-radius: 40px;
            cursor: pointer;
            transition: all 0.25s ease;
            box-shadow: 0 8px 18px rgba(255, 77, 46, 0.25);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            background: linear-gradient(105deg, #ff6320, #ff3a18);
            box-shadow: 0 14px 26px rgba(255, 77, 46, 0.35);
        }

        .btn-outline-light {
            background: transparent;
            border: 2px solid white;
            color: white;
            padding: 10px 24px;
            border-radius: 40px;
            font-weight: 600;
            transition: 0.2s;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            text-decoration: none;
        }

        .btn-outline-light:hover {
            background: white;
            color: #ff4d2e;
            border-color: white;
        }

        .btn-wa {
            background-color: #25D366;
            color: white;
            border: none;
            padding: 12px 28px;
            font-weight: 600;
            border-radius: 40px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: 0.2s;
            text-decoration: none;
        }

        .btn-wa:hover {
            background-color: #1da85c;
            transform: translateY(-2px);
        }

        /* header nav */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 20px;
        }

        .logo {
            font-weight: 800;
            font-size: 1.7rem;
            background: linear-gradient(135deg, #ff7a2f, #e03a1a);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            letter-spacing: -0.3px;
        }

        .nav-buttons {
            display: flex;
            gap: 16px;
        }

        /* hero */
        .hero {
            padding: 40px 0 60px 0;
        }

        .hero-grid {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
        }

        .hero-content {
            flex: 1.2;
        }

        .hero-badge {
            background: #ffe5d9;
            color: #c2410c;
            display: inline-block;
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.8rem;
            font-weight: 600;
            margin-bottom: 20px;
        }

        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .hero h1 span {
            background: linear-gradient(120deg, #ff7a2f, #ff4d2e);
            background-clip: text;
            -webkit-background-clip: text;
            color: transparent;
        }

        .subhead {
            font-size: 1.2rem;
            color: #334155;
            margin-bottom: 28px;
            max-width: 90%;
        }

        .cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 32px;
        }

        .trust-line {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            color: #2c3e4e;
        }

        .trust-line i {
            color: #ff7a2f;
            margin-right: 6px;
        }

        .hero-image {
            flex: 0.8;
            background: linear-gradient(145deg, #fff3e8, white);
            padding: 20px;
            border-radius: 48px;
            box-shadow: 0 30px 40px -20px rgba(0,0,0,0.1);
            text-align: center;
        }

        .hero-image i {
            font-size: 8rem;
            color: #ff7a2f;
            opacity: 0.9;
        }

        /* problem section */
        .problem-section {
            background-color: #034363;
            border-radius: 48px;
            padding: 48px 32px;
            margin: 60px 0;
            text-align: center;
        }

        .section-title {
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 16px;
            color: rgb(0, 0, 0);
        }

        .problem-section .section-title {
        color: #ffffff;
        }

        .problem-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 28px;
            margin: 30px 0 20px;
        }

        .problem-card {
            background: white;
            border-radius: 32px;
            padding: 16px 28px;
            box-shadow: 0 8px 16px rgba(0,0,0,0.02);
            font-weight: 600;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .solution-highlight {
            background: #ffedd5;
            display: inline-block;
            padding: 12px 28px;
            border-radius: 60px;
            font-weight: 700;
            margin-top: 20px;
            color: rgb(0, 0, 0);
        }

        /* What we offer cards */
        .offer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
            margin: 48px 0;
        }

        .offer-card {
            background: white;
            border-radius: 32px;
            padding: 28px 20px;
            box-shadow: 0 12px 28px -8px rgba(0,0,0,0.05);
            transition: all 0.2s;
            border: 1px solid #ffeee5;
        }

        .offer-card i {
            font-size: 2.5rem;
            color: #ff7a2f;
            margin-bottom: 18px;
        }

        .offer-card h3 {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        /* why choose us */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            background: #ffffff;
            border-radius: 48px;
            padding: 40px 32px;
            margin: 40px 0;
            box-shadow: 0 12px 30px rgba(0,0,0,0.03);
            border: 1px solid #feefe6;
        }

        .why-item {
            text-align: center;
        }

        .why-item i {
            font-size: 2.2rem;
            background: #ffece2;
            padding: 14px;
            border-radius: 60px;
            color: #e65c1e;
            margin-bottom: 15px;
        }

        /* courses */
        .courses-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            justify-content: center;
            margin: 40px 0;
        }

        .course-badge {
            background: #1e293b;
            color: white;
            padding: 12px 32px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1rem;
            transition: 0.1s;
        }

        /* Testimonials Slider */
        .testimonial-slider {
            background: #fff7f0;
            border-radius: 48px;
            padding: 48px 24px;
            margin: 50px 0;
            text-align: center;
        }

        .testimonial-card {
            max-width: 550px;
            margin: 0 auto;
            background: white;
            border-radius: 40px;
            padding: 32px 28px;
            box-shadow: 0 15px 30px rgba(0,0,0,0.05);
        }

        .testimonial-text {
            font-size: 1.2rem;
            font-style: italic;
            margin-bottom: 18px;
        }

        .testimonial-author {
            font-weight: 700;
            color: #ff7a2f;
        }

        .slider-controls {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }

        .slider-btn {
            background: #ffd9c9;
            border: none;
            padding: 10px 18px;
            border-radius: 50px;
            cursor: pointer;
            font-size: 1.2rem;
            transition: 0.1s;
        }

        /* strong CTA */
        .strong-cta {
            background: linear-gradient(115deg, #111827 0%, #1f2a3e 100%);
            border-radius: 48px;
            padding: 60px 40px;
            text-align: center;
            color: white;
            margin: 60px 0;
        }

        .strong-cta h2 {
            font-size: 2.2rem;
            font-weight: 800;
        }

        .limited {
            background: #ff4d2e;
            display: inline-block;
            padding: 5px 16px;
            border-radius: 40px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        /* contact */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            background: white;
            border-radius: 48px;
            padding: 48px 32px;
            gap: 48px;
            justify-content: space-between;
            margin-bottom: 60px;
            box-shadow: 0 12px 25px rgba(0,0,0,0.03);
        }

        .contact-details i {
            width: 32px;
            color: #ff7a2f;
        }

        .footer {
            text-align: center;
            border-top: 1px solid #ffe4d6;
            padding: 32px;
            color: #4b5563;
            font-size: 0.8rem;
        }

        @media (max-width: 780px) {
            .hero h1 {
                font-size: 2.3rem;
            }
            .subhead {
                max-width: 100%;
            }
            .container {
                padding: 0 20px;
            }
            .nav-buttons .btn-primary, .nav-buttons .btn-wa {
                padding: 8px 16px;
                font-size: 0.8rem;
            }
        }

        button, a {
            cursor: pointer;
        }
        .animate-pop {
            transition: all 0.2s;
        }

.video-testimonials {
    background: linear-gradient(120deg, #1e293b, #0f172a);
    padding: 60px 0;
    border-radius: 48px;
    margin: 60px 0;
    color: white;
}

.video-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

/* LEFT */
.video-heading {
    flex: 1;
}

.video-heading h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.video-heading span {
    background: linear-gradient(120deg, #ff7a2f, #ff4d2e);
    -webkit-background-clip: text;
    color: transparent;
}

/* SLIDER */
.video-slider {
    flex: 1.2;
    overflow: hidden;
    position: relative;
}

.video-track {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
}

/* CARD SIZE FIX */
.video-card {
    min-width: 250px;
    max-width: 250px;
    height: 320px;
    border-radius: 28px;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4d2e;
    color: white;
    padding: 14px;
    border-radius: 50%;
}

/* DOTS */
.video-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    width: 100%;
}

.video-dots span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.video-dots span.active {
    background: #ff4d2e;
    transform: scale(1.4);
}

/* POPUP */
.video-popup {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.video-popup-content {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.video-popup iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

#closeVideo {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.video-heading span {
    background: linear-gradient(120deg, #ff7a2f, #ff4d2e);
    -webkit-background-clip: text;
    color: transparent;
}

.video-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    will-change: transform;
}

.video-slider {
    overflow: hidden;
}

.video-card {
    min-width: 260px;
    height: 420px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
}

.video-card iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 28px;
}

.video-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ff4d2e;
    color: white;
    padding: 14px;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Popup */
.video-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

.video-popup-content {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.video-popup iframe {
    width: 100%;
    height: 400px;
    border-radius: 16px;
}

#closeVideo {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.video-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.video-dots span {
    width: 8px;
    height: 8px;
    background: #94a3b8;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s;
}

.video-dots span.active {
    background: #ff4d2e;
    transform: scale(1.4);
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 55px;
    height: 55px;
    background: #ff4d2e;
    color: white;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 2;
}

/* 🔥 RIPPLE EFFECT */
.play-btn::before,
.play-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(255, 77, 46, 0.6);
    z-index: -1;

    animation: ripple 1.6s infinite;
}

.play-btn::after {
    animation-delay: 0.6s;
}

/* KEYFRAMES */
@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    70% {
        transform: scale(1.8);
        opacity: 0.2;
    }
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.image-youtube {
    width: 100%;
    height: auto;
    border-radius: 25px;
    display: block;
}
.faq-section {
    background: #ffefe0;
    padding: 50px 20px;
    border-radius: 40px;
    margin: 60px 0;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 18px 20px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 20px;
    font-size: 1.2rem;
}

.faq-item.active .faq-question::after {
    content: "-";
}

.faq-answer {
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding: 0 20px;
    transition: height 0.35s ease, opacity 0.25s ease;
}

.faq-item.active .faq-answer {
    opacity: 1;
    padding: 15px 20px 20px;
}
.btn-wa {
    display: inline-block;
    animation: rubber 1.5s infinite;
}

@keyframes rubber {
    0% { transform: scale(1); }
    30% { transform: scale(1.1, 0.9); }
    40% { transform: scale(0.9, 1.1); }
    50% { transform: scale(1.05, 0.95); }
    65% { transform: scale(0.98, 1.02); }
    75% { transform: scale(1); }
    100% { transform: scale(1); }
}

.topboarder{
    font-size: 0.75rem;
    font-weight: bolder;
    color: #fff;
    padding: 1.2rem 0;
    background-color: #034363;
    text-align: center;
    font-size: 20px;
}
.site-logo, .logo img {
    height: 70px;   /* adjust as needed */
    width: auto;
}

.links {
  display: flex;
  gap: 10px;
  text-align: center;
  justify-content: center;
}

.links a{
    text-decoration: none;
}