section.hero--section {
    padding: 80px 0px 90px;
    background: linear-gradient(180deg, #F6F6F6 57.66%, #07130F 96.29%);
}

.banner--title h1 {
    color: var(--text-color);
    font-size: 80px;
    font-style: normal;
    font-weight: 400;
    line-height: 88px; /* 110% */
    letter-spacing: -0.2px;
    margin-bottom: 20px;
}

.banner--title p {
    color: #062D1FB8;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: 30px;
}
.banner-Img img {
    width: 100%;
}

.banner-Img:first-child {
    width: 60%;
}

.banner-Img {
    width: 40%;
}

.banner-Img img {
    height: 440px;
    object-fit: cover;
    border-radius: 20px;
}
.banner--multi-image {
    display: flex;
    gap: 45px;
    justify-content: center;
    margin-top: 70px;
    margin-bottom: 60px;
}

.banner--client-wrap {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.logo--outer-strip {
    display: flex;
    align-items: center;
    gap: 30px;
    border-right: 1px solid #42DA88;
    padding: 0px 35px;
    /* width: 100%; */
    justify-content: center;
    position: relative;
}

.banner--client--label h5 {font-family: Inter;font-weight: 400;font-size: 14px;line-height: 100%;letter-spacing: 0px;text-align: center;color: #F6F6F6;}

.logo--outer-strip:last-child {
    border: 0;
}

.logo--outer-strip-top {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.logo--outer-strip-top h5 {
    color: rgba(6, 45, 31, 0.72);
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: normal;
}

.logo--outer-strip-top .banner--client--label {
    width: auto;
}
.banner--logo {
    text-align: right;
}

/*  */
.video--layout {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}

.video--wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video--wrapper .video--poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video--wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.video--play-btn {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.video--play-btn:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

.video--play-btn svg {
    display: block;
    width: 50px;
    height: 50px;
}

/* Fallback image when no embed */
.video--layout > img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

/* ---------- MOBILE ---------- */
@media (max-width: 767px) {
    .video--wrapper,
    .video--layout > img {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .video--play-btn svg {
        width: 64px;
        height: 64px;
    }
    .video--wrapper { border-radius: 12px; }
    
    section.hero--section {
        padding-top: 30px;
    }
    
    .banner--logo {margin-bottom: 20px;text-align: left !important;}
    .banner--multi-image {
        margin-top: 20px;
        margin-bottom: 30px;
    }

    .banner-Img:last-child {
        display: none;
    }

    .banner-Img:first-child {
        width: 100%;
        height: auto;
    }

    .banner-Img:first-child img {
        height: 100%;
    }
    .banner--logo img {
        height: 65px;
    }
    .logo--outer-strip:last-child{
        display:none;
    }
    .logo--outer-strip{
        gap:0px;
        padding: 0;
        border: 0;
    }
    .logo--outer-strip img{
        width: 100%;
    }
    .banner--client--label{
        width:100%;
    }
    .banner--client--label h5{
        font-size:12px;
        width: 100%;
    }
    .banner--client-wrap {
        gap: 0;
    }
    .banner--title h1 {
        display: none;
    }
    .video--layout {
        margin: 20px 0px;
    }

    .video--layout img {
        height: 100%;
    }
}


@media(max-width:1100px) and (min-width:996px){
    .banner--title h1 {
        font-size: 48px;
        line-height: 54px;
    }

    .banner--logo img {
        width: 200px;
    }

    .banner--title p {
        font-size: 18px;
        line-height: 24px;
    }

    .banner-Img img {
        height: 300px;
    }

    .logo--outer-strip {
        gap: 20px;
    }

    .banner--client-wrap {
        justify-content: center;
    }
}