.underline-danger {
    text-decoration: underline;
    text-decoration-color: var(--bs-danger);
    /* red underline only */
    color: inherit;
    /* keep text color normal */
}

/* ===== Hero Wrapper ===== */
.hero-content {
    position: relative;
    text-align: center;
}

/* ===== Badge: #1 Popular Video Editing Agency ===== */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #000;
}

.hero-badge .badge-icon {
    width: 24px;
    height: 22px;
    background: #FF4F3F;
    border: 3px solid #051A2F;
    display: inline-block;
}

/* ===== Main Heading Line 1 ===== */
.hero-title {
    font-family: 'Fustat', sans-serif;
    font-weight: 700;
    font-size: 65px;
    line-height: 100%;
    letter-spacing: -4px;
    color: #181818;
    margin: 0;
}

/* ===== Main Heading Line 2 (Italic Highlight) ===== */
.hero-title-accent {
    font-family: 'Instrument Serif', serif;
    font-style: italic;
    font-weight: 400;
    font-size: 63px;
    line-height: 105%;
    letter-spacing: -3px;
    color: #FF0048;
    margin: 0;
}

/* ===== Description Text ===== */
.hero-description {
    max-width: 500px;
    margin: 5px auto 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 170%;
    color: #303030;
}


/*Left */
/* Card */
.money-earning-left {
    margin-top: 155px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 15px;
    padding: 16px 18px;

    width: 260px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    font-family: 'Inter', sans-serif;
}

/* Icon */
.money-earning-left .icon-box {
    width: 46px;
    height: 46px;
    background: #D9FF48;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 22px;
    flex-shrink: 0;
}

/* Content */
.money-earning-left .card-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.money-earning-left .title {
    font-size: 13px;
    color: #9c9cab;
    margin-bottom: 4px;
}

.money-earning-left h4 {
    font-size: 22px;
    font-weight: 700;
    color: #000000;
    margin: 0;
}

.money-earning-left .growth {
    font-size: 11px;
    color: #6b7280;
    margin-top: 4px;
}

/*Right */
.money-earning-right {
    margin-top: -25px;
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border-radius: 15px;
    padding: 13px;
    width: 122px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
}

/*Right  bottom*/
.money-earning-right-bottom {
    margin-top: -75px;
    display: flex;
    text-align: left;
    gap: 14px;
    padding: 13px;
    width: 200px;
    font-family: 'MD Sans', sans-serif;
    font-size: 14px;
}

.money-earning-right-bottom .card-content {
    line-height: 1.4;
    font-weight: 500;
}

/*Video thumb */
.video-thumb {
    margin-top: -60px;
    display: flex;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.video-thumb img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.18);
}

/* ===== RESPONSIVE MEDIA QUERIES ===== */

/* ===== TABLET DEVICES (≤992px) ===== */
@media (max-width: 992px) {
    .container {
        padding: 10px;
    }

    /* Hero text */
    .hero-title {
        font-size: 45px;
        letter-spacing: -3px;
    }

    .hero-title-accent {
        font-size: 40px;
        letter-spacing: -2px;
    }

    .hero-description {
        font-size: 16px;
        max-width: 100%;
        padding: 0 10px;
    }

    /* Cards – CENTERED, NO WIDTH HACK */
    .money-earning-left {
        padding: 2000px;

    }

    .money-earning-left,
    .money-earning-right {
        width: 100%;
        max-width: 260px;
        margin: 12px auto;
        padding: 14px;
    }

    .money-earning-right-bottom {
        width: 100%;
        max-width: 200px;
        margin: 12px auto 0;
        text-align: center;
    }

    /* Right stack alignment */
    .right-stack {
        align-items: center;
        gap: 16px;
    }

    /* Badge */
    .hero-badge {
        font-size: 16px;
        gap: 6px;
    }
}




/* ===== MOBILE DEVICES (≤768px) ===== */
@media (max-width: 768px) {

    .container {
        padding: 10px;
    }

    /* Stack Bootstrap columns naturally */
    .hero-content .row {
        row-gap: 20px;
    }

    /* Hero text */
    .hero-title {
        font-size: 32px;
        line-height: 1.1;
        letter-spacing: -1px;
    }

    .hero-title-accent {
        font-size: 30px;
        line-height: 1.1;
    }

    .hero-description {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 10px;
    }

    /* Cards – FULL WIDTH & CENTERED */
    .money-earning-left {
        width: 100%;
        max-width: 280px;
        margin-top: -50px;
        display: flex;
        flex-direction: row;
        /* horizontal layout */
        align-items: center;
        /* vertical alignment */
        text-align: left;
        /* content text on left alignment */
        padding: 18px 16px;
        gap: 12px;
        /* space between icon and content */
    }

    /* ICON */
    .money-earning-left .icon-box {
        width: 48px;
        height: 48px;
        background: #D9FF48;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        /* center icon inside circle */
        /* float removed */
    }

    /* CONTENT */
    .money-earning-left .content {
        flex: 1;
        /* take remaining space */
    }


    /* TEXT STACK */
    .money-earning-left .card-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .money-earning-left .card-content span {
        font-size: 12px;
        color: #9c9cab;
    }

    .money-earning-left h4 {
        font-size: 22px;
        font-weight: 700;
        margin: 2px 0;
    }

    .money-earning-left .growth {
        font-size: 11px;
        color: #6b7280;
    }

    .money-earning-right {
        width: 55%;
        max-width: 280px;
        margin: 0 auto;
        flex-direction: column;
        align-items: center;
        text-align: center;
        float: left;
    }

    /* Right image stays WITH right card */
    .money-earning-right-bottom {
        width: 100%;
        text-align: center;
        float: right;
        margin-top: -150px;
        margin-right: -40px;
    }

    .money-earning-right-bottom img {
        max-width: 120px;
        height: auto;
    }

    /* Card text */
    .money-earning-left h4,
    .money-earning-right h4 {
        font-size: 18px;
    }

    .money-earning-left .growth,
    .money-earning-right .growth {
        font-size: 12px;
    }

    /* Badge */
    .hero-badge {
        font-size: 14px;
        gap: 5px;
        margin-bottom: 8px;
    }

    /* Right stack */
    .right-stack {
        align-items: center;
        gap: 14px;
    }

    /* Aboutus box */
    #aboutus-box {
        margin: 10px;
        display: flex;
        flex-wrap: nowrap;
        /* stay in one row */
    }

    #aboutus-box .stats-box {
        flex: 0 0 33.333%;
        /* 3 items in one row */
        max-width: 33.333%;
        text-align: center;
    }

    /*top logo*/
    .logo img {
        max-width: 100%;
        height: auto;
        display: block;
    }


    /*bottom logo*/
     .copyright {
        text-align: center
    }

    .copyright .social-links {
        justify-content: center !important;
        margin-top: 10px;
    }
    .copyright img {
        max-width: 100%;
        height: auto;
        display: block;
        margin: 0 auto;
    }

    /*Plan price*/
    /* Smaller heading */
    .section-title h2 {
        font-size: 24px;
    }

    .section-title i {
        font-size: 24px !important;
    }

    /* Pricing numbers smaller */
    .course-content .fs-2 {
        font-size: 22px !important;
    }

    /* Card padding tighter */
    .course-card {
        padding: 8px;
    }

    /* Button full width */
    .course-content a.btn {
        width: 100%;
        text-align: center;
    }

    /* Toggle & button stack nicely */
    .section-title .d-flex {
        flex-direction: column;
    }

    .service-card {
        margin-top: 20px;
    }

    .service1 {
        margin-top: 40px;
    }


    /*FAQ*/
    .faq {
        margin-top: 10px;
    }

    .truest-icon img {
        margin-top: 40px;
    }

}