    .page-body-style * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Montserrat', sans-serif;
    }

    .page-body-style {
        background-color: #3d0000;
        color: white;
    }

    .main-container {
        max-width: 900px;
        margin: 0 auto;
        padding: 20px;
        background-color: #3d0000;
        text-align: center;
    }

    .header-orange {
        background-color: #fffb00;
        color: #000;
        padding: 15px 10px;
        font-weight: 700;
        font-size: 20px;
        border-radius: 5px;
    }

    .sub-header {
        color: #800000;
        background-color: white;
        padding: 10px;
        margin: 10px 0;
        font-weight: 700;
        font-size: 25px;
    }

    .main-title {
        font-size: 24px;
        font-weight: 700;
        margin: 15px 0 5px 0;
    }

    .subtitle {
        color: #ffb700;
        font-size: 16px;
        margin-bottom: 20px;
    }

    .programs {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 20px;
    }

    .program {
        width: 40%;
        margin-bottom: 20px;
    }

    .program h3 {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 5px;
        color: #fff;
    }

    .program p {
        color: #ffb700;
        font-size: 18px;
    }

    .image-section {
        margin-bottom: 20px;
    }

    .image-section img {
        width: 100%;
        max-width: 850px;
        border: 2px solid white;
    }

    .register {
        background: linear-gradient(90deg, #b38f00, #ffd700);
        color: #800000;
        font-weight: 700;
        padding: 15px;
        margin: 20px 0;
        font-size: 25px;
        border-radius: 5px;
    }
    
    .register span {
        font-weight: 600;
        animation: blinkColors 1s infinite;
    }
    
    @keyframes blinkColors {
        0% {
            color: #0d6efd; /* Blue */
        }
        50% {
            color: #ff3b3b; /* Red */
        }
        100% {
            color: #0d6efd; /* Back to Blue */
        }
    }
    
    .register-cta {
        display: flex;
        justify-content: center;
        gap: 25px;
        padding: 25px;
        background: linear-gradient(90deg, #5c0000, #8b0000);
        border-radius: 10px;
        flex-wrap: wrap;
    }
    
    /* Button */
    .cta-btn {
        position: relative;
        background: #f5c400;
        color: #7a0000;
        font-weight: 600;
        padding: 14px 55px 14px 25px;
        border-radius: 6px;
        text-decoration: none;
        font-size: 16px;
        display: flex;
        align-items: center;
        transition: all 0.3s ease;
    }
    
    .cta-btn:hover {
        background: #ffd633;
        transform: translateY(-2px);
    }
    
    /* Icon Circle */
    .cta-btn .icon {
        position: absolute;
        right: -18px;
        width: 46px;
        height: 46px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: #fff;
    }
    
    /* Icon Colors */
    .icon.youtube {
        background: #ff0000;
    }
    
    .icon.download {
        background: #d40000;
    }
    
    .icon.whatsapp {
        background: #25d366;
    }
    
    /* Responsive */
    @media (max-width: 768px) {
        .register-cta {
            flex-direction: column;
            align-items: center;
        }
    
        .cta-btn {
            width: 100%;
            justify-content: center;
            padding-right: 45px;
        }
    }

    .register-buttons {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin: 10px 0;
    }

    .register-buttons button {
        padding: 10px 20px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        border-radius: 3px;
    }

    .btn-yellow {
        background-color: #ffb700;
        color: #800000;
    }

    .countdown-section {
        background-color: #ff9a1f;
        color: #3d0000;
        padding: 15px;
        font-weight: 700;
        margin-top: 20px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        border-radius: 5px;
    }

    .countdown {
        display: flex;
        gap: 10px;
        font-family: 'Poppins', sans-serif;
    }

    .countdown div {
        background-color: #3d0000;
        color: white;
        padding: 2px;
        border-radius: 3px;
        min-width: 40px;
    }

    .courses-container {
        max-width: 900px;
        margin: 20px auto;
        padding: 20px;
        text-align: center;
    }

    .courses-container h1 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 30px;
        color: #fff;
        background-color: #2665b0;
        padding: 15px;
    }

    .grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 35px 25px;
    }

    .card {
        text-align: center;
    }

    .card-title {
        font-size: 20px;
        font-weight: 700;
        color: #ffb700;
        margin-bottom: 5px;
    }

    .card-subtitle {
        font-size: 17px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 15px;
    }

    .video-box img {
        width: 100%;
        max-width: 240px;
        display: block;
        margin: 0 auto 15px auto;
    }

    .batch-row {
        justify-content: center;
        gap: 10px;
        margin-bottom: 10px;
    }

    .batch {
        background-color: #d72626;
        color: #ffffff;
        padding: 6px 12px;
        border-radius: 4px;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        font-weight: 600;
        position: relative;
        margin: 10px;
    }

    .arrow-left::before {
        content: '';
        position: absolute;
        left: -12px;
        top: 50%;
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-right: 12px solid #d72626;
        transform: translateY(-50%);
    }

    .arrow-right::after {
        content: '';
        position: absolute;
        right: -12px;
        top: 50%;
        width: 0;
        height: 0;
        border-top: 7px solid transparent;
        border-bottom: 7px solid transparent;
        border-left: 12px solid #d72626;
        transform: translateY(-50%);
    }

    .button-row {
        display: flex;
        justify-content: center;
        gap: 12px;
        margin-top: 5px;
    }

    .btn-about {
        background-color: #cc7a00;
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        color: #ffffff;
    }

    .btn-register {
        background-color: #00a12a;
        padding: 8px 20px;
        border-radius: 20px;
        font-weight: 700;
        border: none;
        cursor: pointer;
        color: #ffffff;
    }

    .offer-section {
        position: relative;
        width: 100%;
        margin: 40px auto;
    }

    .offer-badge {
        position: absolute;
        top: -45px;
        left: 50%;
        transform: translateX(-50%);
        width: 150px;
        /* match size as screenshot */
        z-index: 10;
    }

    .offer-bar {
        background: #ff008c;
        color: white;
        text-align: center;
        padding: 30px 0;
        font-size: 24px;
        font-weight: 700;
        letter-spacing: 1px;
        border-radius: 2px;
    }

    .benefits-section {
        background: #4d0000;
        /* dark maroon */
        padding: 10px 0 80px 0;
        color: white;
        text-align: center;
    }

    .benefits-section h1 {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 40px;
        letter-spacing: 1px;
        color: #fff;
        background-color: #2665b0;
        padding: 15px;
        MAX-WIDTH: 900px;
        margin: 0 auto 40px auto;
    }

    .benefits-grid {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .benefit-card {
        width: 220px;
        text-align: center;
        background-color: #c7ab84;
        padding: 8px;
    }

    .benefit-card img {
        width: 100%;
        border-radius: 4px;
    }

    .benefit-card p {
        font-size: 14px;
        color: #f2f2f2;
        font-weight: 600;
        margin-top: 10px;
        line-height: 1.3;
    }

    .benefits-list {
        width: 70%;
        margin: 0 auto;
        text-align: left;
        font-size: 16px;
        line-height: 1.6;
    }

    .benefits-list li {
        margin-bottom: 8px;
    }

    .features-section {
        background: #4d0000;
        /* dark maroon */
        padding: 20px 0 90px;
        text-align: center;
        color: white;
    }

    .features-section h1 {
        font-size: 38px;
        font-weight: 800;
        letter-spacing: 1px;
        background-color: #2665b0;
        color: #fff;
        max-width: 900px;
        margin: 0 auto 10px auto;
        padding: 10px;
    }

    .features-section h2 {
        font-size: 26px;
        font-weight: 700;
        color: #ffcc33;
        margin-bottom: 50px;
    }

    .features-grid {
        display: flex;
        justify-content: center;
        gap: 40px;
        margin-bottom: 50px;
        flex-wrap: wrap;
    }

    .feature-card {
        width: 260px;
        padding: 0;
        border: 3px solid #b37b00;
        text-align: center;
    }

    .feature-card img {
        width: 100%;
    }

    .feature-card p {
        font-size: 15px;
        font-weight: 700;
        color: #ff6666;
        line-height: 1.4;
    }

    .features-list {
        width: 70%;
        margin: 0 auto;
        text-align: left;
        font-size: 16px;
        line-height: 1.7;
        color: #ffffff;
    }

    .features-list li {
        margin-bottom: 10px;
    }

    .knowledge-bar {
        background: #ff006e;
        /* same bright pink */
        padding: 25px 0;
        text-align: center;
        font-size: 26px;
        font-weight: 700;
        color: #ffffff;
        line-height: 1.4;
        width: 100%;
    }

    @media (max-width: 768px) {
        .main-container {
            padding: 15px;
            margin: 0 auto;
        }

        .header-orange {
            font-size: 16px;
            padding: 12px 8px;
        }

        .sub-header {
            padding: 8px;
            font-size: 14px;
        }

        .main-title {
            font-size: 20px;
        }

        .subtitle {
            font-size: 14px;
        }

        .programs {
            flex-direction: column;
            align-items: center;
        }

        .program {
            width: 80%;
        }

        .program h3 {
            font-size: 18px;
        }

        .program p {
            font-size: 13px;
        }

        .register {
            padding: 12px;
            font-size: 14px;
        }

        .register-buttons {
            flex-direction: column;
            gap: 15px;
        }

        .register-buttons button {
            padding: 12px 18px;
            font-size: 14px;
        }

        .countdown-section {
            padding: 12px;
            flex-direction: column;
            text-align: center;
            gap: 15px;
        }

        .countdown {
            justify-content: center;
        }

        .timer-item div {
            font-size: 16px;
        }

        .timer-item span {
            font-size: 11px;
        }

        .courses-container {
            padding: 15px;
        }

        .courses-container h1 {
            font-size: 24px;
        }

        .grid {
            grid-template-columns: 1fr;
            gap: 20px 15px;
        }

        .card-title {
            font-size: 16px;
        }

        .card-subtitle {
            font-size: 14px;
        }

        .video-box img {
            max-width: 200px;
        }

        .batch {
            font-size: 11px;
            padding: 4px 8px;
        }

        .button-row {
            gap: 8px;
        }

        .btn-about,
        .btn-register {
            padding: 6px 15px;
            font-size: 12px;
        }
    }

    @media (max-width: 480px) {
        .main-container {
            padding: 10px;
            margin: 0 auto;
        }

        .header-orange {
            font-size: 14px;
            padding: 10px 5px;
        }

        .sub-header {
            padding: 8px;
            font-size: 14px;
        }

        .main-title {
            font-size: 18px;
        }

        .subtitle {
            font-size: 14px;
        }

        .program {
            width: 90%;
        }

        .program h3 {
            font-size: 16px;
        }

        .program p {
            font-size: 12px;
        }

        .register {
            padding: 10px;
            font-size: 14px;
        }

        .register-buttons {
            flex-direction: column;
            gap: 10px;
        }

        .register-buttons button {
            padding: 12px 15px;
            font-size: 14px;
        }

        .countdown-section {
            padding: 10px;
            flex-direction: column;
            text-align: center;
            gap: 10px;
        }

        .countdown {
            justify-content: center;
        }
    }
    
    
    /* ===============================
   FIXED COUNTDOWN BOTTOM BAR
================================ */

.fixed-countdown-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #fffb00;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 20px;
    z-index: 9999;
    box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.3);
    font-family: 'Poppins', sans-serif;
}

/* Left Text */
.left-text {
    color: #7a0000;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

/* Countdown */
.countdown {
    display: flex;
    gap: 12px;
}

/* Timer Boxes */
.timer-item {
    text-align: center;
}

.timer-item div {
    background: #222;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 3px;
    border-radius: 4px;
    min-width: 45px;
    letter-spacing: 1px;
}

.timer-item span {
    display: block;
    font-size: 11px;
    font-weight: 600;
    margin-top: 4px;
    color: #fff;
}

/* Enroll Button */
.enroll-btn {
    background: transparent;
    color: #7a0000;
    font-size: 20px;
    font-weight: 800;
    text-align: right;
    text-decoration: none;
    line-height: 1.2;
}

.enroll-btn span {
    font-size: 22px;
    color: #b30000;
}

/* Hover */
.enroll-btn:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 992px) {
    .fixed-countdown-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .enroll-btn {
        text-align: center;
    }
}

/* Space for fixed bar */
body {
    padding-bottom: 84px;
}


.enroll-btn {
    animation: enrollBlink 1.2s infinite;
}

@keyframes enrollBlink {
    0% {
        color: #7a0000;        /* Dark Red */
    }
    50% {
        color: #ff0000;        /* Bright Red */
    }
    100% {
        color: #7a0000;
    }
}

/* Blink amount separately (stronger effect) */
.enroll-btn span {
    animation: priceBlink 1s infinite;
    font-weight: 900;
}

@keyframes priceBlink {
    0% {
        color: #b30000;        /* Dark Red */
    }
    50% {
        color: #ffcc00;        /* Yellow */
    }
    100% {
        color: #b30000;
    }
}


/* ===============================
   FEEDBACK VIDEO SECTION
================================ */

.feedback-section {
    background: #5a0000;
    padding: 30px 0 80px;
    text-align: center;
}

/* Title Bar */
.feedback-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: #2665b0;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 35px auto;
    padding: 10px;
}

/* Video Grid */
.video-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

/* Video Card */
.video-card {
    width: 320px;
    height: 180px;
    background: #5a0000;
    border: 6px solid #ffa500;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.video-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

/* YouTube Icon */
.video-card i {
    font-size: 90px;
    color: #ff0000;
}

/* Responsive */
@media (max-width: 992px) {
    .video-card {
        width: 280px;
        height: 160px;
    }
}

@media (max-width: 576px) {
    .feedback-title {
        font-size: 26px;
        padding: 12px 30px;
    }
}


/* ===============================
   ABOUT US SECTION
================================ */

.about-section {
    background: #5a0000;
    padding: 30px;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

/* Main Title */
.about-main-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: #2665b0;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 35px auto;
    padding: 10px;
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

/* Sub Title */
.about-sub-title {
    display: inline-block;
    padding: 14px 45px;
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(90deg, #2c2c6c, #0d6efd, #2c2c6c);
    margin-bottom: 30px;
}

/* Image Box */
.about-image-box {
    border: 6px solid #ffa500;
    padding: 10px;
    background: #5a0000;
}

.about-image-box img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* Responsive */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image-box img {
        height: 260px;
    }

    .about-main-title {
        font-size: 28px;
        padding: 14px 40px;
    }

    .about-sub-title {
        font-size: 20px;
        padding: 12px 30px;
    }
}

/* ===============================
   FAQ SECTION
================================ */

.faq-section {
    background: #5a0000;
    padding: 60px 0 80px;
    font-family: 'Poppins', sans-serif;
}

/* Title */
.faq-main-title {
    font-size: 38px;
    font-weight: 800;
    letter-spacing: 1px;
    background-color: #2665b0;
    color: #fff;
    max-width: 900px;
    margin: 0 auto 35px auto;
    padding: 10px;
    text-align: center;
}

/* Wrapper */
.faq-wrapper {
    max-width: 900px;
    margin: auto;
}

/* Item */
.faq-item {
    border: 5px solid #ffa500;
    margin-bottom: 20px;
    background: #5a0000;
}

/* Question */
.faq-question {
    padding: 2px 10px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Plus Icon */
.faq-question span {
    font-size: 26px;
    font-weight: 700;
    transition: transform 0.3s ease;
}

/* Answer */
.faq-answer {
    display: none;
    padding: 20px 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #ffdede;
    border-top: 2px solid rgba(255,255,255,0.2);
}

/* Active */
.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-main-title {
        font-size: 26px;
        padding: 14px 35px;
    }

    .faq-question {
        font-size: 16px;
    }
}

.courses-container .card {
    padding: 10px 5px;
    border: 3px solid #fff;
}

.youtube-frame {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 ratio */
    height: 0;
}

.youtube-frame iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-box iframe {
    width: 100%;
    height: 160px;
}