.hero-title {
    font-size: 72px;
    line-height: 1.08;
    font-weight: 700;
    text-align: center;
    color: #111;
    margin-top: 35px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.hero-description {

    max-width: 760px;

    margin: 35px auto 0;

    text-align: center;

    color: #666;

    font-size: 22px;

    line-height: 1.8;

}

.hero-badge {

    background: #517E1D;

    color: #fff;

    padding: 14px 28px;

    border-radius: 8px;

    font-size: 14px;

    font-weight: 600;

    letter-spacing: 4px;

}

/* ================= ORBIT SECTION ================= */

#orbit-section {
    width: 100vw;
    height: 520px;
    overflow: hidden;
    position: relative;
    margin-top: 90px;
    -webkit-mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
    mask-image: linear-gradient(to right,
            transparent 0%,
            black 12%,
            black 88%,
            transparent 100%);
}

#marquee {

    position: absolute;

    inset: 0;

}

.marquee-card {
    position: absolute;
    width: 260px;
    height: 340px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, .15), 0 8px 16px rgba(0, 0, 0, .08);
    will-change: transform, left, opacity;
    transition: box-shadow .35s;

    background: #517E1D;

    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.35),
        0 15px 30px rgba(0, 0, 0, 0.25),
        0 5px 10px rgba(0, 0, 0, 0.15);

    /* ✅ Patli border/frame mate padding ghatadyu */
    padding: 4px;
}

.marquee-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    /* ✅ padding ghatyu etle radius vadharyu, jethi frame proportion sachu lage */
}

.hero-title .word {
    display: inline-block;
    white-space: nowrap;
}

.hero-title .char {
    display: inline-block;
}

@media (max-width:768px) {

    #hero {
        min-height: auto;
        padding: 105px 0 45px;
    }

    #hero>.relative {
        padding-inline: 18px;
    }

    /* Badge */

    #hero .inline-block {
        font-size: 10px;
        letter-spacing: 2px;
        padding: 10px 18px;
    }

    /* Heading */

    .hero-title {
        margin-top: 22px;
        font-size: clamp(32px, 9vw, 42px);
        line-height: 1.18;
    }

    /* Paragraph */

    #hero p:first-of-type {
        margin-top: 18px;
        font-size: 15px;
        line-height: 1.8;
        padding: 0;
    }

    #hero p:last-of-type {
        margin-top: 22px;
        font-size: 14px;
        line-height: 1.9;
        padding: 0;
    }

    /* Buttons */

    #hero .flex.flex-col {
        margin-top: 30px;
        gap: 14px;
        width: 100%;
    }

    #hero .flex.flex-col a {
        width: 100%;
        max-width: 340px;
        text-align: center;
        padding: 15px;
    }

    /* Orbit */

    #orbit-section {
        height: 300px;
        margin-top: 42px;
    }

    .marquee-card {
        width: 155px;
        height: 210px;
        border-radius: 18px;
        padding: 3px;
    }

    .marquee-card img {
        border-radius: 15px;
    }
}

@media (max-width:480px) {

    .hero-title {
        font-size: 34px;
        line-height: 1.18;
    }

    #hero p:first-of-type {
        font-size: 14px !important;
        line-height: 1.8;
    }

    #hero p:last-of-type {
        font-size: 13px !important;
        line-height: 1.8;
    }

    #hero .inline-block {
        font-size: 9px;
        letter-spacing: 2px;
        padding: 9px 16px;
    }

    #hero .flex.flex-col a {
        font-size: 15px;
        padding: 14px 20px;
    }
}