
/* =====================================================
   UNI NEUE — Full Font Family
===================================================== */

/* Thin — 100 */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 100;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Thin.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Thin.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 100;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Thin-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Thin-Italic.otf') format('opentype');
}

/* Light — 300 */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 300;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Light.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Light.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 300;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Light-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Light-Italic.otf') format('opentype');
}

/* Book — 350  */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 350;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Book.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Book.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 350;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Book-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Book-Italic.otf') format('opentype');
}

/* Regular — 400 */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 400;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Regular.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Regular.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 400;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Regular-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Regular-Italic.otf') format('opentype');
}

/* Bold — 700 */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 700;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Bold.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Bold.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 700;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Bold-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Bold-Italic.otf') format('opentype');
}

/* Heavy — 800 */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 800;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Heavy.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Heavy.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 800;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Heavy-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Heavy-Italic.otf') format('opentype');
}

/* Black — 900 */
@font-face {
    font-family: 'Uni Neue';
    font-weight: 900;
    font-style: normal;
    src: url('../fonts/Uni-Neue-Black.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Black.otf') format('opentype');
}
@font-face {
    font-family: 'Uni Neue';
    font-weight: 900;
    font-style: italic;
    src: url('../fonts/Uni-Neue-Black-Italic.woff2') format('woff2'),
         url('../fonts/Uni-Neue-Black-Italic.otf') format('opentype');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Uni Neue', sans-serif;
    font-optical-sizing: auto;
}

.animate-on-scroll {
    opacity: 0;
}

.product-description, 
.product-description *,
.product-summary-wrapper,
.product-summary-wrapper * {
    font-family: 'Uni Neue', sans-serif !important;
}

/* utility classes */

a {
    text-decoration: none;
}

.section-title {
    color: #757575;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 34px;
    padding-bottom: 18px;
    position: relative;
    margin-bottom: 30px;
    cursor: default;
}

/* Two-tone separator line — always left-aligned */
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 120px;
    height: 2px;
    background: linear-gradient(to right,
        #f29117 0%,
        #f29117 30%,
        #e0e0e0 30%,
        #e0e0e0 100%
    );
    transition: width 0.4s ease;
}

/* On hover: line expands + turns full orange */
.section-title:hover::after {
    width: 200px;
    background: #f29117;
}

.section-title span {
    color: #f29117;
}

.secondary-title {
    text-align: center;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 30px;
    color: #000;
    line-height: 1.5;

}

@media (max-width: 575px) {
    .section-title {
        font-size: 22px;
        text-align: center !important;
    }

    .secondary-title {
        text-align: center;
        font-size: 22px;

    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 26px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
    border-radius: 0;
}

.btn-primary {
    background: #f29117;
    color: #fff;
}

.btn-primary:hover {
    background: #d88400;
}

.btn-light {
    background: #fff;
    color: #f29117;
}

.btn-light:hover {
    background: #ffe6c7;
}

.btn-dark {
    background: #000;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    display: inline-block;
}

/* //product page */

.product-code {
    font-size: 14px;
    color: #777;
    margin-bottom: 8px;
    display: block;
}

.product-description {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    /* max-width: 420px; */
    margin: 18px 0;
}

.product-section-padding {
    padding: 60px 0;
    background: #fff;
}

.subpage-padding {
    padding: 60px 0;
}


/* =========================
   TOP BAR
========================= */
.top-bar {
    background: #000;
    color: #fff;
    font-size: 13px;
}

.top-bar-inner {
    display: flex;
    align-items: center;
    /* justify-content: space-between; */
    gap: 20px;
    min-height: 34px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 5px;
    min-height: 34px;
}

@media (max-width: 600px) {
    .top-bar-social {
        display: none;
    }
}

.top-bar-social a {
    color: #fff;
    margin-left: 14px;
    font-size: 15px;
    transition: color 0.3s ease;
}

.top-bar-social a:hover {
    color: #f0c040;
    /* brand highlight */
}

.social-svg-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
    text-decoration: none;
    line-height: 1;
}

.social-svg-icon:hover {
    transform: translateY(-1px) scale(1.1);
    filter: brightness(1.1);
}

/* =========================
   HEADER
========================= */
.site-header {
    background: #fff;
    border-bottom: 1px solid #ddd;
    /* padding: 0 0 0 40px; */
}

/* IMPORTANT: vertical centering fix */
.site-header .row {
    display: flex;
    align-items: center;
    min-height: 90px;
}

/* LOGO */
.logo {
    display: block;
    max-height: 60px;
}

/* =========================
   NAV
========================= */
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* MAIN NAV */
.main-nav {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    height: 100%;
}

.main-nav li {
    display: flex;
    align-items: center;
}

/* NAV LINKS */
.main-nav li a {
    display: inline-flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
    color: #333;
    font-weight: 400;
    line-height: 1;
}

.main-nav li a:hover {
    color: #f29117;
}

/* GROUP LAST TWO ITEMS */
.nav-actions {
    display: flex;
    align-items: center;
    height: 100%;
    gap: 0 !important;
}

/* Ensure no margin sneaks in */
.nav-search,
.nav-contact {
    margin: 0;
}

/* SEARCH BLOCK */
.nav-search,
.nav-contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90px;
    width: 80px;
    background: #9a9a9a;
    color: #fff;
    font-size: 12px;
    cursor: pointer;
}

/* CONTACT BLOCK */
.nav-contact {
    background: #000;
}

.nav-contact a {
    padding: 0 26px;
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff !important;
    text-decoration: none;
    font-weight: 500;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 991px) {

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        right: 15px;
        top: 70px;
        background: #fff;
        flex-direction: column;
        width: 220px;
        padding: 15px;
        display: none;
        align-items: flex-start;
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
    }

    .main-nav.open {
        display: flex;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav li a {
        width: 100%;
        color: #000;
        padding: 10px 0;
    }

    .site-header {
        background: #fff;
        border-bottom: 1px solid #ddd;
        padding: 0 20px;
    }
}

/* =========================
   HERO CAROUSEL
========================= */
.hero-section {
    position: relative;
    height: 85vh;
    overflow: hidden;
    color: #fff;
}

/* Height reference */
.hero-carousel,
.hero-slide {
    height: 100%;
}

/* Slide */
.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none; /* Inactive slides must NOT capture any clicks */
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
    pointer-events: auto; /* Only active slide receives clicks */
}

/* Overlay — right-side dark gradient (content is on the right) */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to left,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.45) 50%,
        rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content wrapper — vertically centered */
.hero-container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 420px;
    padding: 0;
}

/* Subtitle tag above heading */
.hero-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.hero-tag span {
    color: #f29117;
    font-weight: 600;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 14px;
    color: #fff;
}

.hero-content p {
    margin: 0 0 28px;
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.9;
    color: #fff;
}

/* Button row */
.hero-btn-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-btn-group .btn-hero-primary {
    display: inline-block;
    background: #f29117;
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #f29117;
    transition: background 0.3s ease, color 0.3s ease;
}

.hero-btn-group .btn-hero-primary:hover {
    background: #d97e0d;
    border-color: #d97e0d;
    color: #fff;
}

.hero-btn-group .btn-hero-secondary {
    display: inline-block;
    background: rgba(40, 40, 40, 0.85);
    color: #fff;
    padding: 12px 26px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid rgba(255,255,255,0.2);
    transition: background 0.3s ease, border-color 0.3s ease;
}

.hero-btn-group .btn-hero-secondary:hover {
    background: rgba(60, 60, 60, 0.95);
    border-color: rgba(255,255,255,0.5);
}

/* Legacy hero-btn kept for compatibility */
.hero-btn {
    display: inline-block;
    background: #f29117;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.hero-btn:hover {
    background: #d88400;
}

/* =========================
   CONTROLLER LINE
========================= */
.hero-controller {
    position: absolute;
    bottom: 20px;
    /* ⬆ controller line */
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    display: flex;
    gap: 12px;
    z-index: 5;
}

.hero-controller .line {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-controller .line:hover {
    height: 4px;
}

.hero-controller .line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: #f29117;
    transition: none; /* Important to reset width instantly */
}

.hero-controller .line.active::after {
    animation: heroProgress 8s linear forwards;
}

.hero-controller .line.paused::after {
    animation-play-state: paused;
}

@keyframes heroProgress {
    from { width: 0; }
    to { width: 100%; }
}


/* =========================
   HERO FEATURES
========================= */
.hero-features {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 900px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    z-index: 4;
}

/* Individual icon */
.feature-item {
    text-align: center;
    color: #fff;
    opacity: 0.9;
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    font-size: 18px;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 11px;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}


/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 991px) {
    .hero-section {
        height: 500px;
        /* min-height: 90vh; */
    }

    .hero-content {
        padding: 120px 20px 180px;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-btn {
        width: 100%;
        max-width: 260px;
    }


}

@media (max-width: 575px) {
    .hero-content h1 {
        font-size: 30px;
    }

    /* 
    .hero-controller {
        width: 90%;
        bottom: 18px;
    } */

    .hero-controller {
        bottom: 120px;
        width: 90%;
    }

    .hero-features {
        bottom: 40px;
        flex-wrap: wrap;
        justify-content: center;
        gap: 22px;
    }
}



/* =========================
   PRODUCT OFFER SECTION
========================= */
.product-offer {
    padding: 60px 0;
    background: #fff;
}

/* Title */
/* .section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
    text-shadow:
        0 2px 2px rgba(0,0,0,0.15),
        0 6px 10px rgba(0,0,0,0.2);
} */

/* Card */
.product-card {
    text-align: center;
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.product-card p {
    margin-top: 10px;
    font-size: 17px;
    color: #777;
}

/* =========================
   PRODUCT CARD HOVER
========================= */
.product-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Image zoom */
.product-card img {
    transition: transform 0.4s ease;
}

/* Dark overlay */
.product-card::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: rgba(0, 0, 0, 0.35); */
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Text animation */
.product-card p {
    transition: color 0.3s ease;
}

/* Hover states */
.product-card:hover img {
    transform: scale(1.08);
}

.product-card:hover::after {
    opacity: 1;
}

.product-card:hover p {
    color: #f29117;
    /* brand accent */
}

/* Optional slight lift */
.product-card:hover {
    transform: translateY(-4px);
}

/* =========================
   DISABLE HOVER ON MOBILE
========================= */
@media (max-width: 767px) {
    .product-card:hover {
        transform: none;
    }

    .product-card:hover img {
        transform: none;
    }

    .product-card::after {
        display: none;
    }
}


/* =========================
   RESPONSIVE TWEAKS
========================= */

/* Ensure equal spacing on large screens */
@media (min-width: 992px) {
    .product-row>div {
        flex: 0 0 20%;
        max-width: 20%;
    }
}

/* Tablet */
@media (max-width: 991px) {
    .product-card img {
        height: 200px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .product-card img {
        height: 180px;
    }

    .product-row>div {
        flex: 0 0 100%;
        max-width: 100%;
    }
}


/* =========================
   ABOUT SECTION
========================= */
.about-section {
    padding: 30px 0 60px;
    background: #fff;
}

.about-row {
    position: relative;
    align-items: center;
}

/* IMAGE */
.about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* CONTENT CARD */
.about-card {
    background: #f7941d;
    /* reference orange */
    color: #fff;
    /* padding: 40px 150px 40px 40px; */
    padding: 50px;
    margin-left: -80px;
    /* overlap effect */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-card h2 {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 40px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 10px;
    background: #fff;
    color: #f7941d;
    padding: 12px 22px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
}

.about-btn:hover {
    background: #ffe6c7;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .about-card {
        margin-left: 0;
        margin-top: 30px;
        padding: 40px;
    }
}

@media (max-width: 575px) {
    .about-section {
        padding: 50px 0;
    }

    .about-card {
        padding: 30px;
    }

    .about-card h2 {
        font-size: 26px;
    }
}

/* =====================================================
   EXPERIENCE SECTION
===================================================== */
.experience-section {
    /* background: url(assets/img/abstract-bg.jpg) no-repeat center; */
    /* background-size: cover; */
    padding: 80px 80px 80px 150px;
}

/* =====================================================
   STATS WRAPPER (DESKTOP OVERLAP)
===================================================== */
.stats-wrapper {
    position: relative;
    min-height: 460px;
}

/* =====================================================
   STAT CARD BASE
===================================================== */
.stat-card {
    position: absolute;
    background: #ffffff;
    padding: 26px 28px;
    width: 240px;
    border-radius: 10px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    z-index: 1;

    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.4s ease;
}

/* Hover */
.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18);
}

/* =====================================================
   FLOATING ICON
===================================================== */
.stat-icon {
    position: absolute;
    width: 62px;
    height: 62px;
    /* background: #ffffff; */
    border-radius: 12px;
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.15); */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.stat-icon i {
    font-size: 26px;
}

/* Icon colors */
.stat-1 .stat-icon i {
    color: #4a6cf7;
}

.stat-2 .stat-icon i {
    color: #ff6b6b;
}

.stat-3 .stat-icon i {
    color: #f7b731;
}

.stat-4 .stat-icon i {
    color: #5dade2;
}

/* =====================================================
   CARD TEXT
===================================================== */
.stat-card h3 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #1f2937;
}

.stat-card p {
    font-size: 15px;
    color: #6b6f82;
    position: relative;
    padding-left: 14px;
    margin: 0;
}

.stat-card p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    width: 4px;
    height: 16px;
    background: #f29117;
    border-radius: 2px;
}

/* =====================================================
   ICON POSITIONS (DESKTOP)
===================================================== */
.stat-icon.top-left {
    top: -26px;
    left: -26px;
}

.stat-icon.top-right {
    top: -26px;
    right: -26px;
}

.stat-icon.right {
    top: 50%;
    right: -26px;
    transform: translateY(-50%);
}

.stat-icon.bottom-left {
    bottom: -26px;
    left: -26px;
}

/* =====================================================
   CARD POSITIONS (DESKTOP)
===================================================== */
.stat-1 {
    top: 60px;
    left: 0;
    z-index: 1;
}

.stat-2 {
    top: 10px;
    left: 200px;
    z-index: 2;
}

.stat-3 {
    top: 230px;
    left: 220px;
    z-index: 3;
}

.stat-4 {
    top: 280px;
    left: 40px;
    z-index: 2;
}

/* =====================================================
   EXPERIENCE CONTENT (RIGHT SIDE)
===================================================== */
.experience-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    color: #000;
}

.experience-content p {
    margin-top: 16px;
    font-size: 15px;
    color: #4b5563;
    max-width: 420px;
}

/* =====================================================
   TABLET RESPONSIVE
===================================================== */
@media (max-width: 991px) {

    .stats-wrapper {
        position: static;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .stat-card {
        position: relative;
        width: 100%;
        padding: 22px 22px 24px;
    }

    /* Pull icons safely inside */
    .stat-icon {
        top: -18px !important;
        left: -18px !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }

    .stat-card h3 {
        font-size: 36px;
    }

    .experience-content {
        margin-top: 48px;
        text-align: center;
    }

    .experience-content p {
        margin: 16px auto 0;
    }
}

/* =====================================================
   MOBILE RESPONSIVE
===================================================== */
@media (max-width: 575px) {

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .stat-card {
        padding: 20px 20px 22px;
    }

    .stat-icon {
        width: 48px;
        height: 48px;
        top: -14px !important;
        left: -14px !important;
    }

    .stat-icon i {
        font-size: 22px;
    }

    .stat-card h3 {
        font-size: 32px;
    }

    .stat-card p {
        font-size: 14px;
    }

    .experience-content h2 {
        font-size: 32px;
        line-height: 1.2;
    }
}

/* =====================================================
   HARD RESET FOR MOBILE (FIX OVERLAP ISSUE)
===================================================== */
@media (max-width: 991px) {

    .stats-wrapper {
        position: relative;
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-bottom: 40px;
    }

    .stat-card {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        width: 100%;
        z-index: 1;
    }

    /* Reset icon positioning cleanly */
    .stat-icon {
        position: absolute;
        top: -16px !important;
        left: -16px !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
    }
}

@media (max-width: 575px) {

    .experience-section {
        /* background: url(assets/img/abstract-bg.jpg) no-repeat center; */
        /* background-size: cover; */
        padding: 40px;
    }

    .stats-wrapper {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-bottom: 32px;
    }

    .stat-card {
        padding: 22px;
    }

    .stat-icon {
        width: 46px;
        height: 46px;
        top: -14px !important;
        left: -14px !important;
    }

    .stat-card h3 {
        font-size: 30px;
    }

    .stat-card p {
        font-size: 14px;
    }
}




/* =========================
   OUR PILLARS
========================= */
.pillars-section {
    padding: 60px 20px;
    background: #fff;
}

.pillars-container {
    max-width: 1320px;
    margin: 0 auto;
}

.pillars-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

/* Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card */
.pillar-card {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* Image */
.pillar-image img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
    padding: 15px 15px 0;
}

/* Content */
.pillar-content {
    padding: 20px;
}

.pillar-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #252529;
}

.pillar-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 40px;
}

/* Link */
.pillar-link {
    font-size: 13px;
    color: #4a5d8f;
    text-decoration: none;
    font-weight: 500;
}

.pillar-link:hover {
    text-decoration: underline;
}

/* =========================
   TABLET
========================= */
@media (max-width: 991px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 575px) {
    .pillars-title {
        font-size: 22px;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pillar-image img {
        height: 170px;
    }

    .pillar-content {
        padding: 18px;
    }
}


/* Application section 
/////////////////////*/

.application-section {
    padding: 25px 0 60px;
}

/* Heading */
.section-heading {
    font-size: 32px;
    font-weight: 600;
}

.view-all {
    font-size: 14px;
    color: #666;
    text-decoration: none;
}

/* Slider */
.slider-wrapper {
    position: relative;
    overflow: hidden;
}

.slider-track {
    overflow: hidden;
}

.slider-row {
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

/* Card */
.app-card {
    border: 1px solid #eee;
    border-radius: 6px;
    background: #fff;
}

.app-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 6px 6px 0 0;
}

.app-card p {
    padding: 12px;
    text-align: center;
    font-size: 16px;
    color: #555;
    margin: 0;
}

/* Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #ddd;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
}

.slider-btn.prev {
    left: 20px;
}

.slider-btn.next {
    right: 20px;
}

/* Tablet */
@media (max-width: 991px) {
    .app-card img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 575px) {
    .section-heading {
        font-size: 26px;
    }

    .app-card img {
        height: 200px;
    }

    .slider-btn {
        display: none;
        /* swipe only */
    }
}


/* =========================
   PROJECT SECTION
========================= */
.project-section {
    padding: 60px 0;
    background: #fff;
}

/* Title */
.project-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

/* Filter */
.project-filter ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.filter-list li {
    font-size: 18px;
    color: #b0b7c3;
    margin-bottom: 12px;
    cursor: pointer;
    position: relative;
    padding-left: 14px;
    transition: color 0.3s;
}

.filter-list li:hover {
    color: #f29117;
}

.filter-list li.active {
    color: #f29117;
    font-weight: 600;
}

.filter-list li.active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 3px;
    height: 14px;
    background: #f29117;
}

/* Card */
.project-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.project-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* Info */
.project-info {
    background: #f29117;
    padding: 14px;
    color: #fff;
}

.project-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.project-info p {
    font-size: 13px;
    margin: 0;
}

/* Pagination */
.project-pagination {
    margin-top: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-btn {
    background: #1f2937;
    color: #fff;
    border: none;
    padding: 10px 24px;
    cursor: pointer;
}

.dots {
    display: flex;
    gap: 8px;
}

.dots span {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
}

.dots span.active {
    background: #f29117;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 991px) {

    .project-filter {
        margin-bottom: 30px;
    }

    .project-filter ul {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }

    .filter-list li {
        margin-bottom: 0;
    }
}

@media (max-width: 575px) {

    .project-title {
        font-size: 28px;
    }

    .project-card img {
        height: 220px;
    }

    .project-pagination {
        flex-direction: column;
        gap: 20px;
    }
}

/* =========================
   CLIENT REVIEWS SECTION
========================= */
.client-reviews {
    padding: 60px 0;
    background: #fff;
}

/* =========================
   REVIEW SLIDER WRAPPER
========================= */
.review-slider {
    overflow: hidden;
    position: relative;
}

/* =========================
   REVIEW ROW (SLIDER TRACK)
========================= */
.review-row {
    display: flex;
    flex-wrap: nowrap;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    margin-left: 0;
    margin-right: 0;
}

/* =========================
   REVIEW CARD
========================= */
.review-row>div {
    flex: 0 0 25%;
    /* Desktop: 4 cards */
    margin-bottom: 0;
}

.review-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 26px 22px 30px;
    height: 100%;
    transition: 0.3s;
}

/* Avatar / Initials */
.review-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    margin-bottom: 18px;
    background: #f29117;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    overflow: hidden;
}

.review-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Review Text */
.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 60px;
}

/* Name */
.review-name {
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    color: #000;
}

/* Company */
.review-company {
    font-size: 13px;
    color: #999;
}

/* =========================
   TABLET OPTIMIZATION
========================= */
@media (max-width: 991px) {

    .review-row>div {
        flex: 0 0 50%;
        /* 2 cards */
    }

    .review-card {
        padding: 24px 20px;
    }

    .review-avatar {
        margin-left: auto;
        margin-right: auto;
    }

    .review-text,
    .review-name,
    .review-company {
        text-align: center;
    }
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 575px) {

    .client-reviews {
        padding: 50px 0;
    }

    .review-row>div {
        flex: 0 0 100%;
        /* 1 card */
    }

    .review-card {
        padding: 22px 18px;
        border-radius: 10px;
    }

    .review-avatar {
        width: 48px;
        height: 48px;
        margin-bottom: 14px;
    }

    .review-text {
        font-size: 14px;
        line-height: 1.7;
        margin-bottom: 18px;
    }

    .review-name {
        font-size: 14px;
    }

    .review-company {
        font-size: 12px;
    }
}

/* =========================
   REVIEW CONTROLLER (DOTS)
========================= */
.review-controller {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.review-controller span {
    width: 8px;
    height: 8px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.review-controller span.active {
    background: #f29117;
    transform: scale(1.2);
}

/* Mobile spacing */
@media (max-width: 575px) {
    .review-controller {
        margin-top: 20px;
    }
}


/* =========================
   FOOTER
========================= */
.site-footer {
    background: #000;
    color: #fff;
    padding: 60px 0 0;
    font-family: 'Uni Neue', sans-serif;
}

/* Top Heading */
.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-top h2 {
    font-size: 34px;
    font-weight: 500;
    margin: 0;
}

.footer-social a {
    color: #fff;
    margin-left: 12px;
    font-size: 14px;
    border: 1px solid #444;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Content */
.footer-content {
    padding-bottom: 40px;
}

.footer-text {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 20px;
}

.footer-contact {
    font-size: 14px;
}

.footer-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    font-size: 14px;
    text-decoration: none;
}

.footer-address {
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
}

.footer-map iframe {
    width: 100%;
    height: 160px;
    border: 0;
    margin-top: 10px;
}

/* Bottom Bar */
.footer-bottom {
    background: #fff;
    color: #000;
    padding: 12px 0;
    font-size: 13px;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.footer-bottom-links li {
    margin-right: 15px;
}

.footer-bottom-links a {
    color: #000;
    text-decoration: none;
}

.footer-copy {
    text-align: right;
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
    .footer-top {
        flex-direction: column;
        text-align: center;
    }

    .footer-top h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .footer-social a {
        margin: 0 6px;
    }

    .footer-title {
        margin-top: 25px;
    }

    .footer-copy {
        text-align: center;
        margin-top: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
        margin-bottom: 8px;
    }
}

/* =========================
   VIDEO + RELATED SECTION
========================= */
.video-related-section {
    padding: 40px 0 60px;
    background: #fff;
}

/* Related video link styling */
.related-video-item a {
    display: block;
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

.related-video-item a:hover {
    color: gray;
    /* change to brand color if needed */
    text-decoration: underline;
}

/* Heading */
.video-section-heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

/* Video */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 6px;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Related column */
.related-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.related-video-list {
    max-height: 420px;
    overflow-y: auto;
    padding-right: 6px;
}

/* Related item */
.related-video-item {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
    cursor: pointer;
}

.related-video-item:last-child {
    margin-bottom: 0;
}

.related-video-item .thumb {
    flex: 0 0 120px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
}

.related-video-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-video-item p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0;
    color: #000;
}

/* =========================
   TABLET & MOBILE
========================= */
@media (max-width: 991px) {
    .video-section-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .related-title {
        margin-top: 25px;
    }

    .related-video-list {
        max-height: none;
        overflow: visible;
    }
}

@media (max-width: 576px) {
    .video-related-section {
        padding: 50px 0;
    }

    .video-section-heading {
        font-size: 22px;
        padding: 0 10px;
    }

    .related-video-item .thumb {
        flex: 0 0 100px;
        height: 60px;
    }

    .related-video-item p {
        font-size: 12px;
    }
}



/* =========================
   PRODUCT Main SECTION
========================= */


/* Breadcrumb */
.product-breadcrumb {
    font-size: 13px;
    color: #777;
    margin-bottom: 15px;
}

.product-breadcrumb span {
    margin: 0 6px;
}

/* Gallery */
.product-main-image {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    border-radius: 12px;
    background-color: #fff;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
}

.product-main-image img {
    width: 100%;
    display: block;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.product-thumbs {
    display: flex;
    /* gap: 10px; */
    margin-top: 20px;
}

.product-thumbs img {
    width: 25%;
    height: auto;
    object-fit: cover;
    border: 1px solid #eee;
    cursor: pointer;
    transition: 0.3s ease;
}

/* Active thumbnail */
.product-thumb.active {
    border-color: #f29117;
    box-shadow: 0 0 0 2px rgba(243, 156, 18, 0.25);
}

/* Content */
.product-content {
    padding-left: 40px;
}



.product-link {
    color: #f29117;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 22px;
}

/* =========================
   PRODUCT CATALOGUE (RIGHT)
========================= */
.product-catalogue {
    border-left: 1px solid #eee;
    padding-left: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* Item */
.catalogue-item {
    text-align: center;
    cursor: pointer;
    /* opacity: 0.6; */
    transition: 0.3s ease;
}

.catalogue-item img {
    width: 34px;
    height: 34px;
    margin-bottom: 8px;
}

.catalogue-item span {
    display: block;
    font-size: 13px;
    color: #333;
}

/* Active / Hover */
.catalogue-item.active,
.catalogue-item:hover {
    opacity: 1;
}

.catalogue-item.active span {
    color: #f29117;
}

/* Optional vertical centering */
@media (min-width: 992px) {
    .product-catalogue {
        justify-content: center;
    }
}




/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {
    .product-content {
        padding-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 575px) {
    .product-thumbs img {
        width: 50%;
        height: auto;
    }
}


/* =========================
   PRODUCT details
========================= */

/* Tabs */
.product-tabs {
    display: flex;
    gap: 30px;
    border-bottom: 2px solid #eee;
    margin-bottom: 40px;
    justify-content: center;
}

.product-tabs .tab {
    background: none;
    border: none;
    padding: 12px 0;
    font-size: 15px;
    color: #777;
    cursor: pointer;
    position: relative;
}

.product-tabs .tab.active {
    color: #000;
    font-weight: 600;
}

.product-tabs .tab.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 3px;
    background: #f29117;
}



/* Accordion */
.details-accordion {
    margin-top: 30px;
}

.accordion-item {
    border-bottom: 1px solid #ddd;
    padding: 16px 0;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
}

.accordion-body {
    display: none;
    padding-top: 14px;
}

.accordion-item.open .accordion-body {
    display: block;
}

.accordion-body ul {
    padding-left: 18px;
}

.accordion-body li {
    font-size: 14px;
    margin-bottom: 6px;
}

/* Images */
.details-images {
    display: grid;
    justify-content: end;
    gap: 20px;
}

.details-images img {
    width: 100%;
    max-width: 400px;
    object-fit: cover;
    border-radius: 4px;
}

/* Responsive */
@media (max-width: 991px) {
    .details-images {
        margin-top: 30px;
    }
}


/* =========================
   RELATED VIDEOS
========================= */

/* Wrapper (positions arrows) */
.related-video-wrapper {
    position: relative;
    margin-top: 30px;
}

/* Slider (CLIPPED AREA) */
.related-video-slider {
    overflow: hidden;
}

/* Track */
.video-track {
    display: flex;
    gap: 40px;
    transition: transform 0.5s ease;
}

/* Card */
.video-card {
    flex: 0 0 50%;
}

/* Text */
.video-card h4 {
    font-size: 20px;
    font-weight: 600;
    margin: 18px 0 10px;
}

.video-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 70%;
}

/* Arrows */
.video-nav {
    position: absolute;
    top: 40%;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    cursor: pointer;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
}

.video-nav.prev {
    left: -22px;
}

.video-nav.next {
    right: -22px;
}

/* Mobile */
@media (max-width: 991px) {
    .video-nav {
        display: none;
    }

    .video-card {
        flex: 0 0 100%;
    }
}


/* =========================
   DOWNLOADS
========================= */
/* Active tab style */
.downloads-section .btn.active {
    border-bottom: 2px solid #f57c00;
    background: #fff;
}

/* Download button */
.download-btn {
    width: 32px;
    height: 32px;
    background: #f57c00;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
}

.download-btn:hover {
    background: #e56f00;
}



.related-products {
    overflow: hidden;
}

.related-slider-wrapper {
    overflow: hidden;
}

.related-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s ease;
}

/* Cards */
.related-card {
    min-width: 300px;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.related-card img {
    width: 100%;
    display: block;
}

.related-card .card-body {
    padding: 16px;
}

.related-card h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.related-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Bottom Navigation (REFERENCE STYLE) */
.related-nav-bottom {
    display: flex;
    justify-content: flex-end;
    gap: 14px;
    margin-top: 24px;
}

.related-nav-bottom button {
    background: none;
    border: none;
    font-size: 22px;
    color: #888;
    cursor: pointer;
    transition: color 0.2s;
}

.related-nav-bottom button:hover {
    color: #000;
}

/* Mobile */
@media (max-width: 768px) {
    .related-card {
        min-width: 260px;
    }

    .related-nav-bottom {
        justify-content: center;
    }
}


/* =========================
   INNER PAGE BANNER (REUSABLE)
========================= */

.inner-banner {
    position: relative;
    height: 420px;
    /* reusable banner height */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

/* Overlay */
.inner-banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(0, 0, 0, 0.65) 0%,
            rgba(0, 0, 0, 0.45) 60%,
            rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

/* Content */
.inner-banner-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
}

/* Banner Heading (REUSABLE) */
.banner-title {
    position: relative;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    /* space for line */
    text-transform: uppercase;
}

/* Orange line */
.banner-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -12px;
    width: 60px;
    height: 3px;
    background: #f29117;
}

/* Responsive alignment */
@media (max-width: 575px) {
    .banner-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.banner-title span {
    color: #f29117;
    /* brand orange */
}

/* Subtitle */
.banner-subtitle {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 520px;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
    .inner-banner {
        height: 360px;
    }

    .banner-title {
        font-size: 44px;
    }
}

@media (max-width: 575px) {
    .inner-banner {
        height: 300px;
        text-align: center;
    }

    .inner-banner-content {
        margin: 0 auto;
    }

    .banner-title {
        font-size: 32px;
    }

    .banner-subtitle {
        font-size: 14px;
    }
}


/* =========================
   BRAND BACKGROUND SECTION
========================= */


.brand-tag {
    display: inline-block;
    background: #e5e5e5;
    color: #000;
    font-size: 12px;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 32px;
    font-weight: 500;
}

.brand-intro {
    font-size: 15px;
    font-weight: 500;
    color: #4a5d8f;
    margin-bottom: 18px;
}

.brand-background p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

/* Image */
.brand-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px;
}

/* Stats */
.brand-stats {
    margin-top: 60px;
}

.brand-stat h3 {
    font-size: 25px;
    font-weight: 700;
    color: #f29117;
    margin: 12px 0 6px;
}

.brand-stat p {
    font-size: 26px;
    color: #000;
    margin: 0;
}

.stat-icon-circle {
    width: 120px;
    height: 120px;
    background: #d9d9d9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.stat-icon-circle img {
    height: 60px;
}

/* Responsive */
@media (max-width: 991px) {
    .brand-image {
        margin-top: 30px;
    }

    .section-title {
        text-align: left;
    }
}

@media (max-width: 575px) {
    .brand-stats {
        margin-top: 40px;
    }

    .brand-stat {
        margin-bottom: 30px;
    }
}


/* =========================
   BRAND VALUES SECTION
========================= */

.brand-values .brand-intro {
    font-size: 15px;
    line-height: 1.6;
    color: #777;
    max-width: 840px;
    margin-bottom: 50px;
}



.brand-values-row {
    margin-top: 20px;
}

/* Value card */
.value-card {
    position: relative;
    padding-left: 22px;
}

.value-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #000;
}

.value-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #777;
    margin: 0;
}

/* Orange vertical line */
.value-line {
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 60px;
    background: #f29117;
}

/* Responsive */
@media (max-width: 991px) {
    .value-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 575px) {
    .brand-values .section-title {
        font-size: 22px;
    }

    .brand-values .brand-intro {
        margin-bottom: 40px;
    }
}



/* =========================
   BRAND COMMITMENT
========================= */

.brand-commitment {
    background: #f29117;
    /* reference orange if needed globally */
}

.brand-commitment .stat-icon-circle {
    background: #f29117;
    margin-bottom: 10px;
}

.brand-commitment .stat-icon-circle i {
    color: #fff;
    font-size: 50px;
}

.brand-commitment .section-title {
    color: #000;
    margin-bottom: 50px;
}



/* Item */
.commitment-item p {
    font-size: 14px;
    line-height: 1.4;
    color: #000;
    margin: 0;
}


/* =========================
   FACILITY SECTION
========================= */

.facility-image img {
    width: 100%;
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 10px 30px;
}

.facility-points {
    margin-top: 30px;
}

/* Text block */
.facility-point {
    position: relative;
    padding-left: 22px;
}

.facility-point p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Reusing orange vertical line style */
.facility-point .value-line {
    position: absolute;
    left: 0;
    top: 2px;
    width: 3px;
    height: 44px;
    background: #f29117;
}

/* Responsive */
@media (max-width: 991px) {
    .facility-image {
        margin-bottom: 30px;
    }

    .facility-point {
        margin-bottom: 24px;
    }
}

@media (max-width: 575px) {
    .facility-point p {
        font-size: 13px;
    }
}


/* =========================
   TEAM SECTION
========================= */

.team-heading {
    font-size: 22px;
    font-weight: 600;
    margin: 20px 0;
}

/* Filter */
.team-filter {
    list-style: none;
    padding: 0;
    margin: 0;
}

.team-filter li {
    font-size: 15px;
    margin-bottom: 14px;
    cursor: pointer;
    color: #000;
}

.team-filter li.active {
    color: #f29117;
    font-weight: 600;
}

/* Cards */
.team-cards {
    margin-top: 40px;
}

.team-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}

.team-card img {
    width: 100%;
    height: 360px;
    object-fit: cover;
}

/* Info */
.team-info {
    position: absolute;
    bottom: 0;
    inset-inline: 0;
    padding: 18px;
    background: linear-gradient(180deg,
            rgba(0, 0, 0, 0) 0%,
            rgba(0, 0, 0, 0.8) 100%);
    color: #fff;
}

.team-info h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.team-info p {
    font-size: 13px;
    margin: 0;
}

/* LinkedIn */
.linkedin {
    position: absolute;
    right: 16px;
    bottom: 16px;
    width: 32px;
    height: 32px;
    background: #fff;
    color: #000;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Hide items */
.team-item {
    display: none;
}

.team-item.show {
    display: block;
}

/* Responsive */
@media (max-width: 991px) {
    .team-filter {
        display: flex;
        gap: 20px;
        margin-bottom: 30px;
    }
}



/* Testing facilities 
********************/

.testing-facility-section {
  background-color: #e5e5e5;
  padding: 80px 0;
}

.section-badge {
  display: inline-block;
  background-color: #cfcfcf;
  color: #000;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* .section-title {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.3;
  color: #000;
  margin-bottom: 20px;
} */

.section-divider {
  width: 60px;
  height: 2px;
  background-color: #000;
  margin-bottom: 20px;
}

.section-text {
  font-size: 15px;
  color: #333;
  max-width: 520px;
}

.testing-image {
  border-radius: 4px;
}



/* Collection */
/* //////// //////////////////////
.//////////////////////////////////*/

.collection {
  padding: 80px 0;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}

/* .section-title {
  font-size: 36px;
  margin-bottom: 40px;
} */

/* GRID WRAPPER */
.product-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ROW 1: 2 COLUMNS */
.row-1 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* ROW 2: 3 COLUMNS */
.row-2 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* CARD */
.card {
  position: relative;
  height: 300px;                /* 🔥 FIXED HEIGHT */
  overflow: hidden;
  display: block;
  text-decoration: none;
}

/* IMAGE */
.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.3)
  );
  transition: background 0.4s ease;
}

/* CONTENT */
.content {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  color: #fff;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.content small {
  color: #ff9c00;
  font-size: 12px;
  letter-spacing: 1px;
  font-weight: 600;
}

.content h3 {
  font-size: 26px;
  margin: 6px 0;
}

.content p {
  font-size: 14px;
  line-height: 1.5;
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* BADGE */
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #ff9c00;
  color: #fff;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: bold;
  z-index: 3;
}

/* HOVER */
.card:hover::after {
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.9),
    rgba(0,0,0,0.45)
  );
}

.card:hover .content {
  transform: translateY(0);
}

.card:hover .content p {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .row-1 {
    grid-template-columns: 1fr;
  }

  .row-2 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .row-2 {
    grid-template-columns: 1fr;
  }
}


/* Product category
////////////////////////
/////////////////////*/


       /* ===== Features Section ===== */
        .features-section {
            padding: 60px 0;
            background: #ffffff;
        }

        .features-section .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 60px;
        }

        @media (max-width: 991px) {
            .features-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 575px) {
            .features-grid {
                grid-template-columns: 1fr;
            }
        }

        .feature-card {
            text-align: center;
            padding: 40px 24px;
            background: #f5f5f5;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: #f29117;
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .feature-card:hover {
            background: #ffffff;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #f29117, #d68910);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            color: #ffffff;
            font-size: 32px;
            transition: all 0.4s;
        }

        .feature-card:hover .feature-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 12px;
            color: #333333;
        }

        .feature-card p {
            color: #777777;
            font-size: 14px;
            line-height: 1.7;
        }

        /* ===== CTA Section ===== */
        .cta-section {
            position: relative;
            padding: 120px 0;
            background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1920') center/cover;
            opacity: 0.15;
        }

        .cta-section .container {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            text-align: center;
        }

        .cta-section h2 {
            color: #ffffff;
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .cta-section h2 span {
            color: #f29117;
        }

        .cta-section p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto 40px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            font-weight: 600;
            font-size: 16px;
            border: none;
            cursor: pointer;
            transition: all 0.3s;
        }

        .cta-btn-primary {
            background: #f29117;
            color: #ffffff;
        }

        .cta-btn-primary:hover {
            background: #d68910;
            transform: translateY(-2px);
        }

        .cta-btn-secondary {
            background: transparent;
            color: #ffffff;
            border: 2px solid #ffffff;
        }

        .cta-btn-secondary:hover {
            background: #ffffff;
            color: #000000;
        }

        /* Decorative circles */
        .cta-circle {
            position: absolute;
            border-radius: 50%;
            border: 1px solid rgba(243, 156, 18, 0.3);
        }

        .cta-circle-1 {
            width: 400px;
            height: 400px;
            top: -200px;
            right: -100px;
        }

        .cta-circle-2 {
            width: 300px;
            height: 300px;
            bottom: -150px;
            left: -100px;
        }

        /* =========================
        BUSINESS VERTICALS CAROUSEL
        ========================= */
        .verticals-section {
            padding: 60px 0;
            overflow: hidden;
            background: #fff;
        }

        .verticals-carousel-container {
            overflow: hidden;
            width: 100%;
            position: relative;
            padding: 10px 0 30px;
        }

        .verticals-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.95);
            border: none;
            border-radius: 50%;
            color: #333;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 10;
            box-shadow: 0 4px 15px rgba(0,0,0,0.15);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
        }

        .verticals-carousel-container:hover .verticals-nav {
            opacity: 1;
            visibility: visible;
        }

        .verticals-nav:hover {
            background: #f29117;
            color: #fff;
            transform: translateY(-50%) scale(1.1);
        }

        .verticals-nav.prev {
            left: 15px;
        }

        .verticals-nav.next {
            right: 15px;
        }

        @media (max-width: 768px) {
            .verticals-nav {
                width: 40px;
                height: 40px;
                font-size: 15px;
                opacity: 1;
                visibility: visible;
                display: none; /* Hide on small mobile to avoid blocking content, or keep if needed */
            }
            /* Show on mobile if user wants */
            .verticals-nav {
                display: flex; 
            }
            .verticals-nav.prev { left: 5px; }
            .verticals-nav.next { right: 5px; }
        }

        .verticals-carousel-track {
            display: flex;
            gap: 38px;
            width: max-content;
        }

        .vertical-card {
            position: relative;
            overflow: hidden;
            height: 400px;
            width: calc(100vw - 40px); /* Default 1 card mobile */
            border-radius: 4px;
            cursor: pointer;
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        @media (min-width: 576px) {
            .vertical-card {
                width: calc((100vw - 60px) / 2); /* 2 cards tablet */
            }
        }

        @media (min-width: 992px) {
            .vertical-card {
                width: calc((1140px - 75px) / 3); /* 3 cards desktop (container width - gap) */
            }
        }

        @media (min-width: 1200px) {
            .vertical-card {
                width: calc((1320px - 75px) / 3); /* 3 cards larger desktop */
            }
        }

        .vertical-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .vertical-card:hover img {
            transform: scale(1.15);
        }

        .card-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 60%, rgba(0, 0, 0, 0) 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            padding: 30px 20px;
            transition: background 0.4s ease;
        }

        .vertical-card:hover .card-overlay {
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 100%);
        }

        .card-content {
            text-align: center;
            transform: translateY(35px);
            transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
        }

        .vertical-card:hover .card-content {
            transform: translateY(0);
        }

        .card-heading {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            transition: margin-bottom 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .vertical-card:hover .card-heading {
            margin-bottom: 12px;
        }

        .card-summary {
            color: rgba(255, 255, 255, 0.85);
            font-size: 14px;
            line-height: 1.4;
            opacity: 0;
            max-height: 0;
            overflow: hidden;
            transition: opacity 0.5s ease, max-height 0.5s ease;
        }

        .vertical-card:hover .card-summary {
            opacity: 1;
            max-height: 100px;
        }

        .justify {
            text-align: justify !important;
        }

        .product-category-heading{
            color: #303030;
            font-weight: 700;
            font-size: 20px;
            margin-top: 10px;
        }

        .hidden{
            display: none !important;
        }

/* ===================================================
   AMAZON AVAILABILITY MARQUEE (LIGHT THEME)
=================================================== */
.amazon-marquee-section {
    width: 100%;
    background: #ffffff;
    border-top: 2px solid #f29117;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    overflow: hidden;
    z-index: 20;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}

.amazon-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    padding: 12px 0;
    mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40px, black calc(100% - 40px), transparent);
}

.amazon-marquee-track {
    display: flex;
    width: max-content;
    animation: aidoAmazonMarquee 38s linear infinite;
    will-change: transform;
}

.amazon-marquee-section:hover .amazon-marquee-track {
    animation-play-state: paused;
}

@keyframes aidoAmazonMarquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.amazon-marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.amazon-marquee-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    white-space: nowrap;
}

.amazon-announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff8f0;
    border: 1.5px solid #f29117;
    padding: 7px 18px;
    border-radius: 30px;
    box-shadow: 0 2px 10px rgba(242, 145, 23, 0.16);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.amazon-announcement-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 145, 23, 0.3);
    background: #fff3e0;
}

.amazon-logo-svg {
    height: 20px;
    width: auto;
    max-width: 100px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.amazon-announcement-text {
    color: #111827;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    font-family: inherit;
}

.marquee-bullet {
    color: #f29117;
    font-size: 15px;
    opacity: 0.9;
    line-height: 1;
    user-select: none;
}

.amazon-cat-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #374151;
    font-size: 13.5px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 16px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #d1d5db;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.amazon-cat-link i {
    font-size: 10.5px;
    color: #f29117;
    opacity: 0.9;
    transition: transform 0.25s ease, color 0.25s ease;
}

.amazon-cat-link:hover {
    color: #ffffff;
    background: #f29117;
    border-color: #f29117;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 145, 23, 0.35);
}

.amazon-cat-link:hover i {
    color: #ffffff;
    transform: translate(2px, -2px);
}

@media (max-width: 768px) {
    .amazon-marquee-wrapper {
        padding: 10px 0;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .amazon-announcement-badge {
        padding: 5px 12px;
        gap: 8px;
    }
    .amazon-logo-svg {
        height: 16px;
    }
    .amazon-announcement-text {
        font-size: 12px;
    }
    .amazon-cat-link {
        font-size: 12px;
        padding: 5px 12px;
    }
    .amazon-marquee-item {
        gap: 12px;
        padding: 0 12px;
    }
}

/* Help Section / Contact Banner */
.help-section {
    background: #f7941d;
    width: 100%;
    padding: 70px 0 60px;
}
.help-section h2::after {
    background: white;
    display: none;
}
.help-section .help-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    width: 100%;
}
.help-section .contact-btn {
    background: #fff;
    color: #000;
    text-decoration: none;
    padding: 18px 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    border-radius: 50px;
}
@media (max-width: 991px) {
    .help-section .help-content {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 20px !important;
    }
    .help-section .help-content h2,
    .help-section .help-content .section-title {
        text-align: center !important;
        width: 100% !important;
    }
    .help-section .contact-btn {
        margin: 0 auto !important;
        align-self: center !important;
        display: inline-flex !important;
        justify-content: center !important;
    }

    /* Related Products Section Top Single Row */
    .related-products .section-top,
    .section-top {
        display: flex !important;
        flex-direction: row !important;
        justify-content: space-between !important;
        align-items: center !important;
        width: 100% !important;
        gap: 15px !important;
    }
    .related-products .slider-nav,
    .slider-nav {
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0 !important;
    }
    .related-products .slider-nav button,
    .slider-nav button {
        width: 38px !important;
        height: 38px !important;
        font-size: 15px !important;
    }
}