* {
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  list-style: none;
  word-wrap: break-word;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
:root {
  --animate-duration: 1.9s; /* or 2s, 2.5s, etc. */
} /* HEADER */
.main-header {
  width: 100%;
  /* background: #010d19; */
  /* background: #031638; */
  background: #010e1f;
  padding: 1px 35px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.main-header .white-logo {
  filter: brightness(0) invert(1) !important;
}
footer .white-logo {
  filter: brightness(0) invert(1) !important;
}
.repair-header {
  width: 100%;
  background: white;
  padding: 1px 35px;
  position: sticky;
  top: 0;
  z-index: 999;
}
.header-heading {
  font-size: 45px;
}
.heading-six {
  margin-left: 4px;
  font-size: 12px;
  font-weight: 400;
}
/* NAVBAR */
.navbar {
  padding: 0;
}

/* LOGO */
.logo {
  color: #fff !important;
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.logo .mr {
  color: #f4c20d;
}

.logo small {
  display: block;
  font-size: 11px;
  letter-spacing: 1px;
  margin-top: 3px;
  color: #fff;
}

/* MENU */
.menu .nav-item {
  margin: 0 12px;
}

/* NAV LINK */
.menu .nav-link {
  color: #fff !important;
  font-size: 14px;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
  padding-bottom: 6px;
}

.menu .active .nav-link,
.menu .nav-link:hover {
  color: white !important;
}
.menu .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 2px;
  background: #0d3fbd;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s ease;
}
.menu .nav-link:hover::after {
  transform: scaleX(1);
  /* MOVE RIGHT TO LEFT */
  transform-origin: right;
}
/* BUTTON */
/* .book-btn {
  background: #f4c20d;
  color: #000;
  padding: 9px 24px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s;
}

.book-btn:hover {
  background: #ffd633;
  color: #000;
  text-decoration: none;
} */

.btn-box .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: #0d3fbd;
  color: white;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.6s;
  box-shadow: 0 0 0.5rem #0d3fbd;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #0d3fbd;
}
.book-box .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 150px;
  height: 100%;
  background: #0d3fbd;
  color: white;
  font-size: 1rem;
  letter-spacing: 1px;
  font-weight: 600;
  transition: 0.6s;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  border: 2px solid #0d3fbd;
}
/* .btn-box .btn:hover {
  border: 2px solid black;
  color: white;
} */
.btn:hover {
  color: white;
}
.animated-btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.animated-btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: black;
  width: 0;
  height: 100%;
  transition: 0.4s;
  z-index: -1;
}

.animated-btn:hover::before {
  width: 100%;
}
/* ========== HERO SECTION - CORRECTED CSS ========== */

.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background-color: #010e1f;
}
/* Smooth gradient left side - spreading with no hardline */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: #010e1f;
  pointer-events: none;
} /* Hero right side image area */
.hero {
  position: relative;
  background-image: url("/assets/images/hero-back-img.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 480px;
  display: flex;
  align-items: center; /* ZOOM IMAGE */
}
.service-section {
  background: rgb(1, 14, 31);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.card-shadow {
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.mini-card {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.logo img {
  width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
}
.logo {
  display: inline-block;
  line-height: 0;
}
.service-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  padding: 7px 10px;
  position: relative;
  transition: 0.3s ease;
  height: 100%;
  text-align: center;
}

/* .service-item:hover {
  background: rgb(4, 25, 53);
} */

/* Vertical Divider */
.service-item::after {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  width: 1px;
  height: 60%;
  background: rgba(255, 255, 255, 0.15);
}

/* Remove divider from last item */
.service-col:last-child .service-item::after {
  display: none;
}

.service-item i {
  font-size: 28px;
  color: #fff;
  flex-shrink: 0;
}

.service-item span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.4;
  display: block;
}

/* Tablet */
@media (max-width: 991px) {
  .service-col:nth-child(2n) .service-item::after {
    display: none;
  }

  .service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: inherit;
  }
}

/* TEXT ABOVE OVERLAY */
.hero-text {
  position: relative;
  color: #fff;
  z-index: 2;
}
.hero-text h1 {
  font-size: 52px;
  font-weight: 900;
  line-height: 1.3; color: rgb(30, 91, 245);
}

.hero-text h1 span {
  color: white;
  /* color: rgb(30, 91, 245); */
  /* color: #f4c20d; */
}

.hero-text p {
  margin-top: 15px;
  color: #ddd;
  max-width: 450px;
}
.padd-left {
  padding-left: 40px;
}
/* BUTTONS */
.hero-btns {
  margin-top: 25px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.btn-yellow {
  background: #f4c20d;
  color: #000;
  padding: 10px 18px;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
}

.btn-dark {
  background: #111;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #fff;
  color: #fff;
  padding: 10px 18px;
  border-radius: 4px;
  text-decoration: none;
}

/* our repair services */
.services-section {
  padding: 31px 0;
  background: #fff;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 17px;
  color: #191916;
}

.service-box {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  padding: 10px 15px;
  text-align: center;
  transition: all 0.4s ease;
  cursor: pointer;
  height: 100%;
  box-shadow:
    0 1.6px 3.6px 0 rgb(0 0 0 / 13%),
    0 0.3px 0.9px 0 rgb(0 0 0 / 11%);
}

.service-box i {
  font-size: 42px;
  color: #191916;
  margin-bottom: 15px;
  transition: 0.4s;
}

.service-box h5 {
  font-size: 1rem;
  font-weight: 700;
  color: #191916;
  line-height: 1.5;
  margin: 0;
  transition: 0.4s;
}

/* Hover Effects */
.service-box:hover {
  background: #0d3fbd;
  transform: translateY(-8px);
  border-color: #0d3fbd;
  box-shadow: 0 10px 25px rgba(17, 10, 220, 0.35);
}

.service-box:hover i,
.service-box:hover h5 {
  color: white;
}

/* Two column layout */
.grid-2cols {
  display: grid;
  gap: 48px;
}

/* Section Titles */
.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 32px;
  color: #1a1a2e;
}

/* Brands Grid */
.brands-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 80px;
  padding: 0 12px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: all 0.2s ease;
  cursor: pointer;
}

.brand-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.brand-card i {
  font-size: 1.55rem;
  color: #1a1a2e;
}

.brand-card span {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a2e;
}

/* How It Works - Steps Layout */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4px;
  flex-wrap: wrap;
}

.step-item {
  display: flex;
  align-items: flex-start;
  flex: 1;
  min-width: 80px;
}

.step-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
}

.step-circle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: #1a1a2e;
  border-radius: 50%;
  color: white;
}

.step-circle i {
  font-size: 1.75rem;
}

.step-number {
  position: absolute;
  bottom: -31px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #0d3fbd;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: bold;
  color: white;
  font-weight: 800;
}

.step-label {
  margin-top: 37px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 700;
  color: #1a1a2e;
}

.chevron {
  display: flex;
  align-items: center;
  margin-top: 20px;
  color: #94a3b8;
  flex-shrink: 0;
}

.chevron i {
  font-size: 1rem;
}
.ourstore {
  font-weight: 800;
  background-color: #0d3fbd;
  font-size: 18px;
  color: white;
}
.custom-card {
  cursor: pointer;
  transition: all 0.4s ease;
}
.custom-card:hover {
  transform: translateY(-8px);
}
.btn-learn-more {
  background-color: #0d3fbd;
  color: white;
  border: none;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.btn-learn-more:hover {
  background-color: #0d3fbd;
  transform: translateY(0px);
  border-radius: 3px;
}

.arrow-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.get-directions {
  /* background-color: #ffc107; */
  background-color: #0d3fbd;
  color: white;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px; /* spacing between text and icon */
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 13px;
}
.get-directions:hover .loc-icon {
  color: #fff;
}
.loc-icon {
  color: white;
  width: 20px;
  font-size: 13px;
}
.get-directions:hover {
  transform: translateY(-3px); /* slight lift on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #0d3fbd; /* slightly brighter */
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.get-directions:hover .arrow-icon {
  transform: translateX(5px);
}

.call {
  background-color: #0d3fbd;
  color: white;
  border: none;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px; /* spacing between text and icon */
  transition: all 0.3s ease;
  font-weight: 600;
}
.call:hover .loc-icon {
  color: #fff;
}
.loc-icon {
  color: white;
  width: 20px;
}
.call:hover {
  transform: translateY(-3px); /* slight lift on hover */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #0d3fbd; /* slightly brighter */
}

.arrow-icon {
  transition: transform 0.3s ease;
}

.call:hover .arrow-icon {
  transform: translateX(5px);
}
.margin {
  margin-left: 60px;
}
.google-multi {
  font-size: 20px;
  background: conic-gradient(
    #4285f4 0 25%,
    #ea4335 25% 50%,
    #fbbc05 50% 75%,
    #34a853 75% 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* slider */
.gallerySwiper {
  padding-bottom: 50px;
}

.gallerySwiper .swiper-slide img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
}
.swiper-pagination-bullet {
  background: #b0b0b0;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #0d3fbd;
}
.gallerySwiper .swiper-slide img:hover {
  transform: scale(1.03);
}

/* faq */

/* Remove blue focus outline and box-shadow */
.faq-button:focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: transparent !important;
}

/* Remove blue border when button is active/expanded */
.faq-button:not(.collapsed) {
  box-shadow: none !important;
  background-color: white !important;
  color: #1a1a2e !important;
}
.accordion-collapse.show {
  border-top: 1px solid #e0e0e0;
}

/* Custom circle icons - Plus & Minus */
.faq-button::after {
  display: none !important;
}

.faq-button {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-button::before {
  content: "+";
  position: absolute;
  right: 20px;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a2e;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.faq-button:not(.collapsed)::before {
  content: "−";
  color: #1a1a2e;
}

/* Remove any extra shadows */
.accordion-item {
  box-shadow: 0 2px 10px rgba(30, 30, 207, 0.05) !important;
}

.accordion-item:focus-within {
  box-shadow: 0 2px 10px rgba(30, 30, 207, 0.05) !important;
}
.footer-icon {
  color: white;
  width: 20px;
}
.custom-hover-cardf {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s ease;
  border-top: 4px solid transparent !important;
}

.custom-hover-cardf::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0d3fbd, #0d3fbd);
  transition: all 0.4s ease;
  border-radius: 12px 12px 0 0;
}

.custom-hover-cardf:hover::before {
  left: 0;
}

.custom-hover-cardf:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0, 114, 255, 0.18) !important;
}
/* Phone */
.phone-icon {
  animation: shake 2s infinite;
}

/* Email */
.email-icon {
  animation: bounce 2s infinite;
}

/* Location */
.location-icon {
  animation: pulse 2s infinite;
}
.custom-hover-card {
  transition: all 0.3s ease;
}
.custom-hover-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15) !important;
} /* footer */
footer a {
  transition: all 0.3s ease;
}

footer a:hover {
  padding-left: 3px;
}
footer li a:hover {
  color: white !important;
}
.social-icons a:hover {
  color: white !important;
  transform: translateX(3px);
  display: block;
}

/* Animations */

@keyframes shake {
  0%,
  100% {
    transform: rotate(0deg);
  }

  20% {
    transform: rotate(15deg);
  }

  40% {
    transform: rotate(-15deg);
  }

  60% {
    transform: rotate(10deg);
  }

  80% {
    transform: rotate(-10deg);
  }
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}
@media (min-width: 1024px) {
  .grid-2cols {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* repairs */
.repairs-section {
  position: relative;
  background-image: url("/assets/images/repairs.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 40%;
  min-height: 380px;
}
.repair-heading {
  font-size: 41px;
  font-weight: 700;
  line-height: 1.5;
}

.repairs-section .span-heading {
  color: rgb(30, 91, 245);
}
/* FEATURES */
.repair-features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.feature-item i {
  width: 16px;
  height: 16px;
  background: rgb(30, 91, 245);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #fff;
}

/* BUTTONS */
.repairs-section .repair-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
}

.repairs-section .repair-btn i {
  font-size: 24px;
}

.repairs-section .repairs-btn:hover {
  transform: translateY(-3px);
  color: #fff;
}
.repairs-section .repairs-btn {
  /* background-color: #ffc107; */
  background-color: #0d3fbd;
  color: white;
  border: 1px solid #0d3fbd;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px; /* spacing between text and icon */
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 13px;
}
.repairs-section .outline-btn {
  background: transparent;
  border: 1px solid #6c757d;
}
.repairs-section .outline-btn:hover {
  background-color: #0d3fbd;
  border-color: #0d3fbd;
}
.repairs-section .repairs-btn:hover .repairs-icon {
  color: #fff;
}
.repairs-section .repairs-icon {
  color: white;
  font-size: 20px;
}
.repairs-section .repairs-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  background-color: #0d3fbd;
}

.repairs-section .arrow-icon {
  transition: transform 0.3s ease;
}

.repairs-section .repairs-btn:hover .arrow-icon {
  transform: translateX(5px);
}
/* CARD */
.repair-card {
  border: 1px solid #e5e5e5;
  border-radius: 6px;
  background: #fff;
  padding: 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.3s ease;
  cursor: pointer;
  min-height: 82px;
}

.repair-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
}

/* IMAGE */
.repair-card img {
  width: 153px;
  height: 115px;
  object-fit: contain;
}
.repair-card .samsong {
  width: 125px;
  height: 49px;
  object-fit: contain;
}

/* TEXT */
.repair-text h5 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.repair-text p {
  margin: 0;
  font-size: 12px;
  color: #666;
} /* CARD */
.services-cards .service-card {
  border: 1px solid #e5e5e5;
  border-radius: 2px;
  padding: 18px 20px;
  background: #fff;
  height: 100%;
}

/* TITLE */
.services-cards .service-title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 22px;
  color: #1a1a2e;
  text-transform: uppercase;
}

/* ITEM */
.services-cards .service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

/* LEFT SIDE */
.services-cards .service-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ICON BOX */
.services-cards .service-icon {
  width: 22px;
  height: 22px;
  background: #000;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.services-cards .service-icon i {
  color: #fff;
  font-size: 13px;
}

/* TEXT */
.services-cards .service-left span {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.2;
}

/* PRICE */
.services-cards .service-item h5 {
  margin: 0;
  color: rgb(30, 91, 245);
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}
.services-cards .before-after-card {
  border: 1px solid #e5e5e5;
  padding: 20px;
  background: #fff;
  text-align: center;
}

.services-cards .before-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 25px;
}

.services-cards .before-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.services-cards .phone-box {
  display: flex;
  align-items: center;
  position: relative;
}

.services-cards .phone-box img {
  width: 80px;
  height: 140px;
  object-fit: cover;
  border-radius: 10px;
}

.services-cards .slide-btn {
  width: 45px;
  height: 45px;
  border: none;
  background: #00153a;
  color: #fff;
  border-radius: 10px;
  font-size: 28px;
  position: absolute;
  left: -20px;
  z-index: 2;
}

.services-cards .right-btn {
  left: auto;
  right: -20px;
}

.services-cards .plus-icon {
  width: 48px;
  height: 48px;
  border: 2px solid #ddd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #222;
}
/* COMMON */
.why-choice .why-card,
.why-choice .warranty-card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 17px 25px;
  min-height: 300px;
}

/* WHY CARD */
.why-choice .why-card {
  background: #00153a;
  color: #fff;
}

.why-choice .why-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
}

.why-choice .why-item {
  display: flex;
  gap: 8px;
}

.why-choice .why-icon {
  font-size: 30px;
  color: #fff;
  line-height: 1;
}

.why-choice .why-item h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.why-choice .why-item p {
  margin: 0;
  font-size: 16px;
  color: #d1d5db;
}

/* WARRANTY */
.why-choice .warranty-top {
  display: flex;
  gap: 25px;
}

.why-choice .warranty-icon {
  font-size: 49px;
  color: #1d4ed8;
  line-height: 1;
}

.why-choice .warranty-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
}

.why-choice .warranty-list {
  padding: 0;
  margin: 0 0 25px;
  list-style: none;
}

.why-choice .warranty-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 14px;
}

.why-choice .warranty-list li i {
  color: #1d4ed8;
  font-size: 22px;
}

.why-choice .warranty-btn {
  display: inline-block;
  background: #0d3fbd;
  color: #fff;
  padding: 9px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 700;
}
.expert-card {
  background: #00153a;
  border-radius: 14px;
  padding: 20px;
  overflow: hidden;
}

.expert-content {
  color: #fff;
}

.expert-title {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 10px;
}

.expert-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.expert-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 8px;
}

.expert-list li i {
  color: #2563eb;
  font-size: 18px;
}

.expert-btn {
  display: inline-block;
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
  padding: 12px 35px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 700;
  transition: 0.3s;
}

.expert-btn:hover {
  background: #2563eb;
  color: #fff;
}

.expert-image {
  height: 100%;
  text-align: center;
}
.top-info-bar {
  background: #02163b;
  overflow: hidden;
}
.info-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
  height: 100%;
}
.info-icon {
  color: #fff;
  font-size: 22px;
  min-width: 30px;
  text-align: center;
}
.info-content h6 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2px;
  letter-spacing: 0.3px;
}
.info-content p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
}
/* =========================
   ABOUT SECTION START
========================= */

.about-sec {
  overflow: hidden;
  background: #fbfcfe;
  padding-bottom: 30px;
}

/* REMOVE BOOTSTRAP ROW MARGIN ISSUE */
.about-sec .about-sec-wrapper .row {
  margin: 0;
}

/* =========================
   LEFT SIDE
========================= */

.about-sec .about-sec-left {
  background: #fbfcfe;
  position: relative;
  z-index: 2;
  padding-left: 21px;
}

/* SMOKY / CLOUDY EFFECT */
/* .about-sec .about-sec-left::after {
  content: "";
  position: absolute;
  top: 0;
  right: -120px;
  width: 240px;
  height: 100%;
  z-index: 3;
  pointer-events: none;

  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0.95) 20%,
    rgba(255, 255, 255, 0.8) 40%,
    rgba(255, 255, 255, 0.45) 65%,
    rgba(255, 255, 255, 0) 100%
  );

  filter: blur(18px);
} */

.about-sec .about-sec-content {
  padding-top: 38px;
  position: relative;
  z-index: 5;
}

.about-sec .about-sec-tag {
  display: inline-block;
  padding: 7px 14px;
  border-radius: 30px;
  background: #245dff;
  color: white;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 22px;
}

.about-sec .about-sec-content h2 {
  font-size: 48px;
  line-height: 1.1;
  font-weight: 800;
  color: white;
  margin-bottom: 18px;
}

.about-sec .about-sec-content h2 span {
  color: #245dff;
}
.zoom-on-hover {
  transition: transform 0.3s ease;
}
.zoom-on-hover:hover {
  transform: scale(1.05);
}
.contact-map-sec-map {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}

.google-map-iframe {
  width: 100%;
  height: 400px;
  border: 0;
}
.about-sec .walk-in {
  font-size: 46px !important;
  line-height: 1.1 !important;
  font-weight: 600 !important;
  color: white !important;
  margin-bottom: 18px !important;
}
.features-list-wrapper {
  margin-bottom: 1.5rem;
}

.tick-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.tick-features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: white;
}

.tick-features-list li i {
  font-size: 1.2rem;
  color: #335ebb;
  flex-shrink: 0;
}

.tick-features-list li span {
  line-height: 1.4;
}

.address-text,
.hours-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: white;
  margin-bottom: 12px;
}

.address-text i,
.hours-text i {
  font-size: 1.2rem;
  color: white;
  flex-shrink: 0;
}

.hours-text {
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .tick-features-list li {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  .service-item::after {
    display: none !important;
  }
  .address-text,
  .hours-text {
    font-size: 0.8rem;
  }
}
@media (max-width: 768px) {
  .google-map-iframe {
    height: 300px;
  }
  .service-item {
    display: inline-grid-lanes !important;
  }
}
.about-sec .about-sec-content p {
  font-size: 13px;
  line-height: 1.1;
  color: whitesmoke;
  margin-bottom: 20px;
  max-width: 560px;
}
/* =========================
   STATS
========================= */

.about-sec .about-sec-stats {
  row-gap: 20px;
  margin-bottom: 20px;
}

/* COLUMN FLEX */
.about-sec .about-sec-stats > div {
  display: flex;
}

/* CARD */
.about-sec .about-sec-stat-box {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;

  width: 100%;
  min-height: 185px;
  padding: 2px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease;
}
.about-sec .about-sec-stat-boxtwo {
  background: #ffffff;
  border: 1px solid #e9e9e9;
  border-radius: 14px;

  width: 100%;
  min-height: 135px;
  padding: 2px 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: 0.3s ease;
}
.sameicons {
  color: #133889 !important;
}
/* HOVER */
.about-sec .about-sec-stat-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

/* ICON */
.about-sec .about-sec-icon {
  width: 50px;
  height: 50px;

  border: 1px solid #dbe5ff;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;

  color: #245dff;
  font-size: 26px;
}

/* HEADING */
.about-sec .about-sec-stat-box h3 {
  font-size: 21px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
  margin-bottom: 10px;
}
.spanheading {
  font-size: 12px !important;
  font-weight: 500 !important;
}
.about-sec .padd-lft {
  padding-left: 5px;
}
/* TEXT */
.about-sec .about-sec-stat-box span {
  font-size: 14px;
  line-height: 1.5;
  color: #666;

  max-width: 120px;
}

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

@media (max-width: 991px) {
  .about-sec .about-sec-stat-box {
    min-height: 190px;
  }

  .about-sec .about-sec-stat-box h3 {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .about-sec .about-sec-stat-box {
    min-height: 180px;
    padding: 25px 15px;
  }

  .about-sec .about-sec-icon {
    width: 58px;
    height: 58px;
    font-size: 22px;
  }

  .about-sec .about-sec-stat-box h3 {
    font-size: 28px;
  }

  .about-sec .about-sec-stat-box span {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .about-sec .about-sec-stat-box {
    min-height: 170px;
  }

  .about-sec .about-sec-stat-box h3 {
    font-size: 24px;
  }
}

/* =========================
   BOTTOM AREA
========================= */

.about-sec .about-sec-bottom {
  row-gap: 25px;
}

.about-sec .about-sec-info-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #111;
}

.about-sec .about-sec-info-box p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.8;
}

.about-sec .about-sec-info-box ul {
  padding: 0;
  margin: 0;
}

/* VALUES LIST */

.about-sec .about-sec-info-box ul {
  padding: 0;
  margin: 0;
}

.about-sec .about-sec-info-box ul li {
  list-style: none;

  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 14px;

  color: #555;
  font-size: 15px;
  font-weight: 500;
}

/* BOXICONS */

.about-sec .about-sec-info-box ul li i {
  font-size: 20px;
  color: #245dff;
  flex-shrink: 0;
}

/* =========================
   RIGHT IMAGE
========================= */

.about-sec .about-sec-right {
  position: relative;
  padding: 0;
  min-height: 100%;
}
.same-card {
  min-height: 220px;
}
.about-sec .about-sec-image {
  width: 100%;
  height: 100%;
  background-image: url(/assets/images/hero-back-img.jpeg);
  /* background-size: cover; */
  background-position: center;
  /* background-repeat: no-repeat; */
  background-size: contain;
}

/* DARK OVERLAY */
/* .about-sec .about-sec-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.08);
} */
/* =========================
   FEATURE SECTION START
========================= */

.feature-sec {
  margin-top: 27px;
  position: relative;
  z-index: 20;
}

.feature-sec .feature-sec-wrapper {
  background: #ffffff;

  border: 1px solid #ececec;
  border-radius: 12px;

  padding: 28px 30px;

  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

/* CARD */

.feature-sec .feature-sec-card {
  display: flex;
  align-items: center;
  gap: 18px;

  height: 100%;
}

/* ICON */

.feature-sec .feature-sec-icon {
  width: 72px;
  height: 72px;

  min-width: 72px;

  border-radius: 18px;

  background: #f5f7ff;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #245dff;
  font-size: 34px;
}

/* CONTENT */

.feature-sec .feature-sec-content h4 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.feature-sec .feature-sec-content p {
  margin-bottom: 0;

  color: #666;
  font-size: 16px;
  line-height: 1.7;
}
/* =========================
   CONTACT MAP SECTION START
========================= */

.contact-map-sec {
  padding: 30px 0;
}

/* MAIN WRAPPER */

.contact-map-sec .contact-map-sec-wrapper {
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  min-height: 547px;
  padding: 22px 17px;
}

/* =========================
   LEFT INFO
========================= */
/* =========================
   LEFT INFO AREA
========================= */

.contact-map-sec .contact-map-sec-info-area {
  display: flex;
  flex-direction: column;
  gap: 14px;

  height: 100%;
}

/* CARD */

.contact-map-sec .contact-map-sec-info-card {
  border: 1px solid #ececec;
  border-radius: 9px;
  background: #ffffff;
  padding: 15px 13px;
  display: flex;
  align-items: flex-start;
  gap: 2px;
  transition: 0.3s ease;
}
.contact-map-sec .contact-map-sec-info-cardfirst {
  padding: 4px 8px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: 0.3s ease;
}

/* HOVER */

.contact-map-sec .contact-map-sec-info-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* ICON */

.contact-map-sec .contact-map-sec-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  color: #245dff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}
.contact-map-sec .contact-map-sec-iconfirst {
  width: 56px;
  height: 56px;
  min-width: 56px;
  border-radius: 14px;
  color: #245dff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
}

/* CONTENT */

.contact-map-sec .contact-map-sec-content {
  flex: 1;
}

.contact-map-sec .contact-map-sec-content h4 {
  font-size: 20px;
  font-weight: 700;

  color: #111111;

  margin-bottom: 2px;
}

.contact-map-sec .contact-map-sec-content p,
.contact-map-sec .contact-map-sec-content a {
  font-size: 15px;
  line-height: 1.8;

  color: #555555;

  text-decoration: none;

  margin-bottom: 0;

  display: block;
}

/* OPENING HOURS SPACING */

.contact-map-sec .contact-map-sec-content p + p {
  margin-top: 6px;
}

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

@media (max-width: 767px) {
  .contact-map-sec .contact-map-sec-info-card {
    padding: 18px 15px;
    gap: 14px;
  }

  .contact-map-sec .contact-map-sec-icon {
    width: 50px;
    height: 50px;

    min-width: 50px;

    font-size: 26px;
  }

  .contact-map-sec .contact-map-sec-content h4 {
    font-size: 18px;
  }

  .contact-map-sec .contact-map-sec-content p,
  .contact-map-sec .contact-map-sec-content a {
    font-size: 14px;
  }
}

/* CONTENT */

.contact-map-sec .contact-map-sec-content h4 {
  font-size: 20px;
  font-weight: 700;

  color: #111;

  margin-bottom: 3px;
}

.contact-map-sec .contact-map-sec-content p,
.contact-map-sec .contact-map-sec-content a {
  font-size: 14px;
  line-height: 1.8;

  color: #555;

  text-decoration: none;

  display: block;
}

/* =========================
   MAP AREA
========================= */

/* MAP */

.contact-map-sec .contact-map-sec-map {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.contact-map-sec .contact-map-sec-map img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   BUTTONS
========================= */

.contact-map-sec .contact-map-sec-btns {
  display: flex;
  gap: 18px;
}

/* BUTTON */

.contact-map-sec .about-icons {
  font-size: 23px;
}
.contact-map-sec .contact-map-sec-btn {
  flex: 1;

  height: 49px;

  border-radius: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 16px;
  font-weight: 600;

  text-decoration: none;

  transition: 0.3s ease;
}

/* LIGHT BUTTON */

.contact-map-sec .light-btn {
  border: 2px solid #245dff;

  color: #245dff;

  background: #fff;
}

.contact-map-sec .light-btn:hover {
  background: #245dff;
  color: #fff;
}

/* DARK BUTTON */

.contact-map-sec .dark-btn {
  background: #0d2f8f;
  color: #fff;
}

.contact-map-sec .dark-btn:hover {
  transform: translateY(-3px);
}
.contact-map-sec .getintouch-card {
  background: #ffffff;
  border-radius: 12px;
  height: 100%;
  border: 1px solid #e8e8e8;
}

.contact-map-sec .getintouch-inner {
  padding: 2rem 1rem 1.2rem 1rem;
}

.contact-map-sec .getintouch-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-map-sec .form-group {
  margin-bottom: 1.2rem;
}

.contact-map-sec .input-field {
  width: 100%;
  padding: 0.9rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  background-color: #fefefe;
  font-family: inherit;
  outline: none;
}

.contact-map-sec .input-field:focus {
  border-color: #003bb9;
  box-shadow: 0 0 0 3px rgba(43, 51, 126, 0.15);
}

.contact-map-sec .textarea.input-field {
  resize: vertical;
  min-height: 100px;
}

.contact-map-sec .send-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #003bb9;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.9rem 1.6rem;
  border: none;
  border-radius: 7px;
  cursor: pointer;
  width: 100%;
  font-family: inherit;
}

.contact-map-sec .send-btn:hover {
  background: #133889;
}

.contact-map-sec .contact-methods {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #edf2f7;
}

.contact-map-sec .method-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: px;
  min-width: 110px;
  line-height: 15px;
}

.contact-map-sec .method-icon {
  width: 40px;
  height: 40px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #003bb9;
  font-size: 2rem;
}
.follow-payment-section {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0rem 1rem 2rem 1rem;
}

.follow-payment-section .card {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  padding: 1rem 1.5rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.follow-payment-section .card-label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #0f172a;
}

.follow-payment-section .social-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.follow-payment-section .social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  text-decoration: none;
}
/* Only remove transform/scale on hover */
.follow-payment-section .social-icon {
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.follow-payment-section .social-icon:hover {
  transform: none !important;
  scale: 1 !important;
}

/* Specifically for YouTube large icon */
.youtube-large-icon:hover {
  transform: none !important;
  scale: 1 !important;
}
.follow-payment-section .social-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
}
/* Or if you want specific size */
.youtube-large-icon svg {
  width: 1.4rem !important;
  height: 1.4rem !important;
}

.follow-payment-section .social-icon.facebook {
  background: #1877f2;
  color: white;
}

.follow-payment-section .social-icon.instagram {
  background: radial-gradient(
    circle at 30% 110%,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  color: white;
}

.follow-payment-section .social-icon.youtube {
  background: #ff0000;
  color: white;
}

.follow-payment-section .social-icon.tiktok {
  background: black;
  color: white;
}

.follow-payment-section .payment-icons {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.follow-payment-section .pay-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  height: 2.5rem;
  min-width: 3.5rem;
  padding: 0 0.75rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
}

.follow-payment-section .visa-text {
  color: #1a1f71;
  font-weight: 800;
  font-style: italic;
  font-size: 0.875rem;
}

.follow-payment-section .mastercard-circles {
  position: relative;
  display: flex;
}

.follow-payment-section .circle-red {
  width: 1.25rem;
  height: 1.25rem;
  background: #eb001b;
  border-radius: 9999px;
}

.follow-payment-section .circle-yellow {
  width: 1.25rem;
  height: 1.25rem;
  background: #f79e1b;
  border-radius: 9999px;
  margin-left: -0.5rem;
  opacity: 0.9;
}

.follow-payment-section .paypal-icon {
  width: 1rem;
  height: 1rem;
  color: #253b80;
}

.follow-payment-section .pay-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.follow-payment-section .pay-text-dark {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.follow-payment-section .google-text {
  font-size: 0.875rem;
  font-weight: 500;
}

.follow-payment-section .g-blue,
.follow-payment-section .g-blue2 {
  color: #4285f4;
}

.follow-payment-section .o-red,
.follow-payment-section .e-red {
  color: #ea4335;
}

.follow-payment-section .o-yellow {
  color: #fbbc05;
}

.follow-payment-section .l-green {
  color: #34a853;
}
.contact-map-sec .method-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  color: #5b6e8c;
}

.method-value {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a2540;
  text-decoration: none;
}

.contact-map-sec .method-value a {
  text-decoration: none;
  color: inherit;
}

.contact-map-sec .method-value a:hover {
  color: #2b7e6b;
}
.features-wrapper {
  width: 100%;
  background: #fff;
}

.feature-card {
  text-align: center;
  padding: 1.5rem 1rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4e7bed;
}

.feature-icon i {
  font-size: 50px;
}
.feature-icontwo {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-icontwo i {
  font-size: 50px;
}

.feature-title {
  font-size: 1rem;
  font-weight: 700;
  color: rgb(241, 240, 240);
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.feature-desc {
  font-size: 0.8rem;
  color: whitesmoke;
  line-height: 1.4;
  margin-bottom: 0;
}
.guarenty-card {
  border-radius: 20px;
  padding: 15px 23px;
  background: #000f26;
}
.guarenty-cardtwo {
  padding: 15px 23px;
  background: #000f26;
}
.guarenty-cardthree {
  padding: 15px 23px;
  background: #000f26;
}
.accessories-section {
  background-color: #00112b;
}
.text-primary-blue {
  color: #1f7bff;
}
.text-light-muted {
  color: #b8c4d6;
}
.accessory-shop-section {
  padding: 3rem 0;
  background: #f8fafc;
}

/* Sidebar Styles */
.categories-sidebar,
.brand-section {
  margin-bottom: 2rem;
}

.sidebar-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #0d3fbd;
  display: inline-block;
}

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

.categories-list li {
  margin-bottom: 0.5rem;
}

.categories-list li a {
  text-decoration: none;
  color: #5b6e8c;
  font-size: 1rem;
  transition: color 0.2s;
  display: block;
  cursor: pointer;
}

.categories-list li a:hover {
  color: #0d3fbd;
  padding-left: 5px;
}

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

.brand-list li {
  margin-bottom: 0.5rem;
}

.brand-list label {
  font-size: 0.9rem;
  color: #5b6e8c;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-list input[type="checkbox"] {
  width: 16px;
  height: 16px;
  cursor: pointer;
  accent-color: #0d3fbd;
}

/* Featured Products */
.featured-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 1.5rem;
}

.product-card {
  background: white;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  height: 100%;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.product-image {
  width: 100%;
  height: 180px;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: 0.5rem;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #0a2540;
  margin-bottom: 0.5rem;
}

.product-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0d3fbd;
  margin-bottom: 0.75rem;
}

.contact-now {
  background: #0a2540;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  width: 100%;
}

.contact-now:hover {
  background: #0d3fbd;
}
.padding {
  margin-left: 20px !important;
}
/* JavaScript for category filtering */
.product-card.hide {
  display: none;
}
.custom-quote-card-section {
  padding: 3rem 0;
  background: #f8fafc;
}

.custom-quote-card {
  background: #000f26;
  border-radius: 13px;
  padding: 2rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.quote-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.quote-card-desc {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.quote-card-buttons {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.quote-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.7rem 1.5rem;
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.quote-card-btn i {
  font-size: 1.2rem;
}

.whatsapp-card-btn {
  background: #25d366;
  color: white;
}

.whatsapp-card-btn:hover {
  background: #128c7e;
  transform: translateY(-2px);
  color: white;
}

.call-card-btn {
  background: #0d3fbd;
  color: white;
}

.call-card-btn:hover {
  background: #0533a7;
  color: white;
  transform: translateY(-2px);
}
.pricing-section {
  padding: 3rem 0;
  background: #f8fafc;
}

.pricing-main-title {
  font-size: 2rem;
  font-weight: 700;
  color: #0a2540;
  margin-bottom: 0.5rem;
}

.pricing-sub-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0a2540;
}

/* Tabs */
.pricing-tabs {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  justify-content: center;
}

.tab-link {
  padding: 0.6rem 1.2rem;
  background: white;
  color: #0a2540;
  border-left: 1px solid grey;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s ease;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.tab-link.active {
  background: #0d3fbd;
  color: white;
}

.tab-link:hover {
  background: #0d3fbd;
  color: white;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pricing-table th,
.pricing-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
}

.pricing-table th {
  background: #0a2540;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-table td {
  font-size: 0.85rem;
  color: #0a2540;
}

.pricing-table td:first-child {
  font-weight: 600;
  background: #f1f5f9;
}

.price {
  font-weight: 600;
  color: #2b7e6b;
}

/* Features */
.pricing-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem;
  background: white;
  border-radius: 12px;
}

.pricing-features span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #0a2540;
}

.pricing-features i {
  color: #0d3fbd;
  font-size: 1.3rem;
}

/* Responsive */
@media (max-width: 992px) {
  .pricing-table th,
  .pricing-table td {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
  .padding {
    margin-left: 0px !important;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 2rem 0;
  }
  .about-sec .walk-in {
    font-size: 31px !important;
  }
  .about-sec .APPOINTMENT {
    font-size: 20px;
  }
  .about-sec .about-sec-left {
    padding-left: 11px;
  }
  .pricing-main-title {
    font-size: 1.5rem;
  }

  .tab-link {
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
  }

  .pricing-features {
    gap: 1rem;
  }

  .pricing-features span {
    font-size: 0.7rem;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .custom-quote-card-section {
    padding: 0;
  }

  .custom-quote-card {
    padding: 1.5rem;
  }

  .quote-card-title {
    font-size: 1.3rem;
    text-align: center;
  }

  .quote-card-desc {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .quote-card-buttons {
    justify-content: center;
  }

  .quote-card-btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .quote-card-buttons {
    flex-direction: column;
    align-items: center;
  }

  .quote-card-btn {
    width: 100%;
    max-width: 200px;
    justify-content: center;
  }
}
/* Responsive */
@media (max-width: 992px) {
  .featured-title {
    font-size: 1.5rem;
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .accessory-shop-section {
    padding: 2rem 0;
  }

  .sidebar-title {
    font-size: 1rem;
  }

  .product-title {
    font-size: 0.85rem;
  }

  .product-price {
    font-size: 1rem;
  }
}
/* Vertical dividers between feature items on md+ screens */
@media (min-width: 768px) {
  .feature-item + .feature-item {
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 550px) {
  .contact-map-sec .contact-methods {
    flex-direction: column;
  }
  .contact-map-sec .getintouch-inner {
    padding: 1.6rem;
  }
}
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 991px) {
  .contact-map-sec .contact-map-sec-map img {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .contact-map-sec {
    padding: 60px 0;
  }

  .contact-map-sec .contact-map-sec-btns {
    flex-direction: column;
  }

  .contact-map-sec .contact-map-sec-map img {
    height: 380px;
  }

  .contact-map-sec .contact-map-sec-location-card {
    max-width: 240px;
    padding: 18px;
  }

  .contact-map-sec .contact-map-sec-location-card h5 {
    font-size: 22px;
  }

  .contact-map-sec .contact-map-sec-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .contact-map-sec .contact-map-sec-wrapper {
    padding: 16px;
  }

  .contact-map-sec .contact-map-sec-map img {
    height: 320px;
  }

  .contact-map-sec .contact-map-sec-location-card {
    left: 50%;
    top: 50%;

    width: 90%;
  }

  .contact-map-sec .contact-map-sec-btn {
    height: 56px;
    font-size: 15px;
  }
}

/* =========================
   CONTACT MAP SECTION END
========================= */
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .feature-sec .feature-sec-content h4 {
    font-size: 20px;
  }
}

@media (max-width: 991px) {
  .feature-sec {
    margin-top: 40px;
  }

  .feature-sec .feature-sec-wrapper {
    padding: 25px 20px;
  }
}

@media (max-width: 767px) {
  .feature-sec .feature-sec-card {
    gap: 15px;
  }

  .feature-sec .feature-sec-icon {
    width: 62px;
    height: 62px;
    min-width: 62px;

    font-size: 28px;
  }

  .feature-sec .feature-sec-content h4 {
    font-size: 18px;
  }

  .feature-sec .feature-sec-content p {
    font-size: 15px;
  }
}

@media (max-width: 575px) {
  .feature-sec .feature-sec-wrapper {
    padding: 20px 16px;
  }

  .feature-sec .feature-sec-card {
    flex-direction: column;
    text-align: center;
  }

  .feature-sec .feature-sec-content h4 {
    margin-bottom: 6px;
  }
}

/* =========================
   FEATURE SECTION END
========================= */
/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1199px) {
  .about-sec .about-sec-content {
    padding: 20px 10px;
  }

  .about-sec .about-sec-content h2 {
    font-size: 44px;
  }
}

@media (max-width: 991px) {
  .about-sec .about-sec-left::after {
    display: none;
  }

  .about-sec .about-sec-image {
    min-height: 500px;
  }

  .about-sec .about-sec-content h2 {
    font-size: 38px;
  }
}

@media (max-width: 767px) {
  .about-sec .about-sec-content h2 {
    font-size: 30px;
  }

  .about-sec .about-sec-content p {
    font-size: 14px;
  }

  .about-sec .about-sec-image {
    min-height: 350px;
  }

  .about-sec .about-sec-stat-box h3 {
    font-size: 22px;
  }
}

@media (max-width: 575px) {
  .about-sec .about-sec-content h2 {
    font-size: 35px;
  }

  .about-sec .about-sec-tag {
    font-size: 11px;
  }

  .about-sec .about-sec-image {
    min-height: 280px;
  }
}

/* =========================
   ABOUT SECTION END
========================= */
@media (max-width: 991px) {
  .info-box {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  .top-info-bar .row .col-md-6:last-child .info-box {
    border-bottom: 0;
  }
}
@media (max-width: 576px) {
  .info-box {
    padding: 12px 14px;
    gap: 10px;
  }
  .about-sec .visit {
    width: 100% !important;
  }
  .about-sec .get-directions {
    width: 100% !important;
  }
  .info-icon {
    font-size: 18px;
  }
  .info-content h6 {
    font-size: 12px;
  }
  .info-content p {
    font-size: 10px;
  }
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .expert-content {
    margin-bottom: 25px;
  }

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

  .expert-list li {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .expert-card {
    padding: 15px;
  }

  .expert-title {
    font-size: 22px;
  }

  .expert-list li {
    font-size: 15px;
    align-items: flex-start;
  }

  .expert-btn {
    font-size: 16px;
    padding: 10px 24px;
  }
}
/* RESPONSIVE */
@media (max-width: 991px) {
  .why-choice .why-title,
  .why-choice .warranty-title {
    font-size: 26px;
  }
}

@media (max-width: 576px) {
  .why-choice .warranty-top {
    flex-direction: column;
  }
  .why-choice .why-title,
  .why-choice .warranty-title {
    font-size: 20px;
  }
  .why-choice .why-item,
  .why-choice .warranty-list li {
    align-items: flex-start;
  }

  .why-item h5 {
    font-size: 16px;
  }

  .why-choice .why-item p,
  .why-choice .warranty-list li {
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .services-cards .before-wrapper {
    flex-direction: column;
  }

  .services-cards .phone-box img {
    width: 80px;
    height: 140px;
  }
}
/* MOBILE */
@media (max-width: 576px) {
  .services-cards .service-title {
    font-size: 16px;
  }

  .services-cards .service-left span {
    font-size: 12px;
  }

  .services-cards .service-item h5 {
    font-size: 13px;
  }
}
/* MOBILE */
@media (max-width: 768px) {
  .repair-heading {
    font-size: 38px;
  }
  .contact-map-sec .contact-map-sec-btn {
    flex: none;
  }
  .repair-features {
    gap: 15px;
  }

  .feature-item {
    font-size: 15px;
  }

  .repair-btns {
    flex-direction: column;
  }
}
/* MOBILE */
@media (max-width: 991px) {
  .main-header {
    padding: 5px 17px;
  }

  .menu .nav-item {
    margin: 10px 0;
  }

  .book-btn {
    display: inline-block;
    margin-top: 15px;
  }

  .navbar-collapse {
    /* background: #03152c; */
    padding: 6px;
  }
}
@media (max-width: 992px) {
  .hero {
    min-height: 400px;
  }
  .feature-card {
    padding: 0.3rem 1rem;
  }
  .follow-payment-section {
    display: grid;
    grid-template-columns: 1fr;
  }
  .about-sec-right {
    display: none;
  }
  .hero {
    display: none !important;
  }
  .expert-image {
    text-align: start;
  }
  .about-sec {
    position: relative;
    min-height: 100%;
  }

  .hero-section {
    position: relative;
    background-image: url("/assets/images/hero-back-img.jpeg");
    background-repeat: no-repeat;
    background-size: cover;
    min-height: 470px;
    display: flex;
    align-items: center;
  }
  .hero-section::before {
    display: none;
  }
} /* Responsive */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
  }

  .step-circle {
    width: 50px;
    height: 50px;
  }

  .step-circle i {
    font-size: 1.3rem;
  }

  .step-content {
    width: 65px;
  }

  .step-label {
    font-size: 0.6rem;
  }

  .chevron {
    margin-top: 15px;
  }
  footer {
    text-align: center;
  }

  .social-icons a {
    margin: 0 8px;
  }
  .follow-payment-section .card {
    gap: 1rem;
  }
}
@media (min-width: 640px) {
  .brands-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .step-item {
    width: 100%;
    justify-content: center;
  }

  .chevron {
    transform: rotate(90deg);
    margin: 0;
  }
}
@media (max-width: 576px) {
  .ourstore {
    font-size: 14px;
  }
  .hero-text h1 {
    font-size: 37px;
    font-weight: 800;
    line-height: 1.2;
  }
  .repair-features {
    gap: 30px !important;
  }
  .repairs-section .repair-btns {
    display: block;
  }

  .repairs-section .repair-btns a {
    display: block;
    width: 100%;
    margin-bottom: 12px;
  }

  .repairs-section .repairs-btn {
    width: 100%;
    justify-content: center;
  }
  .padd-left {
    padding-left: 10px;
  }
  .services-cards .service-item {
    padding: 18px 15px;
  }

  .services-cards .service-item::after {
    display: none;
  }
}
