.marquee .text img{
    width: 22px;
    height: 22px;
    object-fit: contain;
    margin-right: 12px;
}

.hover-image{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 3px solid rgba(255,255,255,0.2);
    transition: all 0.4s ease;
    animation: floatImage 4s ease-in-out infinite;
}

.hover-image::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255,255,255,0.25),
        transparent 60%
    );
}
.service-card-items-4 .icon img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Brand Section 4 Custom Adjustments */

.brand-section-4 {
    overflow: hidden;
}

/* Base style for brand box */
.brand-box-1 {
    height: 135px !important;
    background: var(--white);
    border-radius: 12px;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    position: relative !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02) !important;
    border: 1px solid rgba(0, 0, 0, 0.03);
    line-height: normal !important;
    text-align: center !important;
}

.brand-box-1:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: rgba(0, 0, 0, 0.06);
}

/* Image container */
.brand-img-1 {
    position: relative !important;
    left: auto !important;
    transform: none !important;
    width: 150px !important;
    height: 150px !important;

    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    margin: 0 0 10px 0 !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
}

.brand-img-1 img {
    width: 85% !important;
    height: 95% !important;
    object-fit: contain !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Text name label style */
.brand-box-1 .brand-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--header) !important;
    opacity: 0 !important;
    transform: translateY(12px) !important;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1) !important;
    margin: 0 !important;
    display: block !important;
    position: absolute !important;
    bottom: 12px !important;
    width: 100% !important;
    text-align: center !important;
}

/* Hover effects */
.brand-box-1:hover .brand-img-1 {
    transform: translateY(-10px) !important;

}

.brand-box-1:hover .brand-img-1 img {
    transform: scale(1.1) !important;
}

.brand-box-1:hover .brand-text {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Disable old main.css overrides that break hover */
.brand-box-1:hover .brand-img-1:first-child img,
.brand-box-1:hover .brand-img-1:last-child img,
.brand-box-1 .brand-img-1:last-child img {
    transform: none !important;
    opacity: 1 !important;
}

.sub-title{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
}

.sub-title img{
    width: 22px;
    height: 22px;
    object-fit: contain;
}
.hover-image:hover{
    transform: scale(1.1) rotate(8deg);
    box-shadow: 0 20px 45px rgba(0,0,0,0.25);
}

@keyframes floatImage{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-10px);
    }
    100%{
        transform: translateY(0px);
    }
}

.text-anim{
    font-size: 34px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: #111827;
    margin-top: 15px;
    position: relative;
}

/* Gradient Text Effect */
.text-anim span{
    background: linear-gradient(90deg, #2563eb, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Smooth Animation */
.text-anim{
    animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp{
    from{
        opacity: 0;
        transform: translateY(40px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}

/* Tablet */
@media (max-width: 991px){

    .text-anim{
        font-size: 24px;
        line-height: 1.2;
    }

}

/* Mobile */
@media (max-width: 767px){

    .text-anim{
        font-size: 18px;
        line-height: 1.3;
        letter-spacing: -0.5px;
    }

}

/* Continuous linear scroll for brand slider */
.brand-slider .swiper-wrapper {
    transition-timing-function: linear !important;
}

/* ===================================
   FIXED HERO BACKGROUND
   Sits inside #smooth-wrapper (position:fixed to viewport).
   Stays completely still while smooth-content scrolls over it.
=================================== */

.hero-bg-fixed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;

    background:
        linear-gradient(90deg, rgba(46, 44, 121, 0) 0%, rgba(161, 184, 255, 0) 45%, rgba(198, 222, 251, 0) 100%),
        url('/assets/img/home/1.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===================================
   HERO SECTION — transparent, text scrolls freely
=================================== */

.hero-section.hero {
    position: relative;

    overflow: visible;

  

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 140px 0 40px;

    /* Transparent — background is now in .hero-bg-fixed */
    background: transparent;

    /* Text/content sits above the fixed background */
    z-index: 1;

}

/* Content wrapper — slides over the fixed hero like a smooth card
   NO backdrop-filter here: it causes severe scroll jank on every frame.
   GPU compositing is achieved via will-change + transform3d. */
.content-wrapper {
    position: relative;
    z-index: 10;

    /* Solid white — GPU composited for smooth scroll */
    background: #e7f8ff;

    overflow: hidden;

    /* Tell browser to promote this to its own compositing layer */
    will-change: transform;
    transform: translateZ(0);
}


/* Hero Shape */
.hero-shape {
    position: absolute;

    bottom: 0;
    left: 0;

    width: 100%;

    z-index: 2;

    pointer-events: none;
}

.hero-shape img {
    width: 100%;

    opacity: .22;
}

/* Content */
.hero-content {
    position: relative;

    z-index: 5;

    text-align: center;
}

/* Background Zoom Animation */
@keyframes heroZoomBg {

    0% {
        background-size: 100%;
    }

    100% {
        background-size: 108%;
    }

}

/* Responsive */
@media (max-width: 991px) {
.section-padding {
    padding: 0px 0 30px;
}
    .hero-section.hero-4 {
        min-height: auto;

        padding: 110px 0;
    }
    

    .hero-section.hero{
        position: relative;
  overflow: visible;
    padding: 40px 0;
  display: flex;
  align-items: center;
  justify-content: center;

  background: transparent;
  z-index: 1;
    }
}

@media (max-width: 767px) {

    .hero-section.hero-4 {
        padding: 90px 0;

        background-position: center;
    }

}























/* =========================================================
   MODERN HERO SECTION - ZETVIX STYLE
========================================================= */

.hero-section.hero-1 {
    position: relative;
    overflow: hidden;
    padding: 170px 0 20px;
    background-size: cover;
    background-position: center;
    z-index: 1;
    isolation: isolate;
}

/* Dark Overlay */
.hero-section.hero-1::before{
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(0,212,255,0.15), transparent 30%),
        radial-gradient(circle at bottom left, rgba(102,51,255,0.15), transparent 35%),
        linear-gradient(135deg, rgba(4,8,20,0.95), rgba(7,15,35,0.92));
    z-index: -1;
}

/* Animated Glow */
.hero-section.hero-1::after{
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(rgba(0,212,255,0.12), transparent 70%);
    top: -250px;
    right: -150px;
    animation: pulseGlow 6s infinite linear;
    z-index: -1;
}

@keyframes pulseGlow{
    0%{
        transform: scale(1);
    }
    50%{
        transform: scale(1.1);
    }
    100%{
        transform: scale(1);
    }
}

/* =========================================================
   HERO CONTENT
========================================================= */

.hero-content{
    position: relative;
    z-index: 5;
    max-width: 900px;
}

.hero-sub{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 100px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    color: #00d4ff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 28px;
    text-transform: uppercase;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    display:none;
    transform: translateY(24px);
    animation: heroFadeInUp 0.9s ease forwards;
    animation-delay: .2s;
}

.hero-content h1{
    font-size: 65px;
    line-height: 1.05;
    font-weight: 800;
    color: #fff;
    margin-bottom: 30px;
    letter-spacing: -2px;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeInUp 0.95s ease forwards;
    animation-delay: .35s;
}

.hero-content h1 span{
    background: linear-gradient(90deg, #007de8, #0d6efd, #ffffff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textGradient 5s linear infinite;
}

@keyframes textGradient{
    to{
        background-position: 200% center;
    }
}

.hero-highlight{
    display: inline-block;
    animation: heroTextGlow 3s ease-in-out infinite;
}

@keyframes heroFadeInUp{
    0%{
        opacity: 0;
        transform: translateY(24px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroTextGlow{
    0%,100%{
        filter: brightness(1);
    }
    50%{
        filter: brightness(1.35);
    }
}

.hero-tagline{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0 auto 30px;
    max-width: 760px;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeInUp 0.95s ease forwards;
    animation-delay: .65s;
}

.hero-tagline span{
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.16);
    background: rgba(255,255,255,0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .9px;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.16);
}

.hero-content h1{
    animation: heroTextPop 1s ease both;
    animation-delay: .35s;
}

@keyframes heroTextPop{
    0%{
        opacity: 0;
        transform: translateY(24px);
    }
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content p{
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeInUp 0.95s ease forwards;
    animation-delay: .55s;
    font-size: 18px !important;
    line-height: 32px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 620px !important;

    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 40px !important;

    text-align: center !important;
}

/* =========================================================
   BUTTONS
========================================================= */

.hero-button {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 18px !important;
    flex-wrap: wrap !important;
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeInUp 0.95s ease forwards;
    animation-delay: .8s;
}

.theme-btn{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 34px;
    border-radius: 16px;
    background: linear-gradient(135deg,#00d4ff,#0066ff);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    overflow: hidden;
    transition: all .4s ease;
    text-decoration: none;
    border: none;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0,102,255,0.25);
}

.theme-btn::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#6c63ff,#00d4ff);
    opacity: 0;
    transition: all .4s ease;
    z-index: -1;
}

.theme-btn:hover::before{
    opacity: 1;
}

.theme-btn:hover{
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 18px 45px rgba(0,212,255,0.35);
}

.theme-btn.style-btn{
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    box-shadow: none;
    backdrop-filter: blur(10px);
}

.theme-btn.style-btn:hover{
    border-color: rgba(0,212,255,0.4);
    background: rgba(0,212,255,0.12);
}

/* =========================================================
   HERO IMAGE
========================================================= */

.hero-image{
    position: relative;
    text-align: center;
}

.hero-image img{
    width: 100%;
    max-width: 680px;
    animation: floatY 5s ease-in-out infinite;
    filter:
        drop-shadow(0 30px 80px rgba(0,212,255,0.18))
        drop-shadow(0 10px 40px rgba(0,0,0,0.45));
    position: relative;
    z-index: 2;
}

/* Floating Effect */
@keyframes floatY{
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(-18px);
    }
    100%{
        transform: translateY(0px);
    }
}

/* =========================================================
   SHAPES
========================================================= */

.hero-shape,
.group-shape,
.line-shape,
.top-shape{
    position: absolute;
    pointer-events: none;
    opacity: .7;
}

.hero-shape{
    top: 8%;
    left: 2%;
    animation: rotateShape 20s linear infinite;
}

.group-shape{
    bottom: 12%;
    left: 4%;
}

.line-shape{
    top: 0;
    right: 0;
    opacity: .25;
}

.top-shape{
    top: 0;
    left: 0;
    opacity: .35;
}

@keyframes rotateShape{
    from{
        transform: rotate(0deg);
    }
    to{
        transform: rotate(360deg);
    }
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1399px){

    .hero-content h1{
        font-size: 58px;
    }
}

@media (max-width: 1199px){

    .hero-content h1{
        font-size: 58px;
    }
}
/* HIDE HERO IMAGE BELOW 991PX */

@media (max-width: 991px){

    .hero-image{
        display: none !important;
    }

    .hero-section.hero-1 .col-lg-5{
        display: none !important;
    }

    .hero-section.hero-1 .col-lg-7{
        width: 100% !important;
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .hero-content{
        text-align: center !important;
        margin: auto !important;
    }

    .hero-button{
        justify-content: center !important;
    }
}
@media (max-width: 991px){

    .hero-section.hero-1{
        padding: 120px 0 80px;
        text-align: center;
    }

    .hero-content{
        margin: auto;
    }

    .hero-content h1{
        font-size: 50px;
    }

    .hero-content p{
        margin-left: auto;
        margin-right: auto;
        font-size: 14px;
    }

    .hero-button{
        justify-content: center;
    }

    .hero-image{
        margin-top: 60px;
    }
}

@media (max-width: 767px){

    .hero-content h1{
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-content p{
        font-size: 16px;
        line-height: 28px;
    }

    .theme-btn{
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575px){

    .hero-section.hero-1{
        padding: 110px 0 70px;
    }

    .hero-content h1{
        font-size: 36px;
    }

    .hero-sub{
        font-size: 12px;
    }
}
/* RIGHT IMAGE FIX */

.hero-image{
    width: 100% !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    text-align: center !important;

    margin-left: auto !important;
    margin-right: auto !important;
}

.hero-image img{
    width: auto !important;
    max-width: 100% !important;

    display: block !important;

    margin-left: auto !important;
    margin-right: auto !important;

    object-fit: contain !important;

    position: relative !important;
}



.hero-content h1{
    max-width: 800px !important;
    margin-left: 0 !important;
    text-align: left !important;
}



.hero-content p{
    margin-left: 0 !important;
    text-align: left !important;
}



.hero-button{
    justify-content: flex-start !important;
}

@media (max-width:991px){

    .hero-section.hero-1 .col-lg-7{
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .hero-content{
        padding-left: 0 !important;
        text-align: center !important;
    }

    .hero-content h1,
    .hero-content p{
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .hero-button{
        justify-content: center !important;
    }
}