/* OMNI DGTL Hero Banner CSS Fixes */
.homeHero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}
.homeHero__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}
.homeHero__video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0.6; /* dark overlay effect */
}
.homeHero__descripWrapper {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}
.homeHero__descripWrapper .container-s {
    display: flex;
    justify-content: center;
    width: 100%;
}
.homeHero__descrip {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}
.homeHero__descrip--title {
    color: #fff;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}
.homeHero__descrip--desc {
    color: #eee;
    font-size: 1.25rem;
    margin-bottom: 40px;
}
.homeHero__descrip--btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}
.roundBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: #000;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.3s ease;
}
.roundBtn:hover {
    background: #eee;
    transform: scale(1.05);
}
.roundBtn .imgWrapper img {
    border-radius: 50%;
}
.underlineBtn {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    font-size: 1rem;
}

/* Responsiveness and 60fps Optimizations */
@media (max-width: 768px) {
    .homeHero__descrip--title {
        font-size: 2.5rem;
    }
    .homeHero__descrip--desc {
        font-size: 1.2rem;
    }
    .homeHero__descrip--btns {
        flex-direction: column;
        gap: 15px;
    }
}
@media (max-width: 480px) {
    .homeHero__descrip--title {
        font-size: 2rem;
    }
    .homeHero__descrip--desc {
        font-size: 1rem;
    }
}

/* Global 60fps animations */
.homeHero__video, .homeHero__descripWrapper {
    will-change: transform, opacity;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Ensure nothing goes out of bounds on mobile causing horizontal scroll */
html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

/* Fix unclickable buttons in Swiper sliders and general z-index issues */
.primary-btn, .underlineBtn, .roundBtn, a.megaMenu__subMenu--link {
    position: relative;
    z-index: 99 !important;
}
.primary-btn__bg, .txt, .spark, .imgWrapper {
    pointer-events: none !important;
}
.service_slider .swiper-slide {
    z-index: 10 !important;
}
.service_left-wrapper {
    position: relative;
    z-index: 15 !important;
}
.swiper-wrapper {
    z-index: 5 !important;
}

/* Our Work - Show More Functionality */
.ourWork__jsPanel .ourWork__card:nth-child(n+3) {
    display: none;
}
.ourWork__jsPanel.show-all .ourWork__card:nth-child(n+3) {
    display: flex;
}
.ourWork__jsPanel.show-all .ourWork__showMoreWrapper {
    display: none !important;
}
