:root {
    --logo-black: rgb(100 95 100);
    --dark-black: rgb(59 57 59);
    --primary-black: #20282d;
    --dark-red: hsl(356.79deg 75.1% 48.82%);
    --yellow: rgb(244 137 36);
    --light-red: rgb(223 69 57);
    --linear-gradient: linear-gradient(135deg,hsl(356.79deg 75.1% 48.82%),rgb(244, 137, 36));
}


.sticky-left {
    position: sticky;
    top: 20px;
}

.pt-80 {
    padding-top: 80px;
    position: relative;
}

.pb-80 {
    padding-bottom: 80px;
}

.multi-image-banner {
    position: relative;
    min-height: 450px;
    background: url("../new-images/product/free-installation.png") center right / cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient( 90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.65) 40%, rgba(0,0,0,0.3) 75%, rgba(0,0,0,0.15) 100% );
    z-index: 1;
}

/* IMAGE BLOCK */
.hero-images {
    position: absolute;
    right: 60px;
    bottom: 40px;
    display: flex;
    gap: 20px;
    z-index: 2;
}

/* IMAGE STYLE */
.hero-img {
    width: 220px;
    height: 150px;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    border: 3px solid rgba(255,255,255,0.15);
    box-shadow: 0 25px 50px rgba(0,0,0,0.6);
}

/* INDIVIDUAL IMAGES */
.img-one {
    background-image: url("../new-images/product/about-product.jpg");
}

.img-two {
    background-image: url("../new-images/product/product-second-about.jpg");
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 3;
    max-width: 60%;
    padding-left: 70px;
    margin-left: 46px;
}

    .hero-content h1 {
        font-size: 38px;
        color: #fff;
        font-weight: 600 !important;
        margin-bottom: 12px;
        text-transform: uppercase;
    }

    .hero-content p {
        font-size: 18px;
        color: rgba(255,255,255,0.9);
    }

/* RESPONSIVE */
@media (max-width: 991px) {
    .hero-images {
        position: static;
        margin-top: 30px;
        justify-content: center;
    }

    .hero-content {
        padding-left: 30px;
        text-align: center;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-img {
        width: 160px;
        height: 120px;
    }
}


.floting-left {
    position: absolute;
    top: 350px;
    left: 190px;
    animation: upDown 4s ease forwards infinite;
}

.side-left-middle {
    position: absolute;
    animation: upDown 4s ease forwards infinite;
    transform: rotate(45deg) !important;
}

    .side-left-middle img {
        height: 100px;
        animation: upDown 4s ease forwards infinite;
        animation-delay: 0.8s;
    }

.shape-right {
    position: absolute;
    right: 40px;
    animation: upDown 4s ease forwards infinite;
}

.shape-right-bottom {
    position: absolute;
    /* right: -35px; */
    bottom: -1px;
    animation: upDown 4s ease forwards infinite;
    animation-delay: 1s;
}
/* .brand-list-area-wrapper .left-paragraph p {
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
      background: var(--linear-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} */

.service-single-main-wrapper-five .rts-btn {
    max-width: max-content;
    margin: auto;
    background: var(--linear-gradient) !important;
    color: white !important;
}

/* ONLY About section heading */
#about .title-style-five h2.title {
    display: inline-block;
    /* width: 550px; */
    font-size: 40px;
    max-width: none;
}

.bar-static {
    fill: none;
    stroke: #eee;
    stroke-width: 6;
}

.bar--animated {
    fill: none;
    stroke: var(--dark-red);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 0;
    stroke-dashoffset: 0;
    transition: stroke-dashoffset 1.6s ease;
}



/* FLOATING TOOLBAR */
.header-float {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

    /* SHOW ONLY WHEN HEADER IS NOT VISIBLE */
    .header-float.show {
        opacity: 1;
        pointer-events: auto;
    }

    /* TOOL ITEM (ICON BOX) */
    .header-float .ft-item {
        width: 44px;
        height: 44px;
        background: #ffffff;
        color: #e1623a;
        ;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid #c4c0c0;
        border: 1px solid #c4c0c0;
        box-shadow: 0 4px 12px rgba(235, 8, 8, 0.08);
        border-radius: 8px;
        text-decoration: none;
        transition: background 0.2s ease, color 0.2s ease;
    }

.inside-float {
    align-items: center;
    width: max-content;
    padding: 20px 0;
    justify-content: center;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 100%;
}

    .inside-float a {
        margin-bottom: 10px;
        justify-content: center;
    }

/* ICON */
.header-float .ft-item i {
    font-size: 16px;
}

/* ACTIVE / CTA ITEM */
.header-float .ft-item.highlight {
    background: #e63946;
    color: white;
    border-color: #e63946;
}

/* SIMPLE HOVER FEEDBACK (NO EXPAND) */
.header-float .ft-item:hover {
    background: #f2f2f2;
}

/* MOBILE DISABLE */
@media (max-width: 991px) {
    .header-float {
        display: none;
    }
}


@media (max-width: 1199px) {
    .mobile-menu-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }
}

@media (max-width: 1199px) {

    /* Keep header structure alive */
    .header-main-one-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    /* ❌ Hide desktop content */
    .nav-area,
    .button-area {
        display: none !important;
    }

    /* ✅ Show hamburger on right */
    .mobile-menu-btn {
        display: flex !important;
        flex-direction: column;
        gap: 6px;
        margin-left: auto;
        cursor: pointer;
    }

        .mobile-menu-btn span {
            width: 28px;
            height: 3px;
            background: #20282d;
        }
}
/* ==============================
   GLOBAL SCROLL ANIMATIONS
================================ */

.reveal {
    opacity: 0;
    transform: translateY(40px);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
}

.service-single-main-wrapper-five {
    transition: transform .35s ease, box-shadow .35s ease;
}

    .service-single-main-wrapper-five:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 45px rgba(0,0,0,0.15);
    }


/* mobile menu */

/* Hide desktop menu on mobile */
@media (max-width: 991px) {
    .nav-area,
    .button-area {
        display: none;
    }
}

/* Hamburger */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

    .mobile-menu-btn span {
        width: 28px;
        height: 3px;
        background: #20282d;
    }

@media (max-width: 991px) {
    .mobile-menu-btn {
        display: flex;
    }
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.6);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    z-index: 998;
}

/* Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100%;
    background: #fff;
    z-index: 999;
    transition: .4s ease;
    display: flex;
    flex-direction: column;
}

    /* Active */
    .mobile-menu.active {
        right: 0;
    }

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

    .mobile-menu-header img {
        height: 50px;
    }

.mobile-menu-close {
    font-size: 28px;
    cursor: pointer;
}

/* Nav */
.mobile-nav {
    padding: 20px;
    list-style: none;
}

    .mobile-nav li {
        border-bottom: 1px solid #eee;
    }

    .mobile-nav a {
        display: block;
        padding: 14px 0;
        font-weight: 600;
        color: #20282d;
    }

    /* Dropdown */
    .mobile-nav .has-sub > ul {
        display: none;
        padding-left: 15px;
    }

    .mobile-nav .has-sub.active > ul {
        display: block;
    }

/* CTA */
.mobile-quote-btn {
    margin: 20px;
    text-align: center;
    padding: 14px;
    background: #e63946;
    color: #fff;
    border-radius: 6px;
}

@media (max-width: 991px) {
    .nav-area,
    .button-area {
        display: none !important;
    }
}

@media (max-width: 991px) {
    .header-main-one-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        margin-left: auto;
    }
}

@media (max-width: 991px) {
    .mobile-menu-btn {
        padding: 10px;
    }

        .mobile-menu-btn span {
            width: 26px;
            height: 3px;
            background: #20282d;
            display: block;
        }
}

/* Hide overflow so zoom doesn't break layout */
.thumbnail-about-five {
    overflow: hidden;
    border-radius: 10px; /* optional */
}

    /* Smooth transition */
    .thumbnail-about-five img {
        transition: transform 0.5s ease-in-out;
    }

    /* Scale image on hover */
    .thumbnail-about-five:hover img {
        transform: scale(1.1);
    }

.about-last.about-content-inner-five {
    max-width: 70%;
}
/* SECTION BACKGROUND */
.client-section {
    background: #f8f9fb;
    position: relative;
}

/* HEADING */
.section-heading h2 {
    font-size: 40px;
    font-weight: 600;
    color: #20282d;
}

.section-heading .subtitle {
    display: inline-block;
    background: linear-gradient(135deg, #ff7a18, #ff3c00);
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 13px;
    margin-bottom: 15px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
}

/* SAME SIZE FOR ALL BOXES */
.client-card {
    height: 100px; /* fixed equal height */
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: 0.3s ease;
}

    /* CONTROL IMAGE SIZE */
    .client-card img {
        max-height: 80px; /* keeps logos equal */
        max-width: 140px;
        width: auto;
        height: auto;
        object-fit: contain;
    }

    /* HOVER EFFECT */
    .client-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 25px rgba(0,0,0,0.08);
        filter: grayscale(0%);
    }

/* RESPONSIVE */
@media (max-width: 1200px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .client-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rts-section-gapBottom {
    padding-bottom: 80px;
    padding-top: 80px;
}
