.hero-main-section {
    position: relative;
}

.number-sectopn-banner {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -98px;
}

.company-client-main-ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 42px;
    background-color: #fff;
    width: 84%;
    margin: auto;
    padding: 29px 9px;
    border-radius: 11px;
}

.small-space {
    height: 100px;
}

.service-new-section {
    background-image: url("../assets/top-head-bg.png");
    background-repeat: repeat;
    background-size: 16px 16px;
    padding: 50px 0 0 0;
    background-color: #fff;
}

.new-service-heading h4 {
    font-size: 49px;
    text-align: center;
    width: 65%;
    margin: auto;
}

.home-service-content-box {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #dfdfdf;
    border-radius: 10px;
}


/* =========================
   WRAPPER
========================= */
.wrapper {
    display: flex;
    align-items: stretch;
}

/* =========================
   LEFT SIDE (IMAGE AREA)
========================= */
.left {
    width: 50%;
    height: clamp(600px, 90vh, 900px);
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* IMAGE ANIMATION */
.image-box {
    position: absolute;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 0.6s ease, transform 0.8s ease;
}

.image-box img {
    width: 100%;
    max-width: 480px;
}

.image-box.active {
    opacity: 1;
    transform: scale(1);
}

/* =========================
   RIGHT SIDE (CONTENT)
========================= */
.right {
    width: 50%;
}

/* Each scroll section */
.img1 {
   min-height: clamp(600px, 85vh, 850px);
   display: flex;
   flex-direction: column;
   justify-content: center;
   padding: 60px 60px;
}

/* RIGHT CONTENT ANIMATION */
.home-service-content-box {
    opacity: 0;
    transform: translateX(80px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

section.active .home-service-content-box {
    opacity: 1;
    transform: translateX(0);
}

.img1 h2 {
    margin-top: 12px;
    font-size: 28px;
    font-weight: 700;
}

.img1 p {
    margin-bottom: 0;
    font-size: 18px;
    line-height: 28px;
    color: #555;
    font-family: 'DM Sans', sans-serif;
}

/* =========================
   BUTTON STYLE
========================= */
.home-service-go {
    margin-top: 20px;
}

.home-service-go a {
    background-color: #912DFC;
    border-radius: 100px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    padding: 8px 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: background-color 0.3s ease;
}

.home-service-go a:hover {
    background-color: #5a00c1;
}

/* =========================
   REMOVE ANIMATION IN RESPONSIVE
========================= */
@media (max-width: 991px) {

    /* Stop sticky behavior */
    .left {
        position: relative;
        height: auto;
        display: none; /* already you are hiding it */
    }

    .right {
        position: relative;
        height: auto;
    }

    /* Remove section full height */
    .img1 {
        min-height: auto;
    }

    /* Remove animations */
    .image-box,
    .home-service-content-box {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

}

/* =========================
   TABLET RESPONSIVE
========================= */
@media (max-width: 1024px) {

    .wrapper {
        flex-direction: column;
    }

    .left {
        position: relative;
        width: 100%;
        height: 60vh;
    }

    .right {
        width: 100%;
    }

    .img1 {
        min-height: auto;
        padding: 80px 40px;
    }

    .img1 h2 {
        font-size: 26px;
    }

    .img1 p {
        font-size: 16px;
    }
}

/* =========================
   MOBILE RESPONSIVE
========================= */
@media (max-width: 768px) {

    .left {
        height: 50vh;
    }

    .image-box img {
        width: 90%;
        max-width: 320px;
    }

    .img1 {
        padding: 60px 20px;
    }

    .img1 h2 {
        font-size: 22px;
    }

    .img1 p {
        font-size: 15px;
    }
}

/* Hide left image fully on small devices */
@media (max-width: 991px) {
    .left {
        display: none;
    }

    .img1 {
        padding: 40px 20px;
    }
}

.home-service-go a {
    background-color: #912DFC;
    border-radius: 100px;
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    padding: 8px 18px;
    transition: background-color 0.3s ease;
}

.home-service-go a:hover {
    background-color: #5a00c1;
}

.home-service-go {
    margin-top: 19px;
}


@media (max-width: 1013px) {
    .company-client-main-ul {
        gap: 30px;
        width: 100%;
    }
}

@media (max-width: 704px) {
   .number-sectopn-banner {
    position: relative;
   }

   .small-space {
    height: 34px;
}
}