/*
Theme Name: Vehica Child
Theme URI: https://vehicatheme.com/
Author: TangibleDesign
Author URI: https://tangibledesign.net/
Description: Vehica
Template: vehica
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: translation-ready
Text Domain: vehica
*/


/* ======================================================
   HEADER
====================================================== */

@media (min-width: 1200px) {

  .vehica-menu__wrapper {
    top: 0 !important;
    max-width: 1360px !important;
    margin: 0 auto !important;
    position: static;
    animation: none !important;
  }

  .vehica-menu__desktop {
    width: 100% !important;
  }

  .vehica-menu-sticky-active .vehica-header > div:not(.vehica-menu__transparent-wrapper) {
    height: 100px !important;
  }

  .vehica-menu-sticky-active .vehica-menu__desktop {
    position: fixed !important;
    left: 0 !important;
    background: #fff !important;
    height: 70px !important;
    animation: vehica-slide-down 0.5s;
  }

  .vehica-menu-sticky-active .vehica-menu__wrapper {
    position: relative !important;
    box-shadow: none !important;
  }
}

/* ======================================================
   GLOBAL TITLES (Desktop: Left / Mobile: Center)
====================================================== */

/* Base (Desktop default) */
.w8-services h2,
.w8-global h2,
.section-title h2,
.vehica-heading__title,
.vehica-tabs-top-v2__heading,
.vehica-tabs-top-v1__heading-big {
  font-size: 36px !important;
  font-weight: 800 !important;
  color: #111 !important;
  position: relative;
  margin-bottom: 25px;
  text-align: left; /* 🖥️ Desktop */
}

/* Underline default (Left) */
.vehica-heading__title::after,
.w8-services h2::after,
.w8-global h2::after,
.section-title h2::after,
.vehica-tabs-top-v2__heading::after,
.vehica-tabs-top-v1__heading-big::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #e73023;
  display: block;
  margin-top: 12px;
  margin-left: 0;
  margin-right: 0;
}

.vehica-heading__title::after{
      margin-left: auto;
    margin-right: auto;
}

/* ======================================================
   Mobile & Tablet → Center title + underline
====================================================== */
@media (max-width: 991px) {
    .w8-global h2,
    .w8-services h2,
    .section-title h2{
         text-align: left;
         font-size: 30px !important;
    }
  .vehica-heading__title,
  .vehica-tabs-top-v2__heading,
  .vehica-tabs-top-v1__heading-big {
    font-size: 30px !important;
    text-align: center; /* 📱 Mobile */
  }

    
.vehica-heading__title::after,
  .vehica-tabs-top-v2__heading::after,
  .vehica-tabs-top-v1__heading-big::after {
    margin-left: auto;
    margin-right: auto;
  }
}


/* ======================================================
   GLOBAL NETWORK SECTION
====================================================== */

.w8-global {
  padding: 60px 20px;
  background-color: #eff3fa;
}

.w8-global .container {
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.w8-global .content {
  flex: 1.2;
}

.w8-global .main-text {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 30px;
}

/* Disclaimer */
.disclaimer-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  border: 1px solid #e73023;
  padding: 14px 18px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: #e73023;
  transition: all 0.3s ease;
}

.disclaimer-toggle:hover {
  background: #e73023;
  color: #fff;
}

.disclaimer-toggle .icon {
  font-size: 18px;
  transition: transform 0.4s ease;
}

.disclaimer-toggle.active .icon {
  transform: rotate(45deg);
}

.disclaimer-content {
  height: 0;
  overflow: hidden;
  transition: height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.disclaimer-text {
  margin-top: 18px;
  font-size: 13px;
  line-height: 1.7;
  color: #666;
  background: #fff;
  padding: 20px;
  border-radius: 6px;
}

/* Image */
.w8-global .image-box {
  flex: 0.8;
  position: sticky;
  top: 120px;
}

.w8-global .image-box img {
  max-width: 100%;
  height: auto;
}

/* Responsive */
@media (max-width: 991px) {
  .w8-global {
    padding: 20px 15px;
  }

  .w8-global .container {
    flex-direction: column;
  }

  .w8-global .image-box {
    position: static;
    margin-top: 30px;
  }
}

/* ======================================================
   SERVICES SECTION
====================================================== */

.w8-services {
  padding: 60px 20px;
  background-color: #ffffff;
}

.w8-services .container {
  display: flex;
  gap: 60px;
  width: 100%;
}

.w8-services .content {
  flex: 2;
}

.w8-services p {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 18px;
}

.w8-services .visual {
    flex: 1;
    position: relative;
    border-radius: 12px;
    padding: 90px;
    color: #fff;
    overflow: hidden;
    transition: transform .4s ease, box-shadow .4s ease;
}

.w8-services .visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("https://w8-shipping.aimstyle.me/wp-content/uploads/2025/12/89789.webp");
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    transition: transform 0.6s ease;
    z-index: 0;
}

/* overlay */
.w8-services .visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(231, 48, 35, 0.75);
    z-index: 1;
}

.w8-services .visual > * {
    position: relative;
    z-index: 2;
}

/* hover */
.w8-services .visual:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.w8-services .visual:hover::after {
    transform: scale(1.1);
}

/* overlay color */
.w8-services .visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(231, 48, 35, 0.85),
        rgba(184, 31, 24, 0.85)
    );
    z-index: 1;
}

/* content above overlay */
.w8-services .visual > * {
    position: relative;
    z-index: 2;
}


.w8-services .visual h3{
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

.years-number {
  font-size: 80px;

font-weight: 900;
    text-align: center;
}

.years-text {
  font-size: 16px;
  line-height: 1.8;
  color: #fff;
      text-align: center;
}

@media (max-width: 991px) {
  .w8-services {
    padding: 20px 15px;
  }

  .w8-services .container {
    flex-direction: column;
  }

  .w8-services .visual {
    padding: 25px;
    text-align: center;
  }
}

/* ================= VISION & MISSION – INTERACTIVE ================= */

 /* Section */
    .w8-vm {
        padding: 60px 30px;
        
    }

    /* Grid */
    .w8-vm-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
       
    }

    /* Card */
    .w8-vm-card {
        background: #fff;
        padding: 50px 45px;
        border-radius: 18px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
    }

    /* Accent line */
    .w8-vm-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 0;
        height: 4px;
        background: #e73023;
        transition: width 0.4s ease;
    }

    .w8-vm-card:hover::before {
        width: 100%;
    }

    /* Hover */
    .w8-vm-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
    }

    /* Label */
    .w8-vm-label {
        font-size: 27px;
        font-weight: 800;
        letter-spacing: 1px;
        color: #e73023;
        margin-bottom: 14px;
    }

    /* Text */
    .w8-vm-card p {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .w8-vm-grid {
            grid-template-columns: 1fr;
        }
        
        .w8-vm-card{
            padding: 30px;
        }

        .w8-vm .section-title h2 {
            text-align: center;
            font-size: 30px;
        }

        .w8-vm .section-title h2::after {
            margin-left: auto;
            margin-right: auto;
        }
        
       
    }
    
    
/* ================= COMPLIANCE MISSION STATEMENT ================= */


    /* Section */
    .w8-compliance {
        background: #fff;
    }

    /* Box */
    .w8-compliance-box {
        margin-top: 30px;
        background: #f2f5fb;
        border-radius: 18px;
        padding: 50px 55px;
        border-bottom: 3px solid #e73023
    }

    /* Text */
    .w8-compliance-box p {
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 0;
    }

    /* Highlight */
    .w8-compliance-box strong {
        color: #111;
        font-weight: 700;
    }

    /* Responsive */
    @media (max-width: 991px) {
        .w8-compliance {
            padding: 0;
        }

        .w8-compliance .section-title h2 {
            text-align: center;
            font-size: 30px;
        }

        .w8-compliance .section-title h2::after {
            margin-left: auto;
            margin-right: auto;
        }

        .w8-compliance-box {
            padding: 40px 30px;
            border-left: none;
            border-top: 5px solid var(--w8-red);
        }
    }







/* ======================================================
   CORE VALUES – CLEAN ENTERPRISE STYLE (W8)
====================================================== */

/* Grid layout */
.our_value .vehica-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

/* 4 boxes per row */
.our_value .vehica-features__feature {
    flex: 0 0 calc(25% - 22.5px);
    box-sizing: border-box;

    background: #ffffff;
    border-radius: 18px;
    padding: 30px 25px;

    display: flex;
    flex-direction: column;  
    align-items: flex-start;
    gap: 20px;

    border: 1px solid #eaeaea;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

/* Hover – minimal & professional */
.our_value .vehica-features__feature:hover {
    border-color: #e73023;
    transform: translateY(-4px);
}

/* Icon wrapper */
.our_value .vehica-features__icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;


    background: rgba(231, 48, 35, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icon */
.our_value .vehica-features__icon i {
    font-size: 22px;
    color: #e73023;
}

/* Content */
.our_value .vehica-features__content {
    width: 100%;
    padding: 0;
}

/* Title */
.our_value .vehica-features__label {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 10px;
}

/* Text */
.our_value .vehica-features__text {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
    margin-top: 12px;
}

/* remove theme spacing */
.our_value .vehica-features .vehica-features__feature {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .our_value .vehica-features__feature {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 767px) {
    .our_value .vehica-features__feature {
        flex: 0 0 100%;
    }
}

/* How to it work */

/* How It Works - Scoped */
.w8-howitworks {
  width: 100%;
}

.w8-howitworks .w8-acc {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.w8-howitworks .w8-item {
  background: #fff;
  border: 1px solid rgba(226, 232, 240, .95);
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, .08);
  overflow: hidden;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.w8-howitworks .w8-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 55px rgba(2, 8, 23, .12);
  border-color: rgba(231, 48, 35, .22);
}

.w8-howitworks .w8-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 16px 16px;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-align: left;
}

.w8-howitworks .w8-num {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 16px;
  color: #E73023;
  background: rgba(231, 48, 35, .10);
  border: 1px solid rgba(231, 48, 35, .18);
  flex: 0 0 auto;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}

.w8-howitworks .w8-title {
  flex: 1 1 auto;
  min-width: 0;
}

.w8-howitworks .w8-title strong {
  color: #111;
  font-size: 20px;
  letter-spacing: -.01em;
  overflow: hidden;
  text-overflow: ellipsis;
}

.w8-howitworks .w8-chev {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(226, 232, 240, .95);
  background: rgba(248, 250, 252, .9);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  transition: transform 700ms cubic-bezier(.2, .9, .2, 1), background .22s ease, border-color .22s ease;
  will-change: transform;
}

.w8-howitworks .w8-chev svg {
  width: 18px;
  height: 18px;
  color: #334155;
}

.w8-howitworks .w8-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 700ms cubic-bezier(.2, .9, .2, 1);
  padding: 0 16px;
}

.w8-howitworks .w8-panel-inner {
  overflow: hidden;
  padding: 0 0 16px 46px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.w8-howitworks .w8-panel p {
  margin: 10px 0 12px;
  color: #444;
  font-size: 16px;
  line-height: 1.8;
}

.w8-howitworks .w8-bullets {
  margin: 0;
  padding: 0;
  padding-bottom: 24px;
  margin-top: 20px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.w8-howitworks .w8-bullets li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #444;
  font-size: 14px;
  line-height: 1.8;
}

.w8-howitworks .w8-dot {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 1px solid rgba(231, 48, 35, .22);
  background: rgba(231, 48, 35, .10);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 4px;
}

.w8-howitworks .w8-dot::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 99px;
  background: #E73023;
}

.w8-howitworks .w8-item.is-active .w8-panel {
  grid-template-rows: 1fr;
}

.w8-howitworks .w8-item.is-active .w8-panel-inner {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 120ms;
}

.w8-howitworks .w8-item.is-active .w8-num {
  background: #E73023;
  color: #fff;
  border-color: transparent;
  box-shadow: 0 14px 30px rgba(231, 48, 35, .25);
}

.w8-howitworks .w8-item.is-active .w8-chev {
  background: rgba(231, 48, 35, .10);
  border-color: rgba(231, 48, 35, .18);
  transform: rotate(180deg);
}


.w8-howitworks :focus-visible {
  outline: 3px solid rgba(231, 48, 35, .35);
  outline-offset: 3px;
  border-radius: 14px;
}

@media (max-width: 600px) {
  .w8-howitworks .w8-panel-inner {
    padding-left: 38px;
  }
  
  .w8-howitworks .w8-title strong{
      font-size: 16px;
  }
  
  .w8-howitworks .w8-num{
          width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .w8-howitworks * {
    transition: none !important;
  }
}



/* Wy Choose */

.w8-equal-why {
        padding: 0px 30px;
        background: #fff;
    }


    /* Equal grid */
    .w8-equal-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
        margin-top: 26px;
    }
    
    .w8-equal-why .rf-2{
            grid-template-columns: repeat(2, 1fr);
    }
    
    

    /* Equal cards */
    .w8-equal-card {
        background: #fff;
        border: 1px solid #ececec;
        border-radius: 22px;
        padding: 26px 24px;
        min-height: 220px;

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        position: relative;
        overflow: hidden;
        transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
    }

    /* subtle accent line */
    .w8-equal-card::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 4px;
       /* background: rgba(231, 48, 35, .18); */
    }

    .w8-equal-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
        border-color: rgba(231, 48, 35, .25);
    }

    .w8-equal-card:hover::before {
        background: #e73023;
    }

    .w8-top {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 14px;
    }

    .w8-pill {
        display: inline-flex;
        align-items: center;
        padding: 17px 22px;
    border-radius: 14px;
        background: #e73023;
        color: #fff;
        font-weight: 700;
        font-size: 16px;
        line-height: 1;
        border: 1px solid #e73023;
    }

    .w8-pill--outline {
        background: transparent;
        border-color: rgba(0, 0, 0, .10);
        color: #444;
        font-weight: 700;
    }

    /* ✅ clamp text so cards stay equal */
    .w8-text {
        margin: 0;
        font-size: 16px;
        line-height: 1.8;
        color: #444;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        /* عدّلها 4/5/6 حسب ما يعجبك */
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    /* Responsive */
    @media (max-width: 1200px) {
        .w8-equal-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 768px) {
        .w8-equal-why {
            padding: 0;
        }

        .w8-equal-grid {
            grid-template-columns: 1fr;
        }
    }

    @media (prefers-reduced-motion: reduce) {
        .w8-equal-card {
            transition: none;
        }
    }
    
    
    /* Section Services W8 */
    
            /* Section */
        .services-section-w8 {
               max-width: 100%;
    margin: 40px 10px 30px 10px;
    padding: 0 20px;
        }

        .services-section-w8 .services-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        /* Card */
        .services-section-w8 .service-card {
            background: #fff;
            border-radius: 22px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid #eee;
            transition: all .4s ease;
        }

        /* Background hover layer */
        .services-section-w8 .service-card::before {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, #e73023, #b81f18);
            opacity: 0;
            transition: .4s ease;
            z-index: 0;
        }

        /* Content */
        .services-section-w8 .service-content {
            position: relative;
            z-index: 2;
            transition: .4s ease;
        }

        /* Icon */
        .services-section-w8 .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: rgba(231, 48, 35, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            color: #e73023;
            margin-bottom: 25px;
            transition: .4s ease;
        }

        /* Title */
        .services-section-w8 .service-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #111;
            transition: .4s ease;
        }

        /* Text */
        .services-section-w8 .service-text {
            font-size: 16px;
            line-height: 1.8;
            color: #444;
            transition: .4s ease;
        }

        /* Hover effects */
        .services-section-w8 .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, .25);
            border: 1px solid #ca251c;
        }

        .services-section-w8 .service-card:hover::before {
            opacity: 1;
        }

        .services-section-w8 .service-card:hover .service-icon {
            background: #fff;
            color: #e73023;
            transform: scale(1.1) rotate(-5deg);
        }

        .services-section-w8 .service-card:hover .service-title,
        .services-section-w8 .service-card:hover .service-text {
            color: #fff;
        }

        /* Responsive */
        @media(max-width:991px) {
            .services-section-w8 .services-grid {
                grid-template-columns: 1fr;
            }
            
            .services-section-w8 .service-card{
                padding: 20px;
            }
            
            .services-section-w8{
                 margin: 0;
                padding: 0;
            }
        }
        
        
        
        
        
        
        
        
        
       /* =========================
   W8 VALUE SLIDER (Scoped)
   ========================= */

.w8-value-slider {
    margin: 20px auto;
    padding: 0 20px;
    position: relative;
}

/* Swiper spacing */
.w8-value-slider .valueSwiper {
    padding: 0 0 40px;
}

/* Wrapper */
.w8-value-slider .valueSwiper .swiper-wrapper {
    align-items: stretch;
    padding-top: 20px;
    padding-bottom: 50px;
}

/* Slide */
.w8-value-slider .valueSwiper .swiper-slide {
    display: flex;
    height: auto;
}

/* Card */
.w8-value-slider .value-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 35px;
    border: 1px solid #eee;
    height: 100%;
    width: 100%;
    transition: .35s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Hover overlay */
.w8-value-slider .value-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #e73023, #b81f18);
    opacity: 0;
    transition: .35s ease;
    z-index: 0;
}

/* Content */
.w8-value-slider .value-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

/* Icon */
.w8-value-slider .value-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(231, 48, 35, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #e73023;
    margin-bottom: 20px;
    transition: .35s ease;
}

/* Title */
.w8-value-slider .value-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #111;
    transition: .35s ease;
}

/* Text */
.w8-value-slider .value-text {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    margin-top: 12px;
    transition: .35s ease;
}

/* Hover */
.w8-value-slider .value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, .2);
}

.w8-value-slider .value-card:hover::before {
    opacity: 1;
}

.w8-value-slider .value-card:hover .value-icon {
    background: #fff;
    color: #e73023;
    transform: translateY(-5px) scale(1.08);
}

.w8-value-slider .value-card:hover .value-title,
.w8-value-slider .value-card:hover .value-text {
    color: #fff;
}

/* ===== Custom Slider Arrows ===== */
.w8-value-slider .swiper-button-next,
.w8-value-slider .swiper-button-prev {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
    transition: .3s ease;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.w8-value-slider .swiper-button-next::after,
.w8-value-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
    color: #e73023;
    transition: .3s ease;
}

.w8-value-slider .swiper-button-next:hover,
.w8-value-slider .swiper-button-prev:hover {
    background: #e73023;
    transform: translateY(-50%) scale(1.1);
}

.w8-value-slider .swiper-button-next:hover::after,
.w8-value-slider .swiper-button-prev:hover::after {
    color: #fff;
}

.w8-value-slider .swiper-button-prev {
    left: 0;
}

.w8-value-slider .swiper-button-next {
    right: 0;
}

/* Pagination */
.w8-value-slider .swiper-pagination {
    position: relative;
    margin-top: 0;
}

.w8-value-slider .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
        width: 10px;
    height: 10px
}

.w8-value-slider .swiper-pagination-bullet-active {
    background: #e73023;
}

/* Responsive */
@media (max-width: 1024px) {
    .w8-value-slider .swiper-button-prev {
        left: 5px;
    }

    .w8-value-slider .swiper-button-next {
        right: 5px;
    }
}

@media (max-width: 768px) {
    .w8-value-slider .swiper-button-prev,
    .w8-value-slider .swiper-button-next {
        display: none;
    }
}


        /* =====================
   GALLERY GRID
===================== */
        .w8-gallery {
            max-width: 100%;
            margin: 40px auto;
            padding: 0 20px;
            padding-bottom: 60px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }

        .w8-gallery .item {
            position: relative;
            overflow: hidden;
            border-radius: 18px;
            cursor: pointer;
            aspect-ratio: 1 / 1;
        }

        /* Image */
        .w8-gallery img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform .6s ease;
        }

        /* Overlay */
        .w8-gallery .overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg,
                    rgba(231, 48, 35, .85),
                    rgba(184, 31, 24, .9));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 42px;
            transform: translateY(100%);
            transition: .45s cubic-bezier(.4, 0, .2, 1);
        }

        /* Hover */
        .w8-gallery .item:hover img {
            transform: scale(1.08);
        }

        .w8-gallery .item:hover .overlay {
            transform: translateY(0);
        }

        /* =====================
   RESPONSIVE
===================== */
        @media(max-width:1024px) {
            .w8-gallery {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        @media(max-width:768px) {
            .w8-gallery {
                grid-template-columns: 1fr;
            }
        }

        /* =====================
   LIGHTBOX
===================== */
        .lightbox {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, .85);
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 9999;
        }

        .lightbox.active {
            display: flex;
        }

        .lightbox .swiper {
            width: 90%;
            max-width: 1200px;
        }

        .lightbox img {
            width: 100%;
            height: 80vh;
            object-fit: contain;
        }

        .lightbox-close {
            position: absolute;
            top: 25px;
            right: 30px;
            font-size: 32px;
            color: #fff;
            cursor: pointer;
        }

        .lightbox .swiper-button-next,
        .lightbox .swiper-button-prev {
            color: #fff;
        }
        

/* ======================================================
   Responsive
====================================================== */

/* Tablet & Mobile */
@media (max-width: 991px) {
    .vehica-features__feature {
        width: 100%;
        padding: 35px 30px;
    }
}




/* ======================================================
   MISC
====================================================== */

.vehica-carousel-term-img .vehica-swiper-slide img {
  max-width: 50%;
}

.vehica-social-profiles__v1 a:hover {
  background: #e73023;
}

.sec-center h2{
    text-align: center;
}

.sec-center h2::after {
    margin-left: auto;
    margin-right: auto;
}




/* Mobile */
@media (max-width: 767px) {
  .our_value .vehica-features {
    flex-direction: column;   
    gap: 20px;
  }
    .sec-center h2{
      text-align: left;
  }
  .sec-center h2::after{
      margin-left: 0;
  }
  

  .our_value .vehica-features > * {
    width: 100%;
  }
  
  
}


  /* =====================
   ICON SERVICES SECTION Home Page
===================== */
.w8-icon-services {
    max-width: 1360px;
    margin: 5px auto 0;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.w8-icon-services .icon-box {
    text-decoration: none;
    color: #fff;
    transition: .35s ease;
}

.w8-icon-services .icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: .35s ease;
    background: transparent;
}

.w8-icon-services .icon-circle img {
    width: 52px;
    height: 52px;
    filter: brightness(0) invert(1);
}

.w8-icon-services h4 {
    font-size: 21px;
    font-weight: 700;
    margin-bottom: 10px;
}

.w8-icon-services p {
    font-size: 16px;
    line-height: 1.6;
    opacity: .85;
}

/* Hover */
.w8-icon-services .icon-box:hover .icon-circle {
    background: #e73023;
    border-color: #e73023;
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,.25);
}

.w8-icon-services .icon-box:hover {
   /* color: #e73023; */
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 1024px) {
    .w8-icon-services {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        padding-bottom: 20px;
    }
}

@media (max-width: 600px) {
    .w8-icon-services {
        grid-template-columns: 1fr;
    }

    .w8-icon-services .icon-circle {
        width: 95px;
        height: 95px;
    }
}


/* ===== Tracking Search ===== */
.w8-tracking-wrap {
    max-width: 900px;
    margin: 0 auto 40px;
    color: #fff;
}

/* Label */
.w8-tracking-label {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 500;
}

/* Form */
.w8-tracking-form {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 8px;
    padding: 10px;
    backdrop-filter: blur(6px);
}

/* Inputs */
.w8-tracking-form input {
    flex: 1;
    min-width: 0;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.35);
    border-radius: 6px;
    padding: 12px 14px;
    color: #fff;
    font-size: 14px;
    outline: none;
}

.w8-tracking-form input::placeholder {
    color: rgba(255,255,255,0.7);
}

.w8-tracking-form input:focus {
    border-color: #e73023;
    background: rgba(255,255,255,0.08);
}

/* Button */
.w8-tracking-btn {
    flex-shrink: 0;
    background: #e73023;
    border: none;
    border-radius: 6px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .3s ease;
}

.w8-tracking-btn:hover {
    background: #c91f18;
    transform: scale(1.05);
}

/* ===== Tablet & Mobile ===== */
@media (max-width: 768px) {
    
    .w8-tracking-wrap{
            padding: 10px;
    }

    .w8-tracking-form {
        flex-direction: column;
        gap: 10px;
    }

    .w8-tracking-form input {
        width: 100%;
    }

    .w8-tracking-btn {
        width: 100%;
        height: 46px;
    }
}

