@charset "UTF-8";

/* ============================================================
   MEGA MENU  —  position: fixed (escapes ALL parent contexts)
   ============================================================ */

/* Arrow icons */
.has-megamenu>a .mega-arrow,
.has-dropdown>a .dd-arrow {
  font-size: 15px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 2px;
  transition: transform 0.25s ease;
}

.has-megamenu.mega-open>a .mega-arrow {
  transform: rotate(180deg);
}

/* ── Panel — FIXED so it always spans 100vw regardless of parents ── */
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  /* JS will override with real header bottom */
  background: #ffffff;
  border-top: 3px solid #C6251C;
  border-bottom: 1px solid #f0f0f0;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.13);
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.has-megamenu.mega-open>.mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

/* Inner wrapper — Bootstrap .container handles width/margins/gutter; we add vertical padding only */
.mega-menu__inner {
  padding-top: 28px;
  padding-bottom: 32px;
}

/* Flag icon in column headings (flag-icons library) */
.mega-flag {
  display: inline-block;
  width: 22px;
  height: 16px;
  vertical-align: middle;
  margin-right: 1px;
  border-radius: 2px;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

/* ── Section label ── */
.mega-menu__label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  /* letter-spacing: 2px; */
  color: #000000;
  margin-bottom: 16px;
}

/* ── Column heading (Specialized In) ── */
.mega-col__head {
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #C6251C;
  border-bottom: 2px solid #fde8e7;
  padding-bottom: 7px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mega-col__head i {
  font-size: 15px;
}

/* ── Brand link list (Specialized In) ── */
.mega-brand-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Reset nav flex that bleeds into .mega-brand-list (nav applies display:flex to ALL nested ul) */
.mega-menu .mega-brand-list {
  display: block !important;
  flex-wrap: unset !important;
}

.mega-menu .mega-brand-list li {
  display: block !important;
  margin-right: 0 !important;
  float: none !important;
  position: static !important;
}

/* Strong overrides — beat .main-menu ul li a (text-transform:uppercase, bold, color:white/#F0BA2D) */
.mega-menu .mega-brand-list li a {
  display: block !important;
  padding: 10px 0 10px 2px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #444 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  transition: color 0.18s ease, padding-left 0.18s ease !important;
  line-height: 1.5 !important;
}

.mega-menu .mega-brand-list li a:hover {
  color: #C6251C !important;
  padding-left: 6px !important;
}

/* ── Item grid (Specialized In 5-col) ── */
.mega-menu__grid {
  display: grid;
  gap: 4px;
}

.mega-menu__grid--5col {
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  /* remove gap; padding handles spacing */
}

/* Vertical separator between each column */
.mega-menu__grid--5col>div {
  padding: 0 28px;
  border-right: 1px solid #ebebeb;
}

.mega-menu__grid--5col>div:first-child {
  padding-left: 0;
}

.mega-menu__grid--5col>div:last-child {
  border-right: none;
  padding-right: 0;
}

/* ── Our Services — plain text list, 3 columns ── */
.mega-services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2px 48px;
}

.mega-services-list li {
  display: block !important;
  margin-right: 0 !important;
  float: none !important;
}

.mega-services-list li a {
  display: block !important;
  padding: 10px 0 10px 0px !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: #333 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  transition: color 0.18s ease, border-color 0.18s ease, padding-left 0.18s ease !important;
  line-height: 1.4 !important;
  font-weight: 500 !important;
}

.mega-services-list li a:hover {
  color: #C6251C !important;
  padding-left: 14px !important;
}

/* ============================================================
   NORMAL DROPDOWN  (Bodyworks / Wheel & Suspension / Tuning / Gallery)
   ============================================================ */
.has-dropdown {
  position: relative;
}

.has-dropdown .sub-menu {
  display: block !important;
  /* override .main-menu ul { display:flex } */
  position: absolute;
  top: 100%;
  left: 0;
  transform: translateY(-8px);
  background: #fff;
  min-width: 230px;
  border-radius: 0 0 12px 12px;
  border-top: 3px solid #C6251C;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
  list-style: none;
  padding: 6px 0 10px;
  margin: 0;
  /* NO opacity here — li items own the full animation */
  visibility: hidden;
  pointer-events: none;
  /* On close: slide back up, then hide visibility after items fade out */
  transition: transform 0.22s ease, visibility 0s linear 0.3s;
  z-index: 99999;
}

.has-dropdown:hover .sub-menu {
  visibility: visible;
  /* show immediately on hover */
  pointer-events: auto;
  transform: translateY(0);
  /* On open: visibility instant, transform slides in */
  transition: transform 0.22s ease, visibility 0s linear 0s;
}

/* ── Stagger: each item fades + slides up one by one ──
   Parent has no opacity, so children control ALL visibility.
   Delay increases per child so they appear one after another. ── */
.has-dropdown .sub-menu li {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.has-dropdown:hover .sub-menu li {
  opacity: 1;
  transform: translateY(0);
}

.has-dropdown:hover .sub-menu li:nth-child(1) {
  transition-delay: 0.02s;
}

.has-dropdown:hover .sub-menu li:nth-child(2) {
  transition-delay: 0.08s;
}

.has-dropdown:hover .sub-menu li:nth-child(3) {
  transition-delay: 0.14s;
}

.has-dropdown:hover .sub-menu li:nth-child(4) {
  transition-delay: 0.20s;
}

.has-dropdown:hover .sub-menu li:nth-child(5) {
  transition-delay: 0.26s;
}

.has-dropdown:hover .sub-menu li:nth-child(6) {
  transition-delay: 0.32s;
}

.has-dropdown .sub-menu li a {
  display: block !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  color: #333 !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  text-align: left !important;
  line-height: 1.4 !important;
  white-space: nowrap;
  transition: color 0.15s ease, padding-left 0.15s ease, background 0.15s ease;
}

.has-dropdown .sub-menu li a:hover {
  color: #C6251C !important;
  background: #fff8f8;
  padding-left: 26px !important;
}

/* ============================================================
   STICKY BOOK AN APPOINTMENT BADGE  (right side of page)
   ============================================================ */
.bk-sticky-badge {
  position: fixed;
  right: 0;
  top: 70%;
  transform: translateY(-50%);
  z-index: 99998;
  background: #f0ba2d;
  color: #000;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px;
  border-radius: 0;
  /* box-shadow: -4px 4px 24px rgba(0, 0, 0, 0.22); */
  transition: background 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  user-select: none;
}

.bk-sticky-badge:hover {
  background: #d91111;
  color: #fff;
}

/* Calendar icon — stays horizontal */
.bk-sticky-badge__icon {
  font-size: 20px;
  line-height: 1;
  display: block;
  color: #fff;
}

/* Text — rotated to read bottom-to-top */
.bk-sticky-badge__text {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: 'Futura', Arial, sans-serif;
  color: #fff;
  line-height: 1;
  white-space: nowrap;
}

/* Hide on very small screens if needed */
@media (max-width: 400px) {
  .bk-sticky-badge {
    padding: 14px 8px;
    gap: 8px;
  }

  .bk-sticky-badge__icon {
    font-size: 17px;
  }

  .bk-sticky-badge__text {
    font-size: 10px;
    letter-spacing: 1.2px;
  }
}

/* ============================================================
   BOOK SERVICE MODAL
   ============================================================ */
.bk-modal {
  position: fixed;
  inset: 0;
  z-index: 9999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.bk-modal.bk-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.bk-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  cursor: pointer;
}

.bk-modal__dialog {
  position: relative;
  z-index: 1;
  background: #111111;
  border-radius: 16px;
  width: 92%;
  max-width: 660px;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 40px 32px;
  border: 2px solid rgb(255 255 255 / 15%);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: transform 0.42s cubic-bezier(0.34, 1.3, 0.64, 1), opacity 0.3s ease;
}

.bk-modal.bk-open .bk-modal__dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* scrollbar */
.bk-modal__dialog::-webkit-scrollbar {
  width: 4px;
}

.bk-modal__dialog::-webkit-scrollbar-track {
  background: transparent;
}

.bk-modal__dialog::-webkit-scrollbar-thumb {
  background: #C6251C;
  border-radius: 4px;
}

/* Header */
.bk-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 2px solid rgb(255 255 255 / 15%);
}

.bk-modal__title {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  font-family: 'Futura', Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
}

.bk-modal__title span {
  color: #C6251C;
}

.bk-modal__close {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  flex-shrink: 0;
}

.bk-modal__close:hover {
  background: #C6251C;
}

/* Inputs */
.bk-modal .form-control,
.bk-modal .custom-select-brand {
  background: #1c1c1c !important;
  border: 2px solid rgb(255 255 255 / 15%) !important;
  border-radius: 8px !important;
  color: #fff !important;
  padding: 14px 16px !important;
  font-size: 13.5px !important;
  width: 100% !important;
  height: auto !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease !important;
}

.bk-modal .form-control::placeholder {
  color: #666 !important;
}

.bk-modal .form-control:focus,
.bk-modal .custom-select-brand:focus {
  border-color: #C6251C !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(198, 37, 28, 0.18) !important;
  background: #1f1f1f !important;
}

.bk-modal .custom-select-brand option {
  background: #1c1c1c;
  color: #fff;
}

.bk-modal textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

/* Appointment type row */
.bk-modal .appointment-type {
  background: #1c1c1c;
  border: 2px solid rgb(255 255 255 / 15%);
  border-radius: 8px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
}

.bk-modal .appointment-type>label {
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  margin: 0;
  white-space: nowrap;
}

.bk-modal .form-check-label {
  color: #bbb;
  font-size: 13px;
}

.bk-modal .form-check-input:checked {
  background-color: #C6251C;
  border-color: #C6251C;
}

.bk-modal .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(198, 37, 28, 0.2);
}

/* Submit button */
.bk-modal .bk-submit {
  width: 100%;
  background: #C6251C;
  border: none;
  color: #fff;
  padding: 15px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 4px;
  transition: background 0.2s ease;
  font-family: 'Futura', Arial, sans-serif;
}

.bk-modal .bk-submit:hover {
  background: #a01a13;
}

@media (max-width: 576px) {
  .bk-modal__dialog {
    padding: 24px 18px;
  }

  .bk-modal__title {
    font-size: 15px;
  }
}

/* ============================================================
   MOBILE SIDEBAR MENU  (meanmenu accordion override)
   ============================================================ */

/* Wrapper */
.mobile-menu {
  padding: 0 4px;
}

/* Top-level & all links */
.mean-container .mean-nav ul li a {
  color: #1a1a1a !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.6px !important;
  border-top: 1px solid #efefef !important;
  padding: 13px 16px 13px 16px !important;
  width: 100% !important;
  /* grid column owns the width — no calc() needed */
  transition: color 0.18s ease, background 0.18s ease !important;
}

.mean-container .mean-nav ul li a:hover {
  color: #C6251C !important;
  background: #fff4f4 !important;
}

/* Level 2 (category: German Cars, Our Services items…) */
.mean-container .mean-nav ul li li a {
  font-size: 12.5px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #444 !important;
  padding: 10px 6% 10px 10% !important;
  border-top: 1px solid #f5f5f5 !important;
  opacity: 1 !important;
}

/* Level 2 — Locations (Dubai, Abu Dhabi…) */
.mean-container .mean-nav ul li li a {
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: #222 !important;
  padding: 11px 16px 11px 22px !important;
  border-top: 1px solid #f0f0f0 !important;
  opacity: 1 !important;
}

/* Level 3 — Car categories (German Cars, Italian Cars…) */
.mean-container .mean-nav ul li li li a {
  font-size: 15px !important;
  font-weight: 500 !important;
  text-transform: none !important;
  color: #444 !important;
  padding: 10px 16px 10px 34px !important;
  border-top: 1px solid #f5f5f5 !important;
  font-weight: 500 !important;
}

/* Level 4 — Individual car brands (Audi Repair Dubai…) */
.mean-container .mean-nav ul li li li li a {
  font-size: 14px !important;
  font-weight: 400 !important;
  color: #777 !important;
  padding: 8px 16px 8px 46px !important;
  border-top: 1px solid #fafafa !important;
  text-transform: none !important;
}

.mean-container .mean-nav ul li li li li a:hover {
  color: #C6251C !important;
  background: #fff4f4 !important;
}

.mean-container .mean-nav ul li li li a:hover,
.mean-container .mean-nav ul li li a:hover {
  color: #C6251C !important;
  background: #fff4f4 !important;
}

/* ── Chevron button — ::before pseudo-element (PERMANENT FIX)
   The chevron lives entirely in CSS as a pseudo-element and is therefore
   100% immune to jQuery / meanmenu plugin innerHTML swaps.
   JS sets meanExpand/meanContract to '' so the plugin inserts nothing.
   Layout: flex-wrap so link+button share row 1; submenu wraps to row 2.
   ──────────────────────────────────────────────────────────────────────── */

/* Allow submenu to render outside the clipped nav container */
.mean-container .mean-nav {
  overflow: visible !important;
}

/* li = horizontal flex row; submenu ul wraps to its own row below */
.mean-container .mean-nav ul li {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: stretch !important;
  float: none !important;
  width: 100% !important;
  position: static !important;
}

/* Nav link — order:1 keeps it first visually in the flex row */
.mean-container .mean-nav ul li>a:not(.mean-expand) {
  order: 1 !important;
  flex: 1 1 0 !important;
  min-width: 0 !important;
  width: auto !important;
  float: none !important;
}

/* Expand button — order:2 pins it to row 1 RIGHT SIDE even though
   the plugin appends it AFTER the <ul> in the DOM */
.mean-container .mean-nav ul li>a.mean-expand {
  order: 2 !important;
  flex: 0 0 46px !important;
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  position: static !important;
  height: auto !important;
  padding: 0 !important;
  background: transparent !important;
  border: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  font-size: 0 !important;
  /* suppress any text the plugin might add */
  color: transparent !important;
  transform: none !important;
  transition: background 0.2s ease !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  overflow: visible !important;
}

.mean-container .mean-nav ul li a.mean-expand:hover,
.mean-container .mean-nav ul li a.mean-expand.mean-clicked {
  background: transparent !important;
}

/* THE PERMANENT CHEVRON — lives in CSS, jQuery can never touch it */
.mean-container .mean-nav ul li a.mean-expand::before {
  content: '' !important;
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  flex-shrink: 0 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C6251C' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: contain !important;
  transform: rotate(0deg) !important;
  transition: transform 0.28s ease !important;
  pointer-events: none !important;
}

/* When submenu is open: rotate chevron 180° → points up */
.mean-container .mean-nav ul li a.mean-expand.mean-clicked::before {
  transform: rotate(180deg) !important;
}

/* Sub-level chevrons slightly smaller */
.mean-container ul.sub-menu li a.mean-expand::before {
  width: 17px !important;
  height: 17px !important;
}

/* Submenu ul — order:3 forces it to row 2 (below link+button on row 1) */
.mean-container .mean-nav ul li>ul {
  order: 3 !important;
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* Remove last border */
.mean-container .mean-nav ul li.mean-last a {
  border-bottom: none !important;
}

/* ============================================================
   SPECIALIZED IN — location tab system
   ============================================================ */
.spec-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

/* Static location panels — only the .active one is visible */
.spec-panel {
  display: none;
}

.spec-panel.active {
  display: block;
}

.spec-tab {
  padding: 10px 25px;
  font-size: 16px;
  font-weight: 600;
  color: #444;
  background: none;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
  font-family: 'Futura', Arial, sans-serif;
  letter-spacing: 0.3px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.spec-tab:hover:not(.active) {
  color: #C6251C;
  background: #fff4f4;
}

/* Pin icon — red on inactive, white on active */
.spec-tab i {
  font-size: 15px;
  color: #C6251C;
  vertical-align: middle;
  margin-right: 3px;
  line-height: 1;
}

.spec-tab.active {
  background: #C6251C;
  color: #fff;
  border-color: #C6251C;
}

.spec-tab.active i {
  color: #fff;
}

/* ============================================================
   SCROLL REVEAL — sr-item system
   ============================================================ */

/* Hidden start state */
.sr-item {
  opacity: 0;
  transition: opacity 0.75s ease, transform 0.75s ease;
  will-change: opacity, transform;
}

/* Direction variants */
.sr-up {
  transform: translateY(55px);
}

.sr-left {
  transform: translateX(-60px);
}

.sr-right {
  transform: translateX(60px);
}

/* Visible / revealed state */
.sr-item.sr-visible {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Stagger delays */
.sr-d1 {
  transition-delay: 0.1s;
}

.sr-d2 {
  transition-delay: 0.3s;
}

.sr-d3 {
  transition-delay: 0.5s;
}

/* ============================================================
   HERO BANNER — CSS keyframe animations (fire on page load)
   ============================================================ */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Heading — drops in from above */
.hero-anim-title {
  animation: heroFadeDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

/* Paragraph — rises from below */
.hero-anim-para {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

/* Buttons — rises from below */
.hero-anim-btns {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.75s both;
}

/* Contact info banner columns — staggered via inline animation-delay */
.hero-anim-cib {
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* reset css start */
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 5px;
  height: 4px
}

::-webkit-scrollbar-track {
  background-color: #ebebeb;
  -webkit-border-radius: 10px;
  border-radius: 10px
}

::-webkit-scrollbar-thumb {
  -webkit-border-radius: 10px;
  border-radius: 10px;
  background: #F0BA2D
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  padding: 0;
  margin: 0;
  font-weight: 400;
  position: relative;
  line-height: 29px;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease-out 0s;
}

button {
  cursor: pointer;
}

*:focus {
  outline: none;
}

button {
  border: none;
  font-family: Arial, Helvetica, sans-serif;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

span {
  font-family: Arial, Helvetica, sans-serif;
}

button:focus {
  outline: none;
}

a {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  font-family: Arial, Helvetica, sans-serif;
}

a:hover {
  text-decoration: none;
  color: #fff;
}

table {
  width: 100%;
}

p,
li,
span {
  color: #000;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
}

/* reset css end */
/* global css start */
.nice-select {
  background-color: transparent;
  height: 40px !important;
  line-height: 40px !important;
  min-height: 40px !important;
  padding: 0 30px;
}

.nice-select span {
  color: #000;
}

.nice-select .list li {
  margin-right: 0 !important;
}

.nice-select .list .option {
  color: #000;
}

.nice-select .list .option.selected,
.nice-select .list .option:hover {
  border: none !important;
}

/* global css end */
.bg_img {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.dark-bg {
  background-color: #010103;
}

.grey-bg {
  background: #F4F1EE;
}

.white {
  color: #ffffff;
}

.f-right {
  float: right;
}

.section-heading {
  position: relative;
  z-index: 2;
}

@media (max-width: 991px) {
  .section-heading {
    text-align: center;
  }
}

.section-heading .sub-title {
  color: #ffffff;
  background: #F0BA2D;
  font-family: Arial, Helvetica, sans-serif;
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  padding: 1.5px 13px;
  letter-spacing: 2px;
  border-radius: 3px;
  line-height: 22px;
  margin-bottom: 23px;
}

.section-heading .title {
  color: #ffffff;
  font-size: 55px;
  line-height: 57px;
  text-transform: uppercase;
}

@media (max-width: 767px) {
  .section-heading .title {
    font-size: 36px;
    line-height: 38px;
  }
}

.section-heading p {
  font-size: 18px;
}

.section-heading p:not(:last-child) {
  margin-bottom: 35px;
}

.section-heading__black .title {
  color: #000;
}

.border-effect a,
.border-effect span.border-effect {
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -o-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.7% 0px;
  background-repeat: no-repeat;
  color: inherit;
}

.border-effect a:hover,
.border-effect span.border-effect:hover {
  background-size: 100% 2px;
}

span.border-effect {
  position: relative;
  display: inline;
  background-image: -webkit-gradient(linear, left top, right top, from(currentColor), to(currentColor));
  background-image: -webkit-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: -o-linear-gradient(left, currentColor 0%, currentColor 100%);
  background-image: linear-gradient(to right, currentColor 0%, currentColor 100%);
  background-size: 0px 2px;
  background-position: 0px 95%;
  -webkit-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  -o-transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  transition: background-size 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86) 0s;
  padding: 0.7% 0px;
  background-repeat: no-repeat;
  color: inherit;
}

span.border-effect:hover {
  background-size: 100% 2px;
}



.custom-padding {
  padding-left: 15px !important;
  padding-right: 15px !important;
}


/*--
    - Margin & Padding
-----------------------------------------*/
/*-- Margin Top Negative --*/
.mt-none-5 {
  margin-top: -5px;
}

.mt-none-10 {
  margin-top: -10px;
}

.mt-none-15 {
  margin-top: -15px;
}

.mt-none-20 {
  margin-top: -20px;
}

.mt-none-25 {
  margin-top: -25px;
}

.mt-none-30 {
  margin-top: -30px;
}

.mt-none-35 {
  margin-top: -35px;
}

.mt-none-40 {
  margin-top: -40px;
}

.mt-none-45 {
  margin-top: -45px;
}

.mt-none-50 {
  margin-top: -50px;
}

.mt-none-55 {
  margin-top: -55px;
}

.mt-none-60 {
  margin-top: -60px;
}

.mt-none-65 {
  margin-top: -65px;
}

.mt-none-70 {
  margin-top: -70px;
}

.mt-none-75 {
  margin-top: -75px;
}

.mt-none-80 {
  margin-top: -80px;
}

.mt-none-85 {
  margin-top: -85px;
}

.mt-none-90 {
  margin-top: -90px;
}

.mt-none-95 {
  margin-top: -95px;
}

.mt-none-100 {
  margin-top: -100px;
}

/*-- Margin Top --*/
.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

.mt-60 {
  margin-top: 60px;
}

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mt-105 {
  margin-top: 105px;
}

.mt-110 {
  margin-top: 110px;
}

.mt-115 {
  margin-top: 115px;
}

.mt-120 {
  margin-top: 120px;
}

.mt-125 {
  margin-top: 125px;
}

.mt-130 {
  margin-top: 130px;
}

.mt-135 {
  margin-top: 135px;
}

.mt-140 {
  margin-top: 140px;
}

.mt-145 {
  margin-top: 145px;
}

.mt-150 {
  margin-top: 150px;
}

.mt-155 {
  margin-top: 155px;
}

.mt-160 {
  margin-top: 160px;
}

.mt-165 {
  margin-top: 165px;
}

.mt-170 {
  margin-top: 170px;
}

.mt-175 {
  margin-top: 175px;
}

.mt-180 {
  margin-top: 180px;
}

.mt-185 {
  margin-top: 185px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-195 {
  margin-top: 195px;
}

.mt-200 {
  margin-top: 200px;
}

/*-- Margin Bottom --*/
.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb-105 {
  margin-bottom: 105px;
}

.mb-110 {
  margin-bottom: 110px;
}

.mb-115 {
  margin-bottom: 115px;
}

.mb-120 {
  margin-bottom: 120px;
}

.mb-125 {
  margin-bottom: 125px;
}

.mb-130 {
  margin-bottom: 130px;
}

.mb-135 {
  margin-bottom: 135px;
}

.mb-140 {
  margin-bottom: 140px;
}

.mb-145 {
  margin-bottom: 145px;
}

.mb-150 {
  margin-bottom: 150px;
}

.mb-155 {
  margin-bottom: 155px;
}

.mb-160 {
  margin-bottom: 160px;
}

.mb-165 {
  margin-bottom: 165px;
}

.mb-170 {
  margin-bottom: 170px;
}

.mb-175 {
  margin-bottom: 175px;
}

.mb-180 {
  margin-bottom: 180px;
}

.mb-185 {
  margin-bottom: 185px;
}

.mb-190 {
  margin-bottom: 190px;
}

.mb-195 {
  margin-bottom: 195px;
}

.mb-200 {
  margin-bottom: 200px;
}

/*-- Margin Left --*/
.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.ml-105 {
  margin-left: 105px;
}

.ml-110 {
  margin-left: 110px;
}

.ml-115 {
  margin-left: 115px;
}

.ml-120 {
  margin-left: 120px;
}

.ml-125 {
  margin-left: 125px;
}

.ml-130 {
  margin-left: 130px;
}

.ml-135 {
  margin-left: 135px;
}

.ml-140 {
  margin-left: 140px;
}

.ml-145 {
  margin-left: 145px;
}

.ml-150 {
  margin-left: 150px;
}

.ml-155 {
  margin-left: 155px;
}

.ml-160 {
  margin-left: 160px;
}

.ml-165 {
  margin-left: 165px;
}

.ml-170 {
  margin-left: 170px;
}

.ml-175 {
  margin-left: 175px;
}

.ml-180 {
  margin-left: 180px;
}

.ml-185 {
  margin-left: 185px;
}

.ml-190 {
  margin-left: 190px;
}

.ml-195 {
  margin-left: 195px;
}

.ml-200 {
  margin-left: 200px;
}

.gm-style .place-card-large {
  padding: 9px 4px 9px 11px;
  display: none;
}

.gm-style .place-card div,
.gm-style .place-card a,
.gm-style .default-card div,
.gm-style .default-card a {
  color: #5b5b5b;
  font-family: Roboto, Arial;
  font-size: 12px;
  -moz-user-select: text;
  -webkit-user-select: text;
  -ms-user-select: text;
  user-select: text;
  display: none;
}

/*-- Margin Right --*/
.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.mr-105 {
  margin-right: 105px;
}

.mr-110 {
  margin-right: 110px;
}

.mr-115 {
  margin-right: 115px;
}

.mr-120 {
  margin-right: 120px;
}

.mr-125 {
  margin-right: 125px;
}

.mr-130 {
  margin-right: 130px;
}

.mr-135 {
  margin-right: 135px;
}

.mr-140 {
  margin-right: 140px;
}

.mr-145 {
  margin-right: 145px;
}

.mr-150 {
  margin-right: 150px;
}

.mr-155 {
  margin-right: 155px;
}

.mr-160 {
  margin-right: 160px;
}

.mr-165 {
  margin-right: 165px;
}

.mr-170 {
  margin-right: 170px;
}

.mr-175 {
  margin-right: 175px;
}

.mr-180 {
  margin-right: 180px;
}

.mr-185 {
  margin-right: 185px;
}

.mr-190 {
  margin-right: 190px;
}

.mr-195 {
  margin-right: 195px;
}

.mr-200 {
  margin-right: 200px;
}

/*-- Padding Top --*/
.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pt-105 {
  padding-top: 105px;
}

.pt-110 {
  padding-top: 110px;
}

.pt-115 {
  padding-top: 115px;
}

.pt-120 {
  padding-top: 120px;
}

.pt-125 {
  padding-top: 125px;
}

.pt-130 {
  padding-top: 130px;
}

.pt-135 {
  padding-top: 135px;
}

.pt-140 {
  padding-top: 140px;
}

.pt-145 {
  padding-top: 145px;
}

.pt-150 {
  padding-top: 150px;
}

.pt-155 {
  padding-top: 155px;
}

.pt-160 {
  padding-top: 160px;
}

.pt-165 {
  padding-top: 165px;
}

.pt-170 {
  padding-top: 170px;
}

.pt-175 {
  padding-top: 175px;
}

.pt-180 {
  padding-top: 180px;
}

.pt-185 {
  padding-top: 185px;
}

.pt-190 {
  padding-top: 190px;
}

.pt-195 {
  padding-top: 195px;
}

.pt-200 {
  padding-top: 200px;
}

/*-- Padding Bottom --*/
.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pb-105 {
  padding-bottom: 105px;
}

.pb-110 {
  padding-bottom: 110px;
}

.pb-115 {
  padding-bottom: 115px;
}

.pb-120 {
  padding-bottom: 120px;
}

.pb-125 {
  padding-bottom: 125px;
}

.pb-130 {
  padding-bottom: 130px;
}

.pb-135 {
  padding-bottom: 135px;
}

.pb-140 {
  padding-bottom: 140px;
}

.pb-145 {
  padding-bottom: 145px;
}

.pb-150 {
  padding-bottom: 150px;
}

.pb-155 {
  padding-bottom: 155px;
}

.pb-160 {
  padding-bottom: 160px;
}

.pb-165 {
  padding-bottom: 165px;
}

.pb-170 {
  padding-bottom: 170px;
}

.pb-175 {
  padding-bottom: 175px;
}

.pb-180 {
  padding-bottom: 180px;
}

.pb-185 {
  padding-bottom: 185px;
}

.pb-190 {
  padding-bottom: 190px;
}

.pb-195 {
  padding-bottom: 195px;
}

.pb-200 {
  padding-bottom: 200px;
}

/*-- Padding Left --*/
.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

.pl-105 {
  padding-left: 105px;
}

.pl-110 {
  padding-left: 110px;
}

.pl-115 {
  padding-left: 115px;
}

.pl-120 {
  padding-left: 120px;
}

.pl-125 {
  padding-left: 125px;
}

.pl-130 {
  padding-left: 130px;
}

.pl-135 {
  padding-left: 135px;
}

.pl-140 {
  padding-left: 140px;
}

.pl-145 {
  padding-left: 145px;
}

.pl-150 {
  padding-left: 150px;
}

.pl-155 {
  padding-left: 155px;
}

.pl-160 {
  padding-left: 160px;
}

.pl-165 {
  padding-left: 165px;
}

.pl-170 {
  padding-left: 170px;
}

.pl-175 {
  padding-left: 175px;
}

.pl-180 {
  padding-left: 180px;
}

.pl-185 {
  padding-left: 185px;
}

.pl-190 {
  padding-left: 190px;
}

.pl-195 {
  padding-left: 195px;
}

.pl-200 {
  padding-left: 200px;
}

/*-- Padding Right --*/
.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pr-105 {
  padding-right: 105px;
}

.pr-110 {
  padding-right: 110px;
}

.pr-115 {
  padding-right: 115px;
}

.pr-120 {
  padding-right: 120px;
}

.pr-125 {
  padding-right: 125px;
}

.pr-130 {
  padding-right: 130px;
}

.pr-135 {
  padding-right: 135px;
}

.pr-140 {
  padding-right: 140px;
}

.pr-145 {
  padding-right: 145px;
}

.pr-150 {
  padding-right: 150px;
}

.pr-155 {
  padding-right: 155px;
}

.pr-160 {
  padding-right: 160px;
}

.pr-165 {
  padding-right: 165px;
}

.pr-170 {
  padding-right: 170px;
}

.pr-175 {
  padding-right: 175px;
}

.pr-180 {
  padding-right: 180px;
}

.pr-185 {
  padding-right: 185px;
}

.pr-190 {
  padding-right: 190px;
}

.pr-195 {
  padding-right: 195px;
}

.pr-200 {
  padding-right: 200px;
}

/* typography css start */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  color: #000;
  margin: 0;
  line-height: 1.4;
  font-family: 'Futura';

}

h2 {
  font-size: 44px;
  line-height: 1.3;
  margin-bottom: 20px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

/* typography css end */
/*--
    - Overlay
------------------------------------------*/
[data-overlay] {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  z-index: 1;
}

[data-overlay]::before {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*-- Overlay Color --*/
[data-overlay=light]::before {
  background-color: #ffffff;
}

[data-overlay=dark]::before {
  background-color: #000;
}

/*-- Overlay Opacity --*/
[data-opacity="1"]::before {
  opacity: 0.1;
}

[data-opacity="2"]::before {
  opacity: 0.2;
}

[data-opacity="3"]::before {
  opacity: 0.3;
}

[data-opacity="4"]::before {
  opacity: 0.4;
}

[data-opacity="5"]::before {
  opacity: 0.5;
}

[data-opacity="6"]::before {
  opacity: 0.6;
}

[data-opacity="65"]::before {
  opacity: 0.65;
}

[data-opacity="7"]::before {
  opacity: 0.7;
}

[data-opacity="8"]::before {
  opacity: 0.8;
}

[data-opacity="9"]::before {
  opacity: 0.9;
}

/* Heder css start*/
.site-header {
  width: 100%;
  z-index: 9;
}

.site-header .logo {
  margin-left: -150px;
}

.site-header__3 {
  padding: 10px 0px;
}

@media (max-width: 1199px) {
  .site-header__3 {
    padding: 0px 0px;
  }
}

@media (max-width: 991px) {
  .site-header__3 {
    padding: 10px 0px;
  }
}

.site-header__3 .wrapper {
  width: 200px;
}

.site-header__4 {
  border: none;
}

@media (max-width: 1199px) {
  .site-header__4 {
    padding: 15px 0px;
  }
}

.header-top {
  padding: 30.5px 0px;
  border-bottom: 1px solid #32323D;
}

@media (max-width: 1199px) {
  .header-top__left {
    justify-content: center;
  }
}

@media (max-width: 991px) {
  .header-top__left .logo {
    display: none;
  }
}

@media (max-width: 767px) {
  .header-top__right {
    margin-top: 25px;
    flex-direction: column;
    justify-content: center;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top__right {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}

.header-top__right a {
  text-decoration: none;
}

.header-top__right .tel {
  color: #ffffff;
  font-size: 18px;
}

.header-top__right .tel i {
  color: #F0BA2D;
  padding-right: 15px;
  font-size: 19px;
}

.header-top__right .site-btn {
  margin-left: 80px;
}

@media (max-width: 1199px) {
  .header-top__right .site-btn {
    margin-left: 40px;
  }
}

@media (max-width: 767px) {
  .header-top__right .site-btn {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top__right .site-btn {
    margin-left: 40px;
    margin-top: 0px;
  }
}

@media (max-width: 1199px) {
  .header-top__right--2 {
    margin-top: 20px;
  }
}

.header-top__2 {
  border-color: #E2DFDD;
}

.header-top__2 .site-btn {
  margin-left: 100px;
}

@media (max-width: 1199px) {
  .header-top__2 .site-btn {
    margin-left: 50px;
  }
}

@media (max-width: 767px) {
  .header-top__2 .site-btn {
    margin-left: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top__2 .site-btn {
    margin-left: 50px;
  }
}

.header-top__infos {
  margin: 0;
}

@media (max-width: 991px) {
  .header-top__infos {
    padding-left: 0px;
  }
}

@media (max-width: 767px) {
  .header-top__infos {
    flex-direction: column;
    margin-top: -10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top__infos {
    flex-direction: row;
    margin-top: 0px;
  }
}

.header-top__infos li {
  color: #6c6c6c;
  text-transform: uppercase;
  font-weight: 500;
}

.header-top__infos li:not(:last-child) {
  margin-right: 65px;
}

@media (max-width: 767px) {
  .header-top__infos li:not(:last-child) {
    margin-right: 0px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top__infos li:not(:last-child) {
    margin-right: 55px;
  }
}

.header-top__infos li i {
  color: #F0BA2D;
  padding-right: 10px;
  font-size: 19px;
}

.header-top__infos li a {
  color: #6c6c6c;
  text-decoration: none;
}

@media (max-width: 767px) {
  .header-top__infos li {
    margin-top: 10px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .header-top__infos li {
    margin-top: 0px;
  }
}

.logo img {
  max-width: 79px;
}

/* Navigation css */
.main-menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  align-items: center;
}

.main-menu ul li {
  position: relative;
}

.main-menu ul li:not(:last-child) {
  margin-right: 32px;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 20px;
  }
}

@media (max-width: 1199px) {
  .main-menu ul li:not(:last-child) {
    margin-right: 11px;
  }
}

.main-menu ul li a {
  display: block;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  padding: 35px 0px;
  position: relative;
  text-transform: uppercase;
  line-height: 22px;
  font-weight: bold;
}

.main-menu ul li a.site-btn {
  display: flex;
  align-items: center;
  text-decoration: none;
  font-size: 15px;
  color: #ffffff;
  padding: 10px 23px 10px 20px;
  position: relative;
  text-transform: uppercase;
  line-height: 22px;
  font-weight: bold;
}

.main-menu ul li a.site-btn span.book-serv {
  font-size: 14px;
  color: #ffffff;
  line-height: 22px;
}

.main-menu ul li:hover a {
  color: #F0BA2D;
}

.main-menu ul li:hover>.sub-menu {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scaleY(100%);
  -ms-transform: scaleY(100%);
  transform: scaleY(100%);
}

.main-menu ul li .sub-menu {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: absolute;
  min-width: 240px;
  top: 100%;
  visibility: hidden;
  opacity: 0;
  background: #ffffff;
  padding: 20px 0;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.05);
  z-index: 3;
  text-align: left;
  transform-origin: 50% 0;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  border-radius: 0;
}

.main-menu ul li .sub-menu li {
  margin-right: 0px;
}

.main-menu ul li .sub-menu li a {
  color: #010103;
  padding: 10px 30px;
}

.main-menu ul li .sub-menu li a::after {
  left: 15px;
}

.main-menu ul li .sub-menu li a:hover::after {
  left: 10px;
}



.main-menu ul li .sub-menu li:hover>a::after {
  left: 10px;
}

.main-menu ul li .sub-menu ul {
  left: 100%;
  top: 0px;
}

.main-menu ul li .sub-menu .active>a::after {
  left: 10px;
}

.main-menu ul .active>a::after {
  opacity: 1;
  visibility: visible;
  left: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu__2 ul li:not(:last-child) {
    margin-right: 20px;
  }
}

.main-menu__2 ul li a {
  color: #000;
  font-weight: 500;
}

@media (max-width: 1199px) {
  .main-menu__3 {
    margin-left: 0px;
  }
}

@media (max-width: 991px) {
  .main-menu__3 {
    display: none;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1500px) {
  .main-menu__3 ul li:not(:last-child) {
    margin-right: 13px;
  }
}

@media (max-width: 1250px) {
  .main-menu__3 ul li:not(:last-child) {
    margin-right: 2px;
  }
}

@media (max-width: 1199px) {
  .main-menu__3 ul li:not(:last-child) {
    margin-right: 5px;
  }
}

@media (max-width: 1199px) {
  .main-menu__3 ul li a {
    padding: 35px 18px;
  }
}

.main-menu__4 ul li a {
  color: #000;
  font-weight: 500;
}

.menu-area {
  position: relative;
  z-index: 99;
}

@media (max-width: 991px) {
  .menu-area {
    padding-top: 15px;
  }
}

.menu-area__right .item {
  font-size: 19px;
  color: #ffffff;
}

.menu-area__right .item i {
  color: #ffffff;
}

.menu-area__right--2 .item {
  color: #000;
}

.menu-area__right--2 .item i {
  color: #000;
}

.menu-area__right--4 .item {
  color: #000;
}

.menu-area__right--4 .item i {
  color: #000;
}

@media (max-width: 991px) {
  .menu-area__3 {
    padding-top: 0px;
  }
}

.menu-area.sticky-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 99;
  background: #010103;
  -webkit-box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 13px 25px -12px rgba(0, 0, 0, 0.1);
}

@keyframes stickyFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.menu-area.sticky-header {
  /* existing styles... */
  animation: stickyFadeIn 0.3s ease;
}

@media (max-width: 991px) {
  .menu-area.sticky-header {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.menu-area-2.sticky-header {
  background-color: #ffffff;
}

@media (max-width: 991px) {
  .menu-area-2.sticky-header {
    padding-top: 10px;
    padding-bottom: 0px;
  }
}

.menu-area__4.sticky-header {
  background-color: #ffffff;
}

.menu-area.animated {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
}

.mean-container .mean-nav ul li a:hover {
  color: #F0BA2D;
}

/* Social link css */
.social-links a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 4px;
  font-size: 13px;
  border: 1px solid #808080;
  text-align: center;
  line-height: 27px;
  color: #808080;
  text-decoration: none;
}

.social-links a:not(:last-child) {
  margin-right: 10px;
}

.social-links a:hover {
  border-color: #ffffff;
  color: #ffffff;
}

.social-links__2 a {
  border-color: #E2DFDD;
}

.social-links__2 a:hover {
  border-color: #999999;
  color: #000;
}

/* Button css */
.site-btn {
  font-size: 20px;
  text-transform: capitalize;
  color: #ffffff;
  padding: 10px 25px 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  align-items: center;
  display: flex;
  font-weight: bold;
}

.site-btn svg {
  margin-right: 10px;
}

.wp-btn {
  font-size: 20px;
  text-transform: capitalize;
  color: #ffffff;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  position: relative;
  z-index: 1;
  align-items: center;
  display: flex;
  font-weight: bold;
}

.wp-btn svg {
  margin-right: 10px;
}


.btns {
  gap: 40px;
}

.site-btn::after {
  background: #C6251C;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  content: "";
  top: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  right: 0;
  z-index: -1;
  transform: skewX(-12deg);
}

.wp-btn.green-bg::after {
  background: #48C857;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  position: absolute;
  content: "";
  top: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  right: 0;
  z-index: -1;
  transform: skewX(-12deg);
}

.site-btn::before {
  background: #F0BA2D;
  width: 94%;
  height: 68px;
  border-radius: 10px;
  position: absolute;
  content: "";
  top: -10px;
  bottom: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  right: -15px;
  z-index: -1;
  transform: skewX(-12deg);
  display: flex;
  align-items: center;
}

.main-menu ul li a.site-btn::before {
  background: #F0BA2D;
  width: 94%;
  height: 62px;
  border-radius: 10px;
  position: absolute;
  content: "";
  top: -10px;
  bottom: 0;
  -webkit-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  -o-transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
  right: -13px;
  z-index: -1;
  transform: skewX(-12deg);
  display: flex;
  align-items: center;
}


.read-more {
  color: #a7a7a7;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 15px;
  display: inline-block;
}

.read-more i {
  padding-left: 10px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.read-more:hover {
  color: #ffffff;
}

.read-more:hover i {
  padding-left: 5px;
}

.read-more__2 {
  color: #6c6c6c;
}

.go-top {
  position: absolute;
  flex-direction: column;
  font-size: 15px;
  color: #a7a7a7;
  text-transform: uppercase;
  text-decoration: none;
  top: -25px;
  left: 50%;
  display: inline-block;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.go-top span {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.go-top span:hover {
  color: #ffffff;
}

.go-top i {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  background-color: #010103;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  margin-bottom: 10px;
  border: 1px solid #a7a7a7;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.go-top i:hover {
  background-color: #F0BA2D;
}

.go-top__bottom {
  left: 0;
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
  position: static;
  color: #ffffff;
}

@media (max-width: 991px) {
  .go-top__bottom {
    margin-top: 30px;
  }
}

.go-top__bottom span {
  color: #ffffff;
}

.go-top__bottom i {
  display: inline-block;
  width: auto;
  height: auto;
  border: none;
  margin-bottom: 0;
  padding-left: 5px;
  background-color: transparent;
}

.go-top__white i {
  background: #ffffff;
  border-color: #E2DFDD;
  color: #000;
  margin-bottom: 0px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.go-top__white i:hover {
  background-color: #F0BA2D;
  border-color: #F0BA2D;
  color: #ffffff;
}

@media (max-width: 991px) {
  .btns-wrapper .site-btn {
    margin-top: 20px;
  }
}

.share-btn {
  color: #6c6c6c;
}

.inline-btn {
  width: 45px;
  height: 45px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: #776c62;
  border: 1px solid #E2DFDD;
  border-radius: 5px;
  text-decoration: none;
}

.inline-btn:hover {
  color: #ffffff;
  background-color: #F0BA2D;
  border-color: #F0BA2D;
}

/* search css */
.search {
  position: relative;
}

.search__trigger {
  padding: 10px 12px;
}

.search__trigger .open,
.search__trigger .close {
  cursor: pointer;
  line-height: 60px;
  color: #000;
}

.search__trigger .close {
  display: none;
}

.search__form {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transform: scale(0.9);
  padding: 15px;
  right: 0;
  top: 80px;
  width: 350px;
  z-index: 99;
}

@media (max-width: 767px) {
  .search__form {
    width: 280px;
    right: -100px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .search__form {
    width: 350px;
    right: 0;
  }
}

.search__form form {
  position: relative;
}

.search__form input {
  width: 100%;
  height: 55px;
  border: 0;
  background: #F4F1EE;
  padding: 20px;
}

.search__form button {
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  background: #1b2026;
  height: 55px;
  width: 55px;
  color: #fff;
  font-size: 18px;
  line-height: 60px;
}

.search__form.active {
  transform: scale(1);
  opacity: 1;
  visibility: visible;
  transition: 0.3s;
  background: #fff;
}

/* side info css */
.hamburger-trigger {
  margin-left: 12px;
  padding: 10px 12px;
  cursor: pointer;
}

.side-info {
  padding-left: 20px;
  padding-right: 20px;
}

.side-info .title {
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
}

.side-info .mb-5 {
  margin-bottom: 5px !important;
}

.side-info p {
  font-size: 15x;
  line-height: 28px;
}

.side-info__close {
  top: 0;
  left: 0;
  background: #010103;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  border-radius: 50%;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.side-info__close a {
  display: block;
  height: 100%;
  width: 100%;
  color: #ffffff;
}

.side-info__close:hover {
  background: #F0BA2D;
}

.side-info__wrapper {
  padding: 20px;
}

.side-info .social-links a:hover {
  color: #F0BA2D;
  border-color: #F0BA2D;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.7);
  height: 100%;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 99;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s linear 0s;
  transition: all 600ms ease;
  -webkit-transition: all 600ms ease;
  -moz-transition: all 600ms ease;
  -ms-transition: all 600ms ease;
  -o-transition: all 600ms ease;
}

.overlay.active {
  opacity: 0.5;
  visibility: visible;
  cursor: url(../images/icons/cancel.webp), auto;
}

.side-info-wrapper,
.cart-bar-wrapper {
  position: fixed;
  overflow-y: auto;
  top: 0;
  right: -110%;
  width: 100%;
  height: 100%;
  display: block;
  background-color: #ffffff;
  z-index: 999999;
  box-shadow: -5px 0 20px -5px rgba(0, 0, 0, 0.5);
  padding-top: 0px;
  -webkit-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  -o-transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
  transition: all 600ms cubic-bezier(0.785, 0.135, 0.15, 0.86);
}

.side-info-wrapper .nav,
.cart-bar-wrapper .nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.side-info-wrapper .nav a,
.cart-bar-wrapper .nav a {
  flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  max-width: 50%;
  font-size: 18px;
  color: #010103;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 12px 10px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
}

.side-info-wrapper .nav a.active,
.cart-bar-wrapper .nav a.active {
  background: #010103;
  color: #ffffff;
}

.side-info-wrapper.show,
.cart-bar-wrapper.show {
  right: 0;
}

.side-info-wrapper.mm-only.show {
  display: none;
}

@media (max-width: 991px) {
  .side-info-wrapper.mm-only.show {
    display: inline-block;
  }
}

@media (max-width: 991px) {
  .side-info-wrapper.show-all.show {
    display: none;
  }
}

.side-info-wrapper .contact__info li {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 15px;
  align-items: flex-start;
}

.side-info-wrapper .contact__info li span {
  margin-right: 10px;
  flex: 0 0 15px;
  -ms-flex: 0 0 15px;
  max-width: 15px;
  color: #F0BA2D;
  font-size: 15px;
}

.side-info-wrapper .contact__info li p {
  flex: 0 0 85%;
  -ms-flex: 0 0 85%;
  max-width: 85%;
}

.side-info-wrapper .contact__info li:not(:last-child) {
  margin-bottom: 5px;
}

/* mini cart css */
.cart {
  margin-left: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.cart__count {
  width: 20px;
  height: 20px;
  font-size: 12px;
  color: #ffffff;
  background: #80A093;
  position: absolute;
  top: 10px;
  right: 0px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 0;
}

.cart-bar-wrapper {
  padding: 25px 20px;
  padding-top: 60px;
}

.cart-bar-wrapper .site-btn {
  font-size: 12px;
  padding: 7px 18px;
}

.cart-bar-wrapper .site-btn__borderd {
  color: #010103;
  margin-left: 15px;
}

.cart-bar-wrapper .site-btn__borderd:hover {
  color: #ffffff;
}

@media (max-width: 767px) {
  .cart-bar-wrapper .btns {
    flex-direction: column;
    justify-content: flex-start !important;
    align-items: flex-start !important;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cart-bar-wrapper .btns {
    flex-direction: row;
    justify-content: flex-start !important;
    align-items: center !important;
  }
}

@media (max-width: 767px) {
  .cart-bar-wrapper .btns .site-btn__borderd {
    margin-left: 0px;
    margin-top: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .cart-bar-wrapper .btns .site-btn__borderd {
    margin-left: 20px;
    margin-top: 0px;
  }
}

.cart-bar__close {
  position: absolute;
  top: 0;
  left: 0;
  background: #010103;
  width: 40px;
  height: 40px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.cart-bar__close a {
  color: #fff;
  position: relative;
  z-index: 2;
  font-size: 16px;
  left: 0;
  height: 100%;
  text-decoration: none;
}

.cart-bar__title {
  font-size: 18px;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  padding-bottom: 15px;
  border-bottom: 1px solid #F4F1EE;
  margin-bottom: 15px;
}

.cart-bar__title span {
  color: #000;
}

.cart-bar__item .thumb {
  background: #ffffff;
  min-width: 70px;
}

.cart-bar__item .thumb img {
  max-width: 60px;
}

.cart-bar__item .content {
  padding-right: 25px;
  position: relative;
}

.cart-bar__item .content .title {
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
}

.cart-bar__item .content .title a {
  text-decoration: none;
  color: #010103;
}

.cart-bar__item .content .price {
  color: #010103;
  font-weight: 600;
  font-size: 15px;
}

.cart-bar__item .content .remove {
  top: 50%;
  right: 0px;
  color: #ffffff;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 22px;
  text-align: center;
  position: absolute;
  border-radius: 100%;
  background-color: #80A093;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.cart-bar__subtotal {
  border-bottom: 1px solid #F4F1EE;
  border-top: 1px solid #F4F1EE;
  padding: 7px 0px;
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
}

.cart-bar__subtotal span {
  color: #010103;
  text-transform: uppercase;
  font-weight: 600;
}

.cart-bar__lists .cart-bar__item:not(:last-child) {
  margin-bottom: 15px;
}

/* hero area css */
.hero__area {
  z-index: 1;
  /* padding-top: 275px;
  padding-bottom: 90px; */
}

.hero__area .shape {
  left: 0;
  top: 0;
}


.hero__area .shape__2 {
  left: auto;
  right: 0;
}



.hero__area--2 {
  padding-top: 0px;
  padding-bottom: 80px;
}

.hero__area--2 .shape {
  top: -65px;
}

.hero__area--2 .shape__2 {
  right: 0;
  top: -100px;
}

.hero__area--3 {
  background-position: center top;
  height: 100%;
  position: relative;
  padding: 210px 0 300px 0;
  height: 100vh;
  min-height: 100vh;
}

.hero__area--3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgb(0 0 0) 9%, rgb(0 0 0 / 0%) 50%, rgb(0 0 0 / 0%) 100%);
  z-index: 0;
}

.hero__area--3>* {
  position: relative;
  z-index: 1;
}



.hero__area--3 .vide-wrapper {
  height: 100%;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  max-width: 100%;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero__area--3 .vide-wrapper .vide-btn {
  right: 0;
  bottom: 0;
}


.hero__content {
  z-index: 2;
  text-align: center;
}

.hero__content .title {
  color: #ffffff;
  font-size: 60px;
  line-height: 82px;
  text-transform: uppercase;
  width: 76%;
  margin: 0 auto 20px auto;
  font-weight: 900;
}

/* Banner image set in CSS so browser fetches it immediately on stylesheet parse
   — never use data-background for above-the-fold hero images */
.home-page-banner {
  background-image: url('../images/Das-banner.webp');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.home-page-banner .hero__content .title {
  color: #ffffff;
  font-size: 60px;
  line-height: 82px;
  text-transform: uppercase;
  width: 45%;
  margin: 0 auto 20px 0;
  font-weight: 900;
  text-align: left;
}

.hero__content .subtitle {
  color: #ffffff;
  font-size: 40px;
  line-height: 37px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.home-page-banner .hero__content .subtitle {
  color: #ffffff;
  font-size: 50px;
  line-height: 37px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.section {
  padding: 100px 0;
}



.subpara {
  font-size: 18px;
  line-height: 1.7;
  color: #fff;
}

.home-page-banner .hero-para-wrapper {
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}

.hero-para-wrapper {
  max-width: 63%;
  margin: 0 auto;
}

.top-bar {
  background-color: #C6251C;
  padding: 7px 0;
  border-bottom: 2px solid #fff;
  z-index: 2;
  position: relative;
}

.c-text a {
  text-decoration: none;
}

.c-text a p {
  text-decoration: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 0;
  letter-spacing: 2px;
  line-height: 1;
}

.button-wrapper {
  position: relative;
  display: inline-block;
}

/* Yellow background shadow */

/* Red skewed container */

.hero__area .footer-rating {
  /* position: absolute; */
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
  margin: 0 auto;
  justify-content: center;
}

/* .banner-icon-rating {
  padding-top: 190px;

} */

/* .banner-icon-rating img.banner-icon-1 {
  height: 55px;
  width: 100%;
}

.banner-icon-rating img.banner-icon-2 {
  height: 55px;
  width: 100%;
}

.banner-icon-rating img.banner-icon-3 {
  height: 55px;
  width: 100%;
}

.banner-icon-rating img.banner-icon-4 {
  height: 55px;
  width: 100%;
} */

/* ================= WHY CHOOSE US SECTION ================= */
.why-choose-us {
  background: #fff;
  padding-bottom: 100px;
}

.ownertitle {
  display: flex;
  align-items: center;
}

.ownertitle span {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}

.ownertitle .accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none !important;
}

.ownerDetailsaccord .accordion-item {
  position: relative;
}


.accordion-button:focus {
  z-index: 3;
  outline: 0;
  box-shadow: none;
}

.accordion-item:first-of-type>.accordion-header .accordion-button {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.why-choose-us .ownertitle img {
  max-width: 30px;
  margin-right: 15px;
}

.ownerDetailsaccord .accordion-button:not(.collapsed) {
  color: var(--bs-accordion-active-color);
  background-color: #cfe2ff00;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #dee2e600;
}

.ownerDetailsaccord .accordion-body {
  padding-top: 0;
  padding-left: 66px;
  padding-right: 76px;
}

.ownerDetailsaccord .accordion-body p {
  font-weight: 500;
  font-size: 16px;
  line-height: 27px;
}

.ownerDetailsaccord .accordion-button {
  border-radius: 10px;
}

.ownerDetailsaccord .accordion-item {
  margin-top: 20px;
  border: 2px solid #EEEEEE;
  border-radius: 10px;
  transition: 0.3s all ease;
}

.ownerDetailsaccord .accordion-item:hover {
  box-shadow: 6px 6px 0 0 #f0ba2d
}

/* === Title Styling === */
.section-title {
  font-weight: bold;
  color: #C6251C;
  position: relative;
}

.why-choose-us .section-content .section-title {
  max-width: max-content;
}

/* .title-element:after {
  position: absolute;
  content: "";
  right: 149px;
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: #000;
  bottom: 18px;
}

.title-element::before {
  position: absolute;
  content: "";
  right: 140px;
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: #F0BA2D;
  bottom: 11px;
} */


.section-content p:not(:last-child) {
  margin-bottom: 0px;
}

/* .section-content p {
  padding-right: 14%;
} */


.section-title .dash {
  color: #f4b528;
  /* Yellow dash */
  font-weight: bold;
}

/* === Checklist Wrapper === */
.checklist {
  margin-top: 20px;
}



/* === Checklist Items === */
.check-item {
  background: #fff;
  border: 2px solid #eee;
  border-radius: 8px;
  padding: 15px 20px;
  margin-bottom: 20px;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 20px;
  clip-path: polygon(0 0, 97% 0, 100% 100%, 0 100%);
  outline: 2px solid #eee;
  /* acts like border */
  outline-offset: -1px;
  /* keep it aligned */
}

.check-item .icon {
  color: #2ecc71;
  /* Green tick */
  font-size: 20px;
}

/* === Highlighted Middle Box === */
.highlight-box {
  color: #c62020;
  position: relative;
  border: none;
  background: #fff;
  font-weight: bold;
}

.highlight-box::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: 10px;
  left: 10px;
  height: 6px;
  background: #f4b528;
  transform: skewX(-15deg);
  border-radius: 3px;
}

.why-choose-us img {
  border-radius: 10px;
  width: 100%;
}

.why-choose-us img.car-img {
  border-radius: 10px;
  width: 100%;
  object-fit: cover;
}

/* another-wcu-section: image height dynamically matches content column */
.another-wcu-section .row {
  align-items: stretch !important;
}

.another-wcu-section .col-lg-6:first-child,
.another-wcu-section .col-md-12:first-child {
  display: flex;
}

.another-wcu-section img.car-img {
  height: 100% !important;
  min-height: 200px;
}

/* .contentWrapper {
  padding-left: 3%;
} */

.bgColorGrey {
  background-color: #FAFAFA;
}



.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 570px;
}

/* === Card Image === */
.service-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* === Overlay Content === */
.card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0px 24px 20px 24px;
  background: #000000;
  background: #000000;
  background: linear-gradient(0deg, rgb(0 0 0) 0%, rgba(0, 0, 0, 1) 29%, rgb(0 0 0 / 77%) 56%, rgb(0 0 0 / 46%) 85%, rgb(0 0 0 / 0%) 100%);
  color: #fff;
}

.card-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 12px;
}

.card-subtitle {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 20px;
}

.card-text {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 20px;
  color: #fff;
  padding-right: 0;
}

/* === Book Service Link === */
.book-link {
  font-weight: bold;
  font-size: 17px;
  text-decoration: none;
  color: #FBE212;
  /* Yellow */
  display: flex;
  align-items: center;
  position: relative;
  width: max-content;
}

.book-link::after {
  position: absolute;
  content: "";
  right: -31px;
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: #C6251C;
  bottom: 14px;
}

.book-link::before {
  position: absolute;
  content: "";
  right: -41px;
  width: 20px;
  height: 5px;
  border-radius: 10px;
  background-color: #F0BA2D;
  bottom: 6px;
}

/* === Skew Lines beside Book Link === */



.serviceSection .section-content p {
  padding-right: 0;
}

.serviceSection .section-content .section-title {
  font-weight: bold;
  color: #C6251C;
  position: relative;
  width: 100%;
}


.service-padding {
  --bs-gutter-x: 4.5rem;
  --bs-gutter-y: 4.5rem;
  margin-top: -30px;
}


.modelSection {
  background-image: url(../images/model-bg.png);
  background-position: center;
  background-size: cover;
  margin-top: 100px;
}

.modelSection h2.section-title {
  text-align: center;
  width: 100%;
  color: #fff;
}

.modelSection p {
  text-align: center;
  width: 100%;
  color: #fff;
  padding-right: 0%;
}

.services-cloud {
  background: linear-gradient(135deg, #000 60%, #8b0000 100%);
  padding: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.side-info__logo img {
  width: 70px;
}

/* ================= FLEX WRAP TAGS ================= */
.tags-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 16px;
  justify-content: center;
  margin-top: 30px;
  margin-bottom: 0;
}


.faq-accord-title {
  padding-right: 40px;
  font-size: 20px;
}

.tags-wrapper li a {
  text-decoration: none;
  transition: 0.3s all ease;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.tags-wrapper li a:hover {
  color: #C6251C;
}

/* ================= SERVICE TAG ================= */


.service-tag {
  padding: 4px 18px 7px 18px;
  border-radius: 50px;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}

.service-tag li a {
  font-weight: 500;
  font-size: 16px;
}

.service-tag.red {
  background: #c62020;
}

.service-tag.red a {
  color: #fff;
}

.service-tag.red a:hover {
  color: #F0BA2D;
}

.service-tag.white a {
  color: #000;
}

.service-tag.white {
  background: #fff;
}

/* ============================================================
   OUR COMMITMENT SECTION
   ============================================================ */
.commitment-section {
  padding-bottom: 0;
}

.commitment-section .section-title {
  margin-bottom: 18px;
}

.commitment-desc {
  color: #000;
  line-height: 1.85;
}

/* ── Feature Cards ── */
.commitment-cards {
  margin-bottom: 56px;
}

.commit-card {
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 36px 28px 32px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.commit-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.commit-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff4f4;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.25s ease;
}

.commit-card:hover .commit-card__icon {
  background: #C6251C;
}

.commit-card__icon i {
  font-size: 26px;
  color: #C6251C;
  transition: color 0.25s ease;
}

.commit-card:hover .commit-card__icon i {
  color: #ffffff;
}

.commit-card__title {
  font-size: 17px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 12px;
}

.commit-card__text {
  font-size: 14.5px;
  color: #666666;
  line-height: 1.75;
  margin: 0;
}

/* ── Stats Bar ── */
.commit-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 10px;
  padding: 36px 20px;
}

.commit-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}

.commit-stat__num {
  font-size: 42px;
  font-weight: 800;
  color: #C6251C;
  line-height: 1;
  margin-bottom: 8px;
  font-family: 'Futura', Arial, sans-serif;
}

.commit-stat__label {
  font-size: 13.5px;
  color: #777777;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-weight: 500;
}

.commit-stat__divider {
  width: 1px;
  height: 52px;
  background: #e8e8e8;
  flex-shrink: 0;
}

@media (max-width: 767px) {
  .commit-stat {
    padding: 20px 24px;
    width: 50%;
  }

  .commit-stat__divider {
    display: none;
  }

  .commit-stats {
    padding: 20px 10px;
  }
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faqsWrapper .section-content h2 {
  width: 100%;
  line-height: 1.3;
  margin-bottom: 30px;
}

section.faqsWrapper .accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.svg);
  transform: rotate(-180deg)
}

section.faqsWrapper .accordion-button::after {
  margin-left: auto;
  content: "";
  background-image: url(../images/plus.svg);
  background-repeat: no-repeat;
  background-size: cover;
  transition: transform .2s ease-in-out;
  background-position: center;
  width: 22px;
  height: 22px;
}

section.faqsWrapper .accordion-button:not(.collapsed) {
  color: #000000;
  background-color: #cfe2ff00;
  box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 #dee2e600;
  font-weight: bold;
  transition: 0.3s all ease;

}

section.faqsWrapper .accordion-button {
  font-size: 16px;
  padding: 25px 25px;
  transition: 0.3s all ease;
  font-weight: bold;
}

section.faqsWrapper .accordion-body p {
  font-size: 18px;
  font-weight: 400;
  padding-right: 80px;

}

section.faqsWrapper .accordion-body {
  padding: 0px 25px 30px 25px;
}

/* ============================================================
   GLOBAL SECTION STYLES
   ============================================================ */
.pricing-section {
  background: #111;
  /* dark background */
  color: #fff;
  background-image: url('../images/pricing-bg.webp');
  /* optional hexagon background */
  background-size: cover;
  background-position: center;
}



/* ============================================================
   PRICING LIST STYLING (RIGHT SIDE)
   ============================================================ */
.pricing-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.30);
  padding: 25px 16px 25px 0px;
  transition: 0.3s all ease;
}

.pricing-list li:last-child {
  border-bottom: 0px solid rgba(255, 255, 255, 0.30);
}

.pricing-list li:hover {
  border-bottom: 1px solid rgb(255, 255, 255);
}

.pricing-list li:last-child:hover {
  border-bottom: 0px solid rgb(255, 255, 255);
}

.pricing-list li .hover-show {
  transition: 0.3s all ease;
}

.pricing-list li:hover .hover-show {
  display: block;
}

.pricing-list li:hover .none-hover-show {
  display: none;
}

.pricing-list li .hover-show {
  display: none;
}


/* ============================================================
   ICON STYLING (CHECKMARK CIRCLES)
   ============================================================ */
.pricing-list .icon img {
  max-width: 50px;
}



/* ============================================================
   TEXT STYLING INSIDE LIST ITEMS
   ============================================================ */
.pricing-list p {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  text-transform: uppercase;
  line-height: 25px;
}

.pricing-list {
  padding-right: 20%;
}

.color-bright {
  color: #FE272C;
  line-height: 48px;
}

/* ============================================================
   CONTACT SECTION BASE STYLES
   ============================================================ */
.contact-section {
  background: #000;
  color: #fff;
  background-image: url('../images/contact-bg.webp');
  /* optional background */
  background-size: cover;
  background-position: center;
}

/* ============================================================
   LEFT COLUMN: TITLE & CONTACT INFO
   ============================================================ */
.contact-title {
  color: #fff;
}

.info-item span {
  font-family: 'Futura';
  font-size: 35px;
  color: #fff;
}

.contact-subtitle {
  color: #fff;
  margin-bottom: 30px;
}

.contact-info .info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 35px;
  font-weight: 600;
}

.contact-info .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  font-size: 1.3rem;
  border: 3px solid #fff;
}

.contact-info .icon.yellow {
  background: #ffcc00;
}

.contact-info .icon.red {
  background: #e53935;
}

/* ============================================================
   RIGHT COLUMN: FORM DESIGN
   ============================================================ */
.contact-form .form-control {
  background: rgb(61 61 61 / 20%);
  border: 1px solid rgb(255 255 255 / 29%);
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  padding: 20px 25px;
}

.form-check-input:checked {
  background-color: #C6251C;
  border-color: #C6251C;
}

.form-check-input {
  margin-top: 0.4em;
  --bs-form-check-bg: #ffffff3b;
  border: 1px solid #ffffff3b;
}

.contact-form .form-control::placeholder {
  color: #aaa;
}

.contact-form label {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
}

.appointment-type .form-check-label {
  color: #ffffffa6;
  font-size: 1rem;
  font-weight: 600;
}

.btn-danger {
  background: #C6251C;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  padding: 19px 0;
}

/* ============================================================
   BRANCH INFO BOXES
   ============================================================ */
.branch-box {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 20px;
  height: 100%;
  position: relative;
}

.branch-box h5 {
  color: #fff;
  font-weight: 600;
  font-size: 24px;
}

.branch-box p {
  color: #fff;
  font-size: 18px;
  margin-bottom: 10px;
  line-height: 26px;
  margin-top: 14px;
  width: 80%;
}

.map-link {
  color: #F0BA2D;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}

/* ============================================================
   LOCATIONS SECTION BASE STYLES
   ============================================================ */
.locations-section {
  background: #fff;
  color: #000;
}


.red-link {
  color: #C6251C;
}


/* ============================================================
   TAB BUTTONS
   ============================================================ */
.location-tabs {
  gap: 15px;
}

.tab-btn {
  border: 2px solid #ffcc00;
  background: #fff;
  color: #c80000;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 25px;
  transition: 0.3s ease;
}


/* ============================================================
   MAP CONTAINER
   ============================================================ */
.map-container {
  width: 100%;
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
}


.appointment-type {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: rgb(107 107 107 / 20%);
  color: #fff;
  font-size: 1rem;
  padding: 20px 25px;
}

.form-control:focus {
  box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}

.form-check-input:focus {
  box-shadow: 0 0 0 .25rem rgb(13 110 253 / 0%);
}


.map-icon img {
  position: absolute;
  top: 20px;
  right: 20px;
}


.branch-padding {
  --bs-gutter-x: 4.5rem;
}


/* ============================================================
   HOW IT WORKS SECTION BASE STYLES
   ============================================================ */
.how-it-works {
  background: #fff;
  color: #000;
  position: relative;
}



/* ============================================================
   STEP BLOCK STYLING
   ============================================================ */
.step {
  position: relative;
  padding: 0 20px;
}


.step::before {
  content: "";

}

.step-icon {
  width: 80px;
  height: auto;
}

.step-title {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 28px;
}

.step-text {
  color: #000;
  font-size: 16px;
  line-height: 1.5;
  max-width: 360px;
  margin: 0 auto;
}

.step-number {
  position: absolute;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  top: 40px;
  right: 14%;
  line-height: 5rem;
}

.step-number.thirddd {
  position: absolute;
  font-size: 7rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.05);
  top: 60px;
  right: 24%;
  line-height: 5rem;
}

/* ============================================================
   CONNECTING LINE BETWEEN STEPS
   ============================================================ */

.step::before {
  left: 0;
}

.step::after {
  right: 0;
}

/* ============================================================
   CTA BUTTON
   ============================================================ */
.book-btn {
  background: #d72626;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  padding: 12px 25px;
  box-shadow: 5px 5px 0 #ffcc00;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background: #b61f1f;
  box-shadow: 3px 3px 0 #e6b800;
}


/* ===========================
   LOCATIONS SECTION
=========================== */
.locations-section {
  text-align: center;
}

.section-title {
  font-weight: 700;
  color: #d62b2b;
}

.section-subtext {
  color: #000;
  margin: 0 auto 40px;
  line-height: 1.5;
}

/* ===========================
   FILTER TABS
=========================== */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  /* allows wrapping on smaller screens */
  justify-content: center;
  /* centers all tabs horizontally */
  align-items: center;
  gap: 15px;
  /* spacing between buttons */
  margin: 0 auto 40px;
  padding: 0;
  max-width: 100%;
}



.locations-section .filter-tabs .tab-btn.active {
  background: #fff;
  color: #fff;
}

/* ===========================
   GRID LAYOUT
=========================== */
.locations-grid {
  display: flex;
  gap: 30px;
}

/* ===========================
   LOCATION CARD
=========================== */
.location-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  padding: 7px 17px;
  border: 1px solid #eee;
  position: absolute;
  width: 260px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-card.card-1 {
  bottom: 60px;
  right: 110px;
}

.location-card.card-2 {
  top: 290px;
  right: 230px;
}

.location-card.card-3 {
  top: 300px;
  right: 660px;
}

.location-card.card-4 {
  top: 340px;
  right: 830px;
}

.location-card.card-5 {
  top: 400px;
  right: 750px;
}

.location-card.card-6 {
  top: 340px;
  right: 720px;
}

.location-card.card-7 {
  top: 370px;
  right: 802px;
}



.loc-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.location-name {
  text-align: left;
  height: 40px;
}


.location-title {
  color: #d62b2b;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 0px;
}

.view-link {
  color: #000;
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.view-link:hover {
  color: #000;

}




.fixed-map img {
  width: 100%;
}

.filter-tabs .tab-btn {
  display: inline-flex;
  /* side-wise layout for text + indicator */
  align-items: center;
  justify-content: center;
  gap: 10px;
  /* space between text and circle */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 10px 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  /* prevents breaking inside each tab */
  flex: 0 0 auto;
  /* prevent full-width stretching */
}


.tab-btn:hover {
  box-shadow: 5px 5px 0 0 #ffcc00;
}

.nameTabs {
  text-align: start;
  margin-right: 30px;
}

.nameTabs h5 {
  color: #C6251C;
  font-size: 16px;
  text-align: left;
}

.nameTabs a {
  color: #000;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

/* ===== Radio Indicator (Yellow Circle) ===== */
.radio-indicator {
  width: 26px;
  height: 26px;
  border: 2px solid #eee;
  border-radius: 50%;
  position: relative;
  display: inline-block;
}

.radio-indicator::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  background-color: #F1B718;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.3s ease;
  opacity: 0;
}

.tab-btn.active .radio-indicator::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.fade-in {
  animation: fadeIn 0.4s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.side-wise {
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ===========================
   FAQ CTA CARD
=========================== */
.faq-cta {
  background: #C6251C;
  background: linear-gradient(0deg, rgba(198, 37, 28, 1) 0%, rgba(96, 18, 14, 1) 100%);
  color: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.faq-cta__inner {
  display: flex;
  flex-direction: column;
}

/* ----- IMAGE ----- */
.faq-cta__image {
  width: 100%;
  height: auto;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  display: block;
}

/* ----- CONTENT ----- */
.faq-cta__content {
  padding: 25px 0px;
  text-align: left;
}

.faq-cta__title {
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
  line-height: 1;
  padding-right: 115px;
  font-size: 26px;
}

.faq-cta__description {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 25px;
}

.faq-cta__phone {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.faq-cta__phone:hover {
  color: #fff;
  font-weight: 700;
}

/* ----- BUTTON ----- */
.faq-cta__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #C6251C;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 14px 30px 14px 20px;
  border-radius: 50px;
  overflow: visible;
  transition: all 0.3s ease;
}

.faq-cta__button::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 10px;
  width: calc(100% - 20px);
  height: 6px;
  background-color: #F5B916;
  border-radius: 50px;
  z-index: -1;
}

.faq-cta__button-circle {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
}

.faq-cta__button-text {
  display: inline-block;
}

.faq-cta__button:hover {
  background: #8f1614;
  transform: translateY(-2px);
}

.img-seprator img {
  position: absolute;
  top: 83px;
  right: -184px;
}

/* ===============================
   FOOTER SECTION STYLING
=============================== */

.main-footer {
  margin-top: -30px;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  gap: 60px;
}

.footer-nav li {
  display: inline-block;
}

.footer-nav a {
  color: #000;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #C6251C;
}

.footer-logo img {
  height: 131px;
  width: auto;
}

.footer-divider {
  border-top: 2px solid #00000063;
  margin-top: -17px;
  z-index: -1;
  position: relative;
}

.ownerDetailsaccord {
  margin-right: 10%;
}


.readmore-text {
  line-height: 1.6;
}

.contact-para {
  padding-right: 10%;
}

.contact-info {
  margin-top: 30px;
}


/* =================== AUDI SERVICE SECTION =================== */

.audi-service-section {
  /* background: url(../images/mercedes-bg.webp) center / cover no-repeat; */
  color: #fff;
  position: relative;
  text-align: center;
  padding-bottom: 550px;
  margin-bottom: 100px;
}

.sectionfaqsWrapper {
  padding-top: 0;
}

.audi-title {
  color: #e12222;
}

.audi-subtext {
  color: #fff;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.audi-service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 10px;
  border-radius: 10px;
  transition: all 0.3s ease;
  height: 100%;
}

.audi-service-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.audi-service-card p {
  color: #fff;
  font-size: 15px;
  margin-top: 15px;
  font-weight: 500;
}

.audi-icon {
  width: 50px;
  height: auto;
}

/* =================== AUDI SERVICE GRID SECTION =================== */
.audi-grid-section {
  background: url('assets/images/audi-bg.jpg') center/cover no-repeat;
  padding: 80px 0;
  color: #fff;
  position: relative;
  text-align: center;
}

.audi-grid-title {
  font-size: 28px;
  font-weight: 700;
  color: #e12222;
  margin-bottom: 15px;
}

.audi-grid-subtext {
  max-width: 750px;

  margin: 0 auto 50px;
  color: #ccc;
  font-size: 16px;
}

/* GRID STRUCTURE */
.audi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 25px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin: 0 auto 20px auto;
  text-align: center;
  max-width: 1500px;
}

.audi-grid.audi-gird-two {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 25px;
  justify-content: center;
  justify-items: center;
  align-items: center;
  margin: 0 auto 70px auto;
  text-align: center;
  max-width: 1282px;
}

/* CARD STYLING */
.audi-grid-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 30px 23px;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
}

.audi-grid-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

/* ICON */
.audi-icon {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}

/* TEXT */
.audi-grid-card p {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
  margin: 0;
  line-height: 24px;
}

/* BUTTON */
.audi-btn-wrap {
  margin-top: 60px;
}

.audi-btn {
  display: inline-block;
  background: #e12222;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.audi-btn:hover {
  background: #ff3a3a;
}



/* ==== Custom Select Dropdown (Dark Style) ==== */
.custom-select-brand {
  width: 100%;
  background: rgb(61 61 61 / 20%);
  color: #fff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 6px;
  color: #fff;
  font-size: 1rem;
  padding: 18px 25px;
  background-image: url("../images/down.svg") !important;
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-select-brand:focus {
  border: 1px solid rgb(255 255 255 / 29%);
}

/* Dropdown options */
.custom-select-brand option {
  background-color: #000;
  color: #fff;
}

/* For hover effect inside dropdown (works in most browsers) */
.custom-select-brand option:hover {
  background-color: #111;
}

/* Edge/Fallback fix */
select::-ms-expand {
  display: none;
}

/* --- Banner Icon Strip --- */
.banner-icon-rating {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
}

.banner-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  flex: 1;
}

.banner-icon-item img {
  width: 930px;
  /* height: 80px; */
  object-fit: contain;
}



/* === Audi Packages Section === */


.audi-packages-title {
  color: #c51e1e;
}

.audi-packages-title span {
  color: #c51e1e;
  font-weight: 600;
  font-size: 1.4rem;
}

/* === Audi Card === */
.audi-packages .owl-item {
  display: flex;
  padding-bottom: 20px;
}

.audi-packages .owl-carousel .owl-stage {
  display: flex;
}

.audi-packages .owl-carousel .owl-item {
  display: flex;
}

.audi-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #EBEBEB;
  text-align: left;
  padding: 20px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.audi-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.audi-card-content {
  flex: 1;
}

.audi-card-action {
  margin-top: 20px;
}

.row.package-padding {
  --bs-gutter-x: 3.5rem;
  margin-top: 20px;
}

.audi-card-img {
  margin-bottom: 20px;
}

.audi-card-img img {
  height: 250px;
  object-fit: contain;
}

/* === Text Elements === */
.audi-card-title {
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  font-size: 24px;
}

.audi-tag {
  display: inline-block;
  background: #ffe8e8;
  font-family: 'Futura';
  color: #c51e1e;
  font-weight: 600;
  font-size: 16px;
  border-radius: 6px;
  padding: 7px 10px;
  margin-bottom: 18px;
  line-height: 1;
}

.audi-desc {
  font-size: 16px;
  line-height: 22px;
  color: #000;
  margin-bottom: 10px;
}

.audi-price {
  color: #c51e1e;
  font-weight: 700;
  font-size: 30px;
  margin-bottom: 0;
}

/* === Button === */
.audi-btn {
  display: block;
  text-align: center;
  background: #000;
  color: #fff;
  font-weight: 600;
  padding: 25px 0;
  border-radius: 10px;
  text-decoration: none;
  line-height: 1;
  transition: all 0.3s ease;
}

.audi-btn:hover {
  background: #c51e1e;
  color: #fff;
}

/* ====================== OWL CUSTOM NAVIGATION ====================== */
.owl-nav button {
  position: absolute;
  top: 40%;
  background: #fff !important;
  border: 1px solid #ccc !important;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  color: #000 !important;
  font-size: 20px !important;
  transition: all 0.3s ease;
}

.owl-nav button:hover {
  background: #c00 !important;
  color: #fff !important;
}

.owl-nav .owl-prev {
  left: -50px;
}

.owl-nav .owl-next {
  right: -50px;
}

@media (max-width: 992px) {
  .owl-nav .owl-prev {
    left: -30px;
  }

  .owl-nav .owl-next {
    right: -30px;
  }
}

@media (max-width: 768px) {
  .owl-nav button {
    display: none;
  }
}

/* ++++++++++++++++  Project Details Page CSS +++++++++++++++++++ */


.why-choose-us.car-engine-rebuild .contentWrapper {
  padding-left: 0;
}

.why-choose-us.car-engine-rebuild img.car-img {
  border-radius: 10px;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.car-engine-pick .service-padding {
  --bs-gutter-x: 2.5rem;
  --bs-gutter-y: 2.5rem;
  margin-top: -20px;
}

.pickContent h3 {
  color: #fff;
  text-transform: uppercase;
  font-size: 22px;
  margin-bottom: 15px;
}

.pricing-list .pickContent p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  text-transform: none;
  line-height: 25px;
}

.car-pick-us .pricing-list {
  padding-left: 0%;
  padding-right: 0%;
}

.car-pick-us .pickPadding {
  padding-left: 2%;
  padding-right: 5%;
}

.car-pick-us .pricing-list li {
  padding: 25px 0px 25px 0px;
}

/* ================= FEATURES SECTION CSS START ================= */

.features-section {
  background: #F8F8F8;
}

.feature-title {
  color: #C6251C;
  font-size: 28px;
}

/* -------- CARD STYLE -------- */
.feature-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid #eee;
  transition: all .3s ease-in-out;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, .12);
  border-color: #d62b2b;
}

/* -------- ICON STYLE -------- */
.icon-box {
  width: 70px;
  height: 70px;
  background: #ffe6e6;
  border-radius: 14%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px auto;
}

.icon-box img {
  width: 50px;
}

.features-section h2.section-title {
  margin-bottom: 30px;
}

/* -------- TEXT -------- */
.feature-card h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #000;
}

.feature-card p {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
}

.feature-padding {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

/* ================= FEATURES SECTION CSS END ================= */


/* ================= HERO SECTION CSS START ================= */

.hero-offer-section {
  background: url('https://images.pexels.com/photos/358070/pexels-photo-358070.jpeg') center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-offer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  /* Adjust opacity here */
}


/* Offer top badge */
.offer-badge {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background-color: #c6251c;
  padding: 0 17px;
  border-radius: 5px;
  width: max-content;
}

/* Main Heading */
.offer-heading {
  line-height: 1.2;
  margin-bottom: 25px;
  color: #fff;
}

.hero-offer-section>* {
  position: relative;
  z-index: 2;
}

/* CTA Button */
.offer-btn {
  background: #ffba00;
  border: none;
  padding: 14px 28px;
  font-size: 17px;
  font-weight: 600;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: .3s;
  cursor: pointer;
  color: #000;
}

.offer-btn:hover {
  background: #ffc933;
  transform: translateY(-2px);
}


/* ================= HERO SECTION CSS END ================= */

/* ================= WHY CHOOSE SECTION CSS START ================= */

.why-das-section {
  background: #fff;
}

/* Small Top Tag */
.why-tag {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 20px;
  background-color: #c6251c;
  padding: 0 17px;
  border-radius: 5px;
  width: max-content;
}

/* Heading */
.why-heading {
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Right Content Paragraph Area */
.why-content {
  border-left: 4px solid #c70000;
  padding-left: 18px;
}

.why-content p {
  color: #000;
  margin-bottom: 0;
  line-height: 31px;
}

/* Image styling */
.why-img-box img {
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, .15);
}

.dasContent {
  padding-left: 5%;
}

.why-das-section .col-lg-6:first-child {
  padding-right: 15px;
}

.why-img-box {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 10px;
}

.why-img-box img.dasImg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 10px;
  box-shadow: 3px 8px 10px 6px #00000024;
}

.why-content p:not(:last-child) {
  margin-bottom: 32px;
}


/* ================= CTA STRIP CSS START ================= */

.cta-strip {
  background: #CF1212;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 3px solid #fff;
}

.cta-text {
  color: #fff;
  margin-bottom: 18px;
}

/* CTA Button */
.cta-btn {
  background: #ffffff;
  color: #000;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: .3s;
}

.cta-btn:hover {
  background: #ffe082;
}

/* ================= CTA STRIP CSS END ================= */



/* ================= WHY CHOOSE SECTION CSS END ================= */


/* ================= ENGINE BANNER SECTION CSS START ================= */

.engine-banner-section {
  background: #ffffff;
}

/* Title */
.engine-title {
  color: #C6251C;
  margin-bottom: 18px;
  font-size: 50px;
}

/* Paragraph Text */
.engine-text {
  color: #000;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 14px;
  padding-right: 16%;
}

.section.engine-banner-section {
  padding-top: 200px;
}

/* CTA Button */
.engine-btn {
  margin-top: 10px;
  background: #ffcf2f;
  color: #000;
  padding: 12px 22px;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 0, 0, .2);
  transition: .3s;
}

.engine-btn:hover {
  background: #ffd95a;
  transform: translateY(-2px);
}

/* Image Styling */
.engine-image {
  border-radius: 10px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, .18);
  height: 550px;
  object-fit: cover;
}

.engine-text p:not(:last-child) {
  margin-bottom: 32px;
}

.carDetailInner .main-menu ul li a {
  color: #000;
}

.carDetailInner .main-menu ul li:hover a {
  color: #F0BA2D;
}

.carDetailInner .menu-area.sticky-header {
  background: #fff;
}

.carDetailInner .site-header__3 {
  box-shadow: 0px 3px 20px 4px #0000000f;
}

.pricing-section .sticky-top {
  z-index: 2;
}

.why-choose-us.section.car-engine-rebuild .sticky-top {
  z-index: 2;
}

/* ================= ENGINE BANNER SECTION CSS END ================= */







.black_bar {
  background-color: #000000;
  text-align: center;
  padding: 30px 0;
  border-top: 2px solid #fff;
}

.black_bar .section-title {
  font-size: 29px;
  font-weight: 600;
  margin-bottom: 0;
}

.modelSection.tuning-benefits {
  background-position: center;
  background-size: cover;
}

.tuning-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 25px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
}

.tuning-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.tuning-title {
  font-weight: 600;
  font-size: 22px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.tuning-title i {
  color: #e30613;
  font-size: 20px;
}

.modelSection.tuning-benefits .tuning-text {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
}

.modelSection.tuning-benefits .service-tag.red {
  background: #e6e6e6;
}

.modelSection.tuning-benefits .service-tag.white {
  background: #e6e6e6;
}


.modelSection.tuning-benefits .service-tag.red a {
  color: #000;
}

.modelSection.tuning-benefits .service-tag.white a {
  color: #000;
}

.modelSection.tuning-benefits .tags-wrapper li a {
  text-decoration: none;
  transition: 0.3s all ease;
  font-size: 14px;
  font-weight: 600;
  color: #000;
}


:root {
  --brand-red: #e10613;
  --text: #0f172a;
  --muted: #475569;
  --card: #ffffff;
  --line: #e2e8f0;
  --soft: #f8fafc;
}

.exhaust-section {
  padding: 80px 0;
}

/* Left media card */
.media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #0b1220;
  position: relative;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.10);
  height: 700px;
}

.media-card img {
  width: 100%;
}

.media-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 30% 30%, rgba(225, 6, 19, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(2, 6, 23, 0.15), rgba(2, 6, 23, 0.55));
  pointer-events: none;
}



.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-red);
  box-shadow: 0 0 0 6px rgba(225, 6, 19, 0.18);
}

/* Right content */
.content-wrap {
  padding-left: 38px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 14px;
}

.kicker .bar {
  width: 28px;
  height: 2px;
  background: var(--brand-red);
  border-radius: 999px;
}

.title {
  line-height: 1.08;
  font-weight: 800;
  margin: 0 0 14px 0;
}

.lead {
  color: #000;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 14px;
  max-width: 600px;
}

.note {
  color: #000;
  font-size: 18px;
  line-height: 1.75;

  max-width: 600px;
  margin-bottom: 18px;
}

.types-title {
  color: #CF1212;
  font-weight: 700;
  margin: 18px 0 20px;
  font-size: 20px;
  line-height: 1;
}

.types {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: grid;
  gap: 10px;
}

.bullet {
  line-height: 1;
}

.types li {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
}

.types li p {
  margin-bottom: 0;
  color: #000;
  font-size: 16px;
}

.types li img {
  width: 18px;
}




.types .label {
  font-weight: 700;
  color: #000;
  line-height: 1.35;
}

.cta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.exhaust-services {
  background: #f8f9fb;
}

.service-card-1 {
  background: #ffffff;
  padding: 35px 25px;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid #e6e6e6;
  position: relative;
  overflow: hidden;
}

.service-card-1::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  height: 2px;
  width: 0;
  background: #e10613;
  transition: 0.3s ease;
}

.service-card-1:hover::before {
  width: 100%;
}

.service-card-1:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.service-card-1 h4 {
  font-size: 22px;
  font-weight: 600;
  color: #e10613;
  margin-bottom: 15px;
}

.service-card-1 p {
  font-size: 16px;
  line-height: 1.7;
  color: #000;
  margin-bottom: 0;
}

.components-section {
  background: #fff;
}

.section-title {
  font-size: 44px;
  font-weight: 700;
  color: #d91111;
  margin-bottom: 20px;
  line-height: 1.3;
}

.components-content p {
  color: #000;
  font-size: 18px;
  line-height: 1.7;
  text-align: left;
  margin-bottom: 20px;
}

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

.components-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-weight: 500;
  color: #222;
}

.components-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #d91111;
  background: rgba(217, 17, 17, 0.15);
}

.image-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  transition: 0.3s ease;
  text-align: center;
}

.image-card:hover {
  transform: translateY(-6px);
}

.image-card img {
  border-radius: 12px;
  width: 73%;
  height: auto;
}


.reasons-section {
  background: #fff;
}

.main-heading {
  font-weight: 700;
  color: #000;
  line-height: 1.2;
}

.content-box h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #000;
}

.content-box p {
  color: #000;
  font-size: 18px;
  line-height: 32px;
  text-align: left;
  padding-right: 12%;
}

.image-wrapper {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.image-wrapper img {
  width: 100%;
  height: 410px;
  display: block;
  transition: 0.4s ease;
  object-fit: cover;
}

.image-wrapper:hover img {
  transform: scale(1.05);
}

.image-wrapper:hover {
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}


/* Base Layout */
.brands-section {
  background: #f9fafc;
}


/* Header */
.brands-header {
  text-align: center;
  margin-bottom: 40px;
}

.brands-header h2 {
  font-weight: 700;
  color: #d20f0f;
  margin-bottom: 15px;
}

.brands-header p {
  color: #000;
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 0;
  max-width: 730px;
  margin: 0 auto;
}

/* Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  position: relative;
  /* This makes columns stretch equally */
}

/* Center Divider */
.brands-grid::before {
  content: "";
  grid-column: 1;
  background: #d20f0f;
  width: 2px;
  position: absolute;
  left: 50%;
  height: 100%;
}

/* Columns */
.brands-column {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Cards */
.brand-card {
  background: #ffffff;
  padding: 25px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
}

.brand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.brand-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #d20f0f;
}

.brand-card p {
  font-size: 16px;
  line-height: 30px;
  color: #000;
}


.detailing-section {
  background: #f9fafc;
}

.main-title {
  font-size: 42px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 25px;
}

.main-title span {
  display: block;
  color: #d20f0f;
  margin-top: 5px;
}

.lead-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  max-width: 1200px;
  margin: 0 auto 0px;
}

.feature-box {
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  height: 100%;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.08);
}

.feature-box h5 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

.feature-box p {
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}


.package-section {
  background: #fff;
}

/* Title */
.package-title {
  font-weight: 700;
  color: #d20f0f;
  margin-bottom: 20px;
}

/* Image */
.package-image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
  height: 330px;
  object-fit: cover;
}

.package-image img {
  width: 100%;
  display: block;
  transition: 0.4s ease;
}

.package-image:hover img {
  transform: scale(1.05);
}

/* Content Card */
.package-card {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  font-size: 18px;
  line-height: 1.6;
  color: #000;
}

/* Custom Check Icon */
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: bold;
  color: #f0a500;
  font-size: 18px;
}


.repair-section {
  background: #f2f2f2;
}

.main-title {
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
}

.intro-text {
  font-size: 18px;
  line-height: 1.8;
  color: #000;
  margin-bottom: 18px;
}

.section-heading {
  font-size: 24px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #d20f0f;
}

.sub-heading {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 10px;
  color: #d20f0f;
}

.repair-section p {
  font-size: 16px;
  line-height: 1.9;
  color: #000;
  margin-bottom: 20px;
}


/* Gallery Page CSS Start */

.image_grid_gallery .card {
  background: #ffffff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 3px rgba(0, 0, 0, 0.24);
  color: #333333;
  border-radius: 2px;
}

.image_grid_gallery .card-image {
  background: #ffffff;
  display: block;
  padding-top: 70%;
  position: relative;
  width: 100%;
}

.image_grid_gallery .card-image img {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image_grid_gallery .container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 40px;
  justify-content: center;
  align-items: center;
}

/* ===============================
   INNER BANNER
================================= */

.inner-banner {
  position: relative;
  height: 500px;
  overflow: hidden;
}

/* Background Image */
.banner-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Dark Overlay */


/* Keep content above */
.inner-banner .container {
  z-index: 3;
}

/* Content Layout */
.banner-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Red Vertical Line */
.banner-line {
  width: 4px;
  height: 138px;
  background-color: #ff0000;
  /* margin-top: 10px; */
}

/* ── Banner entrance keyframes ── */
@keyframes bannerSlideDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bannerFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bannerFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Text Styling */
.banner-text h1 {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  animation: bannerSlideDown 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.abt-banner .banner-text h1 {
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0;
  animation: bannerSlideDown 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.banner-text p {
  font-size: 16px;
  line-height: 28px;
  color: #dddddd;
  max-width: 450px;
  animation: bannerFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.banner-content .site-btn {
  animation: bannerFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

/* ===============================
   VERTICAL BUTTON
================================= */

.vertical-btn {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: right top;
  background-color: #ff0000;
  color: #ffffff;
  padding: 10px 25px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: 4px 4px 0 0;
  z-index: 4;
  animation: bannerFadeIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

.vertical-btn:hover {
  background-color: #C6251C;
  color: #ffffff;
}


/* Blog Card */
.blog-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}



/* Image Section */
.blog-image {
  position: relative;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: 0.4s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

/* Category Badge */
.blog-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: #000;
  color: #fff;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 30px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

/* Content Section */
.blog-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Date */
.blog-date {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  margin-bottom: 15px;
  line-height: 1;
}

/* Title */
.blog-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #C6251C;
  line-height: 32px;
}

/* Excerpt - 2 line clamp */
.blog-excerpt {
  font-size: 14px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button */
.read-more-btn {
  display: inline;
  align-items: center;
  padding: 12px 16px;
  gap: 5px;
  font-size: 14px;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  background: #C6251C;
  color: #fff;
  transition: transform .25s ease, background .25s ease;
  line-height: 1;
  width: max-content;
  text-transform: uppercase;
}

.read-more-btn:hover {
  background: #000;
  color: #fff;
}


/* ================= Blog Detail Banner ================= */

.blog-detail-banner {
  background-color: #efefef;
  padding: 90px 0;
}

/* Breadcrumb */

.breadcrumb-wrapper {
  font-size: 15px;
  margin-bottom: 15px;
}

.breadcrumb-wrapper a {
  text-decoration: none;
  color: #e21d1d;
  font-weight: 500;
}

.breadcrumb-wrapper span {
  color: #999;
}

/* Subtitle */

.blog-detail-banner .blog-subtitle {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

/* Main Title */

.blog-detail-banner .blog-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: #000;
}

/* Image Styling */

.blog-detail-banner .blog-image-wrapper img {
  border-radius: 12px;
  width: 100%;
}

.breadcrumb-wrapper a.text-mute {
  color: #000;
}


/* ===============================
   Blog Detail Layout
================================ */

.blog-detail-section {
  padding: 80px 0;
  background: #ffffff;
}

/* Sidebar */

.blog-sidebar {
  position: sticky;
  top: 120px;
}

.share-box h5,
.toc-box h5 {
  font-weight: 600;
  margin-bottom: 15px;
}

/* Social Icons */

.social-icons {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: #C6251C;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 400;
  font-size: 19px;
}

/* TOC */

.toc-box {
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

#blog-toc .nav-link {
  color: #333;
  padding: 17px 0;
  font-size: 16px;
  transition: all 0.3s ease;
  line-height: 1;
  font-weight: 400;
}

#blog-toc .nav-link:hover {
  color: #C6251C;
}

/* Active Scrollspy Highlight */

#blog-toc .nav-link.active {
  color: #C6251C;
  font-weight: 600;
}

/* Content */

.blog-content h2 {
  font-size: 34px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 20px;
}

.blog-content h3 {
  font-size: 30px;
  font-weight: 500;
  margin-top: 30px;
  margin-bottom: 20px;
}

.blog-content p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin-bottom: 0;
}

.blog-content ul {
  padding-left: 20px;
}

.blog-content li {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
  margin-bottom: 0;
}

/* Section spacing for scroll offset */


.blog-content p:not(:last-child) {
  margin-bottom: 25px;
}

section.cta-strip.section a {
  color: #fff;
  text-decoration: none;
}


.cta-strip p {
  color: #fff;
}


.car_service-template-default.postid-715 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-704 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-748 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-746 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-743 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-744 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-707 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-745 .section.faqsWrapper {
  padding-bottom: 0;
}

.car_service-template-default.postid-1743 .section.faqsWrapper {
  /* padding-bottom: 100px; */
  padding-top: 0;
}

.section.faqsWrapper {
  padding-top: 0;
  padding-bottom: 0;
}

.car_service-template-default.postid-704 .locations-section.section {
  padding-top: 0;
}

.car_service-template-default.postid-748 .locations-section.section {
  padding-top: 0;
}

.car_service-template-default.postid-743 .locations-section.section {
  padding-top: 0;
}

/* .car_service-template-default.postid-704 .why-choose-us.section .readmore-text {
  display: none;
} */

.car_service-template-default .section-subtext {
  max-width: 820px;
}

/* ============================================================
   HERO-PARA-WRAPPER: remove arrow from Book Service button
   ============================================================ */
/* .hero-para-wrapper .site-btn::before,
.hero-para-wrapper .site-btn::after {
  display: none !important;
} */
.hero-para-wrapper .site-btn {
  /* background: #C6251C; */
  border-radius: 6px;
}

/* ============================================================
   ACCORDION: remove Bootstrap chevron arrows (Read More/Less)
   ============================================================ */
.ownerDetailsaccord .accordion-button::after {
  display: none !important;
}

/* ============================================================
   CONTACT INFO BANNER (cib)
   ============================================================ */
.cib-wrapper {
  position: relative;
  z-index: 10;
}

.cib-col {
  display: flex;
  align-items: stretch;
}

.cib-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 20px 42px;
  text-decoration: none !important;
  width: 100%;
  transition: filter 0.2s ease;
}

.cib-inner:hover {
  filter: brightness(0.93);
  text-decoration: none !important;
}

/* ---- LEFT COLUMN ---- */
.cib-col--light .cib-inner {
  background: #000;
}

.cib-icon-group {
  display: flex;
  gap: 8px;
  font-size: 30px;
  color: #555;
  flex-shrink: 0;
}

.cib-icon-group img,
.cib-call-icon img,
.cib-appt-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cib-appt-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.cib-col--light .cib-text p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.cib-cta-red {
  display: block;
  margin-top: 20px;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
}

/* ---- MIDDLE COLUMN ---- */
.cib-col--red .cib-inner {
  background: #C6251C;
}

.cib-call-icon {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cib-call-icon i {
  font-size: 32px;
  color: #fff;
  position: relative;
  z-index: 2;
}

.cib-call-icon::before,
.cib-call-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  animation: cib-pulse 1.9s ease-out infinite;
  transform: translate(-50%, -50%) scale(0.6);
  opacity: 0;
}


.cib-col--red .cib-text p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.cib-phone-num {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

/* ---- RIGHT COLUMN ---- */
.cib-col--dark .cib-inner {
  background: #000;
}

.cib-appt-icon {
  display: flex;
  gap: 8px;
  font-size: 30px;
  color: #fff;
  flex-shrink: 0;
}

.cib-col--dark .cib-text p {
  margin: 0;
  font-size: 18px;
  color: #fff;
  line-height: 1;
}

.cib-cta-white {
  display: block;
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
}

.cib-wrapper {
  position: absolute;
  z-index: 10;
  bottom: 0;
  right: 0;
  left: 0;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 991px) {
  .cib-inner {
    padding: 20px 28px;
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .cib-inner {
    padding: 18px 20px;
    gap: 14px;
  }

  .cib-phone-num,
  .cib-cta-red,
  .cib-cta-white {
    font-size: 15px;
  }

  .cib-icon-group,
  .cib-appt-icon {
    font-size: 26px;
  }

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

/* ============================================================
   LEADING CAR REPAIR SECTION
   ============================================================ */
.leading-section {
  background: #fff;
}

.leading-content {
  padding-right: 40px;
}

.leading-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-bottom: 24px;
}


.leading-content p:not(:last-child) {
  margin-bottom: 40px;
}


.leading-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C6251C;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 13px 28px;
  border-radius: 6px;
  margin-top: 10px;
  transition: background 0.2s ease;
}

.leading-btn:hover {
  background: #a81e16;
}

.leading-section .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
}

.leading-img-wrap {
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
  flex: 1;
  display: flex;
}

.leading-img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

@media (max-width: 991px) {
  .leading-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .leading-title {
    font-size: 1.8rem;
  }
}

/* ============================================================
   FEATURED SERVICES SECTION (fts)
   ============================================================ */
.fts-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #C6251C;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.fts-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111;
  line-height: 1.25;
  margin-bottom: 0;
}

.fts-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 36px 24px 30px;
  text-align: center;
  border-radius: 10px;
  height: 100%;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.fts-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.fts-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  height: 80px;
}

.fts-icon img {
  max-width: 75px;
  max-height: 75px;
  object-fit: contain;
}

.fts-card-title {
  font-weight: 700;
  color: #C6251C;
  margin-bottom: 12px;
  line-height: 1.3;
}

.fts-card-desc {
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.fts-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C6251C;
  color: #fff !important;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 13px 32px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.fts-view-btn:hover {
  background: #a81e16;
}

@media (max-width: 767px) {
  .fts-title {
    font-size: 1.6rem;
  }

  .fts-card {
    padding: 28px 18px 24px;
  }
}

/* ============================================================
   OUR BUSINESS SECTION — About Us page (ob)
   ============================================================ */
.ob-section {
  background: #C6251C;
}

.ob-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.ob-heading {
  font-size: 2.8rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 36px;
  font-family: 'Futura', sans-serif;
}

.ob-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #FFC107;
  color: #111 !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 14px 26px;
  border-radius: 4px;
  transition: background 0.2s;
  line-height: 1;
}

.ob-btn:hover {
  background: #e0a800;
}

.ob-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.35);
  align-self: stretch;
  flex-shrink: 0;
  margin: 0 40px;
}

.ob-right p {
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.85;
  margin-bottom: 22px;
}

.ob-right p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .ob-heading {
    font-size: 2rem;
  }

  .ob-divider {
    width: 100%;
    height: 1px;
    margin: 30px 0;
    align-self: auto;
  }
}

/* ============================================================
   OUR FACILITIES SECTION — About Us page (fac)
   ============================================================ */
.fac-section {
  background: #fff;
}

.fac-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 22px;
  font-family: 'Futura', sans-serif;
}

.fac-content p {
  line-height: 1.8;
}

.fa-content p:not(:last-child) {
  margin-bottom: 20px;
}

.waa-content p:not(:last-child) {
  margin-bottom: 20px;
}



.fac-content p:last-child {
  margin-bottom: 0;
}

/* ── Diamond Collage ──────────────────────────────────── */
.diamond-collage {
  position: relative;
  width: 100%;
  height: 520px;
}

/* Base diamond shape */
.dm {
  position: absolute;
  overflow: hidden;
  transform: rotate(45deg);
}

/* Image inside each diamond — counter-rotate so it stays upright */
.dm img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%) rotate(-45deg);
  object-fit: cover;
}

/* dm-1 — top-left, red border with car image */
.dm-1 {
  width: 158px;
  height: 158px;
  top: 0px;
  left: 10px;
  border: 5px solid #C6251C;
}

/* dm-2 — top-right large, gold border */
.dm-2 {
  width: 218px;
  height: 218px;
  top: 0;
  left: 178px;
  border: 5px solid #FFC107;
}

/* dm-3 — middle-left, gold border */
.dm-3 {
  width: 198px;
  height: 198px;
  top: 175px;
  left: 4px;
  border: 5px solid #FFC107;
}

/* dm-4 — bottom-center, red border */
.dm-4 {
  width: 178px;
  height: 178px;
  top: 295px;
  left: 148px;
  border: 5px solid #C6251C;
}




@media (max-width: 991px) {
  .diamond-collage {
    height: 340px;
    margin-bottom: 40px;
  }
}

/* ── Facilities Car Image Card ──────────────────────────────── */
.fac-img-col {
  display: flex;
}

.fac-car-card {
  width: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.14);
}

.fac-car-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 991px) {
  .fac-img-col {
    min-height: 320px;
    margin-bottom: 40px;
  }

  .fac-car-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: 320px;
  }
}

/* ============================================================
   MISSION VISION VALUES SECTION — About Us page
   ============================================================ */
.mvv-section {
  background: #f5f5f5;
}

.mvv-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #111;
  font-family: 'Futura', sans-serif;
  margin-bottom: 18px;
}

.mvv-intro {
  line-height: 1.85;
  max-width: 860px;
  margin: 0 auto;
}

/* Individual card — standalone white rounded box */
.mvv-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e8e8e8;
  text-align: center;
  padding: 50px 30px;
}

/* Icon */
.mvv-icon {
  margin-bottom: 18px;
}

.mvv-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

/* Card title */
.mvv-card-title {
  font-weight: 700;
  color: #000;
  font-size: 24px;
  margin-bottom: 14px;
  font-family: 'Futura', sans-serif;
}

/* Card text */
.mvv-card-text {
  line-height: 1.8;
  margin: 0;
}

/* Mobile: reduce card padding */
@media (max-width: 767px) {
  .mvv-card {
    padding: 36px 20px;
  }
}

/* ============================================================
   OUR TEAM SECTION — About Us page
   ============================================================ */

/* Full-bleed section — background image + full-section dark overlay */
.team-section {
  position: relative;
  background-image: url('../images/model-new-bg.webp');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}


/* Two-column flex row — sits above the overlay */
.team-inner {
  position: relative;
}

/* Left column — transparent, overlay from section::before handles darkening */
.team-left {
  flex: 0 0 100%;
  max-width: 100%;
  background: transparent;
  display: flex;
  align-items: center;
}

/* Right column — also transparent */
.team-right {
  flex: 1;
}

/* Car image below content, full container width */
.team-car-wrap {
  width: 100%;
  margin-top: 40px;
  border-radius: 10px;
  overflow: hidden;
  height: 600px;
}

.team-car-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-heading {
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  font-family: 'Futura', sans-serif;
}

.team-content p {
  color: #fff;
  line-height: 1.85;
  margin-bottom: 18px;
}

/* Mobile: stack vertically */
@media (max-width: 991px) {
  .team-inner {
    flex-direction: column;
  }



}

/* ============================================================
   WHO ARE WE SECTION — About Us page (waw)
   ============================================================ */
.waw-section {
  background: #fff;
}

/*
  Image column uses absolute positioning so the image has ZERO intrinsic height.
  The row height is driven purely by the right-side content column.
  The image then fills whatever height the content column produces.
*/
.waw-img-col {
  position: relative;
  min-height: 300px;
  /* floor for very short content */
}

.waw-img-wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.waw-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  display: block;
}

.waw-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 44px 0 44px 50px;
}

.waw-heading {
  font-size: 2.2rem;
  font-weight: 800;
  color: #111;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: 'Futura', sans-serif;
}

/* linear-gradient(to bottom, rgb(0 0 0) 9%, rgb(0 0 0 / 0%) 50%, rgb(0 0 0) 93%) */
.fac-content {
  padding-left: 17px;
}

.waw-content p {
  line-height: 1.75;
  margin-bottom: 16px;
}

@media (max-width: 991px) {
  .waw-img-col {
    min-height: 280px;
    margin-bottom: 30px;
  }

  .waw-img-wrap {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    height: 280px;
  }

  .waw-heading {
    font-size: 1.75rem;
  }
}

/* ============================================================
   WHO WE ARE SECTION (wwa)
   ============================================================ */
.wwa-section {
  background: #fff;
}

/* Dynamic height — image stretches to match right-side content */
.wwa-img-col {
  display: flex;
  flex-direction: column;
}

.wwa-img-wrap {
  flex: 1;
  /* fill the full column height */
  display: flex;
  flex-direction: column;
  width: 100%;
}

.wwa-img {
  flex: 1;
  /* stretch to fill the wrap height */
  min-height: 300px;
  /* safeguard when content is short */
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.wwa-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #C6251C;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.wwa-title {
  font-size: 2rem;
  font-weight: 800;
  color: #111 !important;
  line-height: 1.25;
  margin-bottom: 18px;
}

.wwa-highlight {
  font-size: 15px;
  font-weight: 700;
  color: #C6251C;
  margin-bottom: 16px;
  line-height: 1.6;
}

.wwa-para {
  line-height: 1.75;
  margin-bottom: 0;
}

.wwa-sub-heading {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
  margin-top: 4px;
}

.wwa-checklist {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.wwa-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  margin-bottom: 14px;
  border-bottom: 1px solid #00000014;
  padding-bottom: 14px;
  /* width: max-content; */
}

/* check.svg icon — sized and aligned with the text */
.wwa-check-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 4px;
  display: block;
}

.wwa-bottom {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.wwa-stat-box {
  border: 2px solid #c6251c;
  border-radius: 8px;
  padding: 16px 24px;
  text-align: center;
  min-width: 130px;
}

.wwa-stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 800;
  color: #C6251C;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Futura', sans-serif;
}

.wwa-stat-label {
  display: block;
  font-size: 18px;
  color: #000;
  line-height: 1.4;
  font-weight: 600;
}

.wwa-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #C6251C;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 13px 24px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.wwa-btn:hover {
  background: #a81e16;
}

@media (max-width: 991px) {
  .wwa-title {
    font-size: 1.7rem;
  }

  .wwa-img {
    max-width: 100%;
    margin-bottom: 10px;
  }
}

@media (max-width: 575px) {
  .wwa-stat-box {
    min-width: 120px;
    padding: 14px 20px;
  }

  .wwa-stat-num {
    font-size: 2rem;
  }
}


.section.faqsWrapper.homefaqsWrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.faqsWrapper.homefaqsWrapper .accordion-body h6 {
  margin-bottom: 12px;
}

/* ================= CTA BANNER SECTION ================= */
.cta-banner-section {
  position: relative;
  background: url('../images/das-cta.jpg') center center / cover no-repeat;
  padding: 90px 0;
  overflow: hidden;
}

.abt-cta-banner.cta-banner-section {
  position: relative;
  background: url('../images/dasabout-3.webp') center center / cover no-repeat;
  padding: 90px 0;
  overflow: hidden;
}


.cta-banner-section .container {
  z-index: 2;
}

.cta-banner-content {
  position: relative;
  z-index: 2;
}

.cta-banner-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #e8a800;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.cta-banner-heading {
  font-size: 2.6rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 36px;
  max-width: 580px;
}

.cta-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #e8a800;
  color: #111 !important;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;
  padding: 15px 30px;
  border-radius: 0;
  transition: background 0.2s ease;
}

.cta-banner-btn:hover {
  background: #d09800;
}

.cta-appt-tab {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg) translateX(50%);
  transform-origin: right center;
  background: #C6251C;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none !important;
  padding: 10px 22px;
  white-space: nowrap;
  z-index: 3;
}

.cta-appt-tab:hover {
  background: #a81e16;
  color: #fff !important;
}

@media (max-width: 768px) {
  .cta-banner-heading {
    font-size: 1.8rem;
  }

  .cta-appt-tab {
    display: none;
  }

  .cta-banner-section {
    padding: 60px 0;
  }
}

/* ================= END CTA BANNER SECTION ================= */



.fw-car-banner img {
  width: 100%;
  height: 1000px;
  display: block;
  object-fit: cover;
}

.waw-content p:not(:last-child) {
  margin-bottom: 40px;
}

.cib-wrapper .row {
  border: 2px solid #fff;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}

.blog-section {
  background: #FAFAFA;
}


.waw-section-row {
  /* --bs-gutter-x: 8.5rem; */
}

.why-choose-us section.another-wcu-section .contentWrapper {
  padding-left: 0%;
}

.cta-banner-section p {
  color: #fff;
}

.cta-banner-section.abt-cta-banner .cta-banner-heading {
  margin-bottom: 20px;
}

.new-content p:not(:last-child) {
  margin-bottom: 40px;
}

/* ============================================================
   DAS FOOTER  —  white background, black text
   ============================================================ */

/* ── Wrapper ── */
.das-footer {
  position: relative;
  background: #ffffff !important;
  background-image: none !important;
  overflow: hidden;
}

/* ── Dark semi-transparent overlay ── */
.das-footer__overlay {
  display: none;
}

/* All inner content sits above the overlay */
.das-footer__main,
.das-footer__bottom,
.das-footer__copyright {
  position: relative;
  z-index: 1;
}

/* ── Top section padding ── */
.das-footer__main {
  padding: 72px 0 36px;
  border-top: 1px solid #e8e8e8;
}

/* ── Section title (Connect / Quick links) ── */
.das-footer__title {
  font-size: 25px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 18px;
  font-family: 'Futura', Arial, sans-serif;
  letter-spacing: 0.3px;
}

/* ── Description paragraph ── */
.das-footer__desc {
  font-size: 14.5px;
  color: #444444;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 420px;
}

/* ── Email highlight ── */
.das-footer__email {
  color: #C6251C;
  text-decoration: none;
  transition: color 0.2s ease;
}

.das-footer__email:hover {
  color: #a01a13;
  text-decoration: underline;
}

/* ── Social icon row ── */
.das-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.das-footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #cccccc;
  color: #222222;
  font-size: 17px;
  text-decoration: none;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.das-footer__social-link:hover {
  background: #C6251C;
  border-color: #C6251C;
  color: #ffffff;
}

/* ── Quick-links list ── */
.das-footer__link-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.das-footer__link-list li {
  margin-bottom: 13px;
}

.das-footer__link-list li a {
  color: #333333;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.das-footer__link-list li a:hover {
  color: #C6251C;
  padding-left: 5px;
}

/* ── Bottom: divider + service tag links ── */
.das-footer__bottom {
  padding-bottom: 0;
}

.das-footer__hr {
  border: none;
  /* border-top: 1px solid #e0e0e0; */
  margin: 0;
}

/* Tag rows — centered, natural spacing, no extreme stretching */
.das-footer__tags {
  display: flex;
  flex-direction: column;
}

.das-footer__tag-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 5px 20px;
  border-bottom: 1px solid #eeeeee;
  gap: 0;
}

.das-footer__tag-row--last {
  border-bottom: none;
}

@media (max-width: 767px) {
  .das-footer__tag-row {
    justify-content: flex-start;
    padding: 5px 12px;
  }
}

/* Individual service link */
.das-footer__tag-link {
  font-size: 13px;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.18s ease;
  padding: 5px 0;
  line-height: 1;
}

.das-footer__tag-link:hover {
  color: #C6251C;
}

/* Pipe separator */
.das-footer__tag-sep {
  color: #cccccc;
  font-size: 13px;
  padding: 0 14px;
  user-select: none;
}

/* ── Copyright bar ── */
.das-footer__copyright {
  background: #f5f5f5;
  border-top: 1px solid #e0e0e0;
  padding: 18px 0;
  text-align: center;
}

.das-footer__copyright p {
  font-size: 13px;
  color: #555555;
  margin: 0;
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .das-footer__main {
    padding: 52px 0 40px;
  }

  .das-footer__title {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .das-footer__desc {
    max-width: 100%;
  }

  .das-footer__main {
    padding: 44px 0 32px;
  }
}

/* ============================================================
   GO-TO-TOP BUTTON  —  fixed red square, bottom-right corner
   ============================================================ */
.das-go-top {
  position: fixed;
  right: 0;
  bottom: 40px;
  width: 46px;
  height: 46px;
  background: #C6251C;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 9998;
  border-radius: 4px 0 0 4px;
  box-shadow: -3px 3px 18px rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.22s ease, visibility 0.3s ease;
}

.das-go-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.das-go-top:hover {
  background: #a01a13;
}

.das-go-top i {
  line-height: 1;
  pointer-events: none;
}

.single-car_service .hero__area--3::before {
  background: linear-gradient(to bottom, rgb(0 0 0) 12%, rgb(0 0 0 / 45%) 50%, rgb(0 0 0) 100%);
}


.single-car_service .hero__content .title {
  font-size: 60px;
  line-height: 57px;
  width: 100%;
}

.single-car_service .hero__content .subtitle {
  color: #ffffff;
  font-size: 40px;
  line-height: 37px;
  margin-bottom: 27px;
  text-transform: uppercase;
}

.single-car_service .hero-para-wrapper {
  max-width: 88%;
}

.single-car_service .contentWrapper {
  padding-left: 30px;
}

.single-car_service .why-choose-us.section.another-wcu-section {
  padding-top: 0;
}

.single-car_service .why-choose-us.section.another-wcu-section .contentWrapper {
  padding-left: 0px;
}

.carDetailInner .modelSection {
  margin-top: 0;
}

/* ============================================================
   TERMS & CONDITIONS PAGE
   ============================================================ */
.tc-section {
  background: #f8f8f8;
  padding: 80px 0 90px;
}

.tc-content {
  background: #ffffff;
  border-radius: 12px;
  padding: 56px 60px;
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.07);
}

.tc-main-title {
  font-size: 30px;
  font-weight: 800;
  color: #111111;
  margin-bottom: 20px;
  font-family: 'Futura', Arial, sans-serif;
}

.tc-block {
  margin-bottom: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid #eeeeee;
}

.tc-block--last {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.tc-title {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Futura', Arial, sans-serif;
}

.tc-icon {
  font-size: 22px;
  color: #C6251C;
  flex-shrink: 0;
}

.tc-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.tc-content p:last-child {
  margin-bottom: 0;
}

.tc-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 16px 0;
}

.tc-list li {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  padding: 6px 0 6px 24px;
  position: relative;
}

.tc-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C6251C;
  flex-shrink: 0;
}

.tc-content a {
  color: #C6251C;
  text-decoration: none;
}

.tc-content a:hover {
  text-decoration: underline;
}

@media (max-width: 767px) {
  .tc-content {
    padding: 32px 22px;
  }

  .tc-main-title {
    font-size: 24px;
  }

  .tc-title {
    font-size: 17px;
  }

  .banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to left, rgb(0 0 0 / 0%) 12%, rgb(0 0 0 / 39%) 50%, rgb(0 0 0 / 85%) 100%);
    z-index: 1;
  }
}


.blog-padd {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}