:root {
  --primary-color: #007bff;
  --text-color: #333;
  --hover-color: #0056b3;
  --transition-speed: 0.3s;
  --primary-light: #e6f2ff;
  --accent: #ff2d55;
  --text-dark: #1d1d1f;
  --text-light: #86868b;
}

.navbar {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all var(--transition-speed) ease;
  padding: 0.5rem 0;
}

.nav-link {
  position: relative;
  margin: 0 0.5rem;
  font-weight: 500;
  color: var(--text-color) !important;
  transition: color var(--transition-speed) ease;
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  border: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 0.5rem 0;
}

.dropdown-item {
  padding: 0.5rem 1.5rem;
  transition: all var(--transition-speed) ease;
}

.nav-location {
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 50px;
  transition: all var(--transition-speed) ease;
  color: var(--text-color);
}

.btn-hr-1 {
  background-color: var(--primary-color);
  color: white;
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  border: none;
  transition: all var(--transition-speed) ease;
  font-weight: 500;
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    padding: 1rem 0;
  }

  .btn-hr-1 {
    margin-top: 0.5rem;
    width: 100%;
  }
}

/* --------------crouser css------------------- */
/* ===============================
   CUSTOM CAROUSEL STYLES
================================= */
.custom-carousel {
  margin-top: 70px;
  position: relative;
}

.custom-carousel .carousel-inner {
  border-radius: 0 0 15px 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-carousel .carousel-item {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.custom-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.custom-carousel .carousel-item:hover img {
  transform: scale(1.05);
}

.custom-carousel .carousel-caption {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  width: 100%;
  padding: 0 20px;
  color: #fff;
  z-index: 2;
}

/* ===============================
   BUTTON STYLES
================================= */
.btn-cta-slider {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white !important;
  padding: 15px 40px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-cta-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0056b3, #004085);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-cta-slider:hover {
  color: white !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6);
}

.btn-cta-slider:hover::before {
  left: 0;
}

/* ===============================
   INDICATORS
================================= */
.custom-carousel .carousel-indicators {
  bottom: 30px;
  margin-bottom: 0;
}

.custom-carousel .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid white;
  background-color: transparent;
  margin: 0 8px;
  transition: all 0.3s ease;
  opacity: 0.7;
}

.custom-carousel .carousel-indicators button:hover {
  opacity: 1;
  transform: scale(1.2);
}

.custom-carousel .carousel-indicators button.active {
  background-color: white;
  opacity: 1;
  transform: scale(1.2);
}

/* ===============================
   NAVIGATION BUTTONS
================================= */
.custom-carousel .carousel-control-prev,
.custom-carousel .carousel-control-next {
  width: 60px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  margin: 0 20px;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.custom-carousel:hover .carousel-control-prev,
.custom-carousel:hover .carousel-control-next {
  opacity: 1;
}

.custom-carousel .carousel-control-prev {
  left: 20px;
}

.custom-carousel .carousel-control-next {
  right: 20px;
}

.custom-carousel .carousel-control-prev-icon,
.custom-carousel .carousel-control-next-icon {
  width: 25px;
  height: 25px;
  filter: invert(1);
}

.custom-carousel .carousel-control-prev:hover,
.custom-carousel .carousel-control-next:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%) scale(1.1);
}

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

/* --- Laptop (1024px - 1366px) --- */
@media (max-width: 1366px) {
  .custom-carousel .carousel-item {
    height: 450px;
  }
  .custom-carousel .carousel-caption {
    bottom: 90px;
  }
  .btn-cta-slider {
    padding: 12px 35px;
    font-size: 1.2rem;
  }
}

/* --- Tablet / iPad (768px - 1024px) --- */
@media (max-width: 1024px) {
  .custom-carousel {
    margin-top: 65px;
  }

  .custom-carousel .carousel-item {
    height: 400px;
  }

  .custom-carousel .carousel-caption {
    bottom: 70px;
  }

  .btn-cta-slider {
    padding: 10px 30px;
    font-size: 1.1rem;
  }

  .custom-carousel .carousel-control-prev,
  .custom-carousel .carousel-control-next {
    width: 50px;
    height: 50px;
  }
}

/* --- Mobile (up to 768px) --- */
@media (max-width: 768px) {
  .custom-carousel {
    margin-top: 60px;
  }

  .custom-carousel .carousel-item {
    height: 300px;
  }

  .custom-carousel .carousel-caption {
    bottom: 50px;
  }

  .btn-cta-slider {
    padding: 8px 25px;
    font-size: 1rem;
  }

  .custom-carousel .carousel-control-prev,
  .custom-carousel .carousel-control-next {
    width: 40px;
    height: 40px;
  }
}

/* --- Small Mobile (up to 480px) --- */
@media (max-width: 480px) {
  .custom-carousel .carousel-item {
    height: 220px;
  }

  .custom-carousel .carousel-caption {
    bottom: 35px;
  }

  .btn-cta-slider {
    padding: 6px 20px;
    font-size: 0.9rem;
  }

  .custom-carousel .carousel-control-prev,
  .custom-carousel .carousel-control-next {
    width: 35px;
    height: 35px;
  }
}


/* ---------------crouser css end----------------------------- */
/* --------What Can We Fix for You Today css start---------- */
.repair-category-section {
  background-color: #f8f9fa;
  position: relative;
  overflow: hidden;
}

.bg-pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(0, 123, 255, 0.08), transparent 60%),
              radial-gradient(circle at 80% 80%, rgba(0, 123, 255, 0.05), transparent 60%);
  z-index: 0;
}

.section-title {
  font-size: 2rem;
  color: #222;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #007bff;
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.category-card {
  background: #fff;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
  z-index: 1;
}

.category-card:hover {
  transform: translateY(-8px);
  border-color: #007bff;
  box-shadow: 0 10px 20px rgba(0, 123, 255, 0.15),
              0 4px 6px rgba(0, 0, 0, 0.08);
}


.category-image img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.category-card:hover .category-image img {
  transform: scale(1.1);
}

.category-title {
  font-size: 1.1rem;
}

/* ----------What Can We Fix for You Today end-------------- */

/* -------------------------------------- */



/*  */
.why-choose-section {
  /* background-color: #f0f6ff; */
  padding: 30px 0;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1300px;
}

.feature-box {
  text-align: center;
  padding: 20px;
}

.feature-box i {
  font-size: 2.2rem;
  color: #ff6b3d;
  background: #fff;
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-bottom: 10px;
}

.feature-box h6 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .feature-box {
    margin-bottom: 20px;
  }
}

/*  */
/* General Section */
.hiw-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.hiw-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #333;
  position: relative;
  display: inline-block;
  margin-bottom: 0;
}

.hiw-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
}

/* Tabs */
.hiw-nav .nav-link {
  color: #6c757d;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: none;
  background: transparent;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: -2px;
}

.hiw-nav .nav-link.active {
  color: #007bff;
  background: transparent;
  border: none;
  font-weight: 700;
}

.hiw-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px 2px 0 0;
}

/* Tab Content */
.hiw-tab-content {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  margin-top: 2rem !important;
  overflow: hidden;
}

.hiw-pane {
  padding: 2rem;
}

/* Steps */
.hiw-step-circle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  z-index: 2;
  position: relative;
  transition: all 0.3s ease;
}

.hiw-step-bg {
  background: linear-gradient(135deg, #007bff, #0056b3) !important;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.hiw-line {
  width: 2px;
  background: linear-gradient(180deg, #007bff, #e9ecef);
  margin-top: 0.5rem;
}

.hiw-step h5 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.hiw-step p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 0;
}

/* Image */
.hiw-img {
  max-width: 400px;
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

/* Button */
.hiw-btn {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white !important;
  padding: 15px 50px;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.4);
  transition: all 0.4s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* .hiw-btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #0056b3, #004085);
      transition: all 0.4s ease;
      z-index: -1;
    } */

.hiw-btn:hover {
  color: white !important;
  transform: translateY(-3px);
  /* box-shadow: 0 12px 35px rgba(0, 123, 255, 0.6); */
}

.hiw-btn:hover::before {
  left: 0;
}

/* Responsive */
@media (max-width: 991.98px) {
  .hiw-title {
    font-size: 2.2rem;
  }

  .hiw-flex {
    flex-direction: column;
    align-items: center;
  }

  .hiw-stepper {
    margin-right: 0 !important;
    margin-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .hiw-title {
    font-size: 1.8rem;
  }

  .hiw-nav {
    flex-direction: column;
    border-bottom: none !important;
  }

  .hiw-nav .nav-item {
    width: 100%;
    text-align: center;
    margin-bottom: 0.5rem;
  }

  .hiw-nav .nav-link {
    border-radius: 8px;
    margin-bottom: 0;
    border: 2px solid #e9ecef !important;
  }

  .hiw-nav .nav-link.active {
    border-color: #007bff !important;
    background-color: rgba(0, 123, 255, 0.05);
  }

  .hiw-nav .nav-link.active::after {
    display: none;
  }
}


/* -----------Mobile repair-------------- */
/* Repair Section */
.repair-section {
  background-color: #f9f9fb;
  padding: 60px 0;
}

.repair-title {
  font-size: 2.2rem;
  font-weight: 700;
  position: relative;
  color: #222;
}

.repair-title::after {
  content: "";
  width: 100px;
  height: 3px;
  background-color: #5b47ff;
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.repair-section p {
  color: #555;
  font-size: 1.1rem;
  margin-top: 15px;
}

.repair-image {
  width: 100%;
  max-width: 230px;
  border-radius: 10px;
}

.repair-issue {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid #eee;
}

.repair-issue:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.repair-issue-img {
  width: 45px;
  height: 45px;
  margin-bottom: 10px;
}

.repair-issue-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

.btn-cta-1 {
  background-color: #5b47ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  transition: 0.3s;
  border: none;
  display: inline-block;
}

.btn-cta-1:hover {
  background-color: #4938d6;
  color: #fff;
}

/* MacBook Repair Section */
.repair-section {
  background-color: #f8f8fa;
  padding: 60px 0;
}

.repair-title {
  font-size: 2.3rem;
  font-weight: 700;
  color: #222;
  position: relative;
  display: inline-block;
}

.repair-title::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 3px;
  background-color: #5b47ff;
  bottom: -8px;
  left: 0;
  border-radius: 2px;
}

.repair-desc {
  font-size: 1.1rem;
  color: #555;
  margin-top: 15px;
}

.repair-image {
  width: 100%;
  max-width: 270px;
  border-radius: 10px;
}

.repair-issue {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  padding: 20px 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border: 1px solid #eee;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.repair-issue:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.repair-issue-img {
  width: 45px;
  height: 45px;
  margin-bottom: 8px;
}

.repair-issue-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #222;
}

.btn-cta-1 {
  background-color: #5b47ff;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: 0.3s;
  display: inline-block;
}

.btn-cta-1:hover {
  background-color: #4a38d6;
  color: #fff;
}

@media (max-width: 767px) {
  .repair-title {
    font-size: 1.8rem;
  }

  .repair-issue {
    padding: 15px;
  }
}


.py-5-r {
  background: #1f2fc7;
  position: relative;
  overflow: hidden;
}

.py-5::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"); */
  opacity: 0.3;
}

.stats-row {
  position: relative;
  z-index: 1;
}

.stats-row h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 3rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
  position: relative;
  display: inline-block;
}

.stats-row h3::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ffd700, #ffed4e);
  border-radius: 2px;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.stats-fav {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 2px 4px rgba(255, 215, 0, 0.3);
  position: relative;
}

.stats-fav::after {
  content: '⭐';
  position: absolute;
  top: -5px;
  right: -25px;
  font-size: 1.2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-3px);
  }
}

/* Stats Data Styles */
.stats-data {
  padding: 2rem 1rem;
  position: relative;
  transition: all 0.4s ease;
}

.stats-data::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 80px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.stats-data:last-child::before {
  display: none;
}

.stats-data:hover {
  transform: translateY(-10px);
}

.stats-data:hover .stats-title {
  transform: scale(1.1);
  text-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.stats-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
  transition: all 0.4s ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  position: relative;
}

/* Counting Animation Styles */
.counting-number {
  display: inline-block;
  position: relative;
}

.counting-number::after {
  content: '+';
  margin-left: 2px;
}

/* Star Rating Styles */
.stats-title .bi-star-fill {
  color: #ffd700;
  text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
  animation: twinkle 3s infinite;
}

@keyframes twinkle {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.stats-data div {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.stats-data:hover div {
  color: white;
  transform: translateY(2px);
}

/* Counter Animation */
@keyframes countUp {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.8);
  }

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

.stats-title {
  animation: countUp 2s ease-out forwards;
}

/* Number Counting Animation */
@keyframes counting {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* JavaScript-powered counting animation */
.counting-animation {
  animation: counting 2s ease-out forwards;
}

/* Pulse animation for numbers */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.number-pulse {
  animation: pulse 2s ease-in-out;
}

/* Responsive Design */
@media (max-width: 991.98px) {
  .stats-row h3 {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }

  .stats-title {
    font-size: 3rem;
  }

  .stats-data div {
    font-size: 1.1rem;
  }

  .stats-data::before {
    height: 60px;
  }
}

@media (max-width: 767.98px) {
  .stats-row h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }

  .stats-title {
    font-size: 2.5rem;
  }

  .stats-data div {
    font-size: 1rem;
  }

  .stats-data {
    padding: 1.5rem 0.5rem;
    margin-bottom: 1rem;
  }

  .stats-data::before {
    display: none;
  }

  .stats-data:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  }
}

@media (max-width: 575.98px) {
  .stats-row h3 {
    font-size: 1.8rem;
  }

  .stats-fav::after {
    right: -20px;
    font-size: 1rem;
  }

  .stats-title {
    font-size: 2.2rem;
  }

  .stats-data div {
    font-size: 0.95rem;
  }

  .py-5 {
    padding: 3rem 0 !important;
  }
}

/* Hover effects for touch devices */
@media (hover: none) {
  .stats-data:hover {
    transform: none;
  }

  .stats-data:hover .stats-title {
    transform: none;
  }

  .stats-data:hover div {
    transform: none;
  }
}

/* Loading animation */
.stats-data {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.stats-data:nth-child(1) {
  animation-delay: 0.1s;
}

.stats-data:nth-child(2) {
  animation-delay: 0.2s;
}

.stats-data:nth-child(3) {
  animation-delay: 0.3s;
}

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

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

/* Container adjustments */
.container {
  max-width: 1200px;
}

/* -------- last repair javascript---------- */

/* Repair Section Styles */
.repair-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.repair-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #dee2e6, transparent);
}

/* Tab Navigation */
.repair-tabs {
  border-bottom: 3px solid #e9ecef;
  margin-bottom: 3rem;
}

.repair-tabs .nav-link {
  background: none;
  border: none;
  color: #6c757d;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 1rem 1.5rem;
  margin: 0 0.25rem;
  border-radius: 12px 12px 0 0;
  transition: all 0.3s ease;
  position: relative;
}

.repair-tabs .nav-link:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.05);
}

.repair-tabs .nav-link.active {
  color: #007bff;
  background: white;
  border: 3px solid #007bff;
  border-bottom: none;
  transform: translateY(3px);
  box-shadow: 0 -5px 15px rgba(0, 123, 255, 0.1);
}

.repair-tabs .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 3px;
  background: white;
}
/* repair responsive  */

/* Tab Content */
.tab-content {
  position: relative;
}

.tab-pane {
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

/* Repair Image Styles */
.repair-image {
  max-width: 280px;
  width: 100%;
  height: auto;
  transition: all 0.4s ease;
  filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
}

.repair-image:hover {
  transform: translateY(-5px) scale(1.05);
  filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.15));
}

/* Repair Title Styles */
.repair-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #333;
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}

.repair-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #007bff, #0056b3);
  border-radius: 2px;
}

.repair-desc {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 2rem;
  max-width: 600px;
}

/* Repair Issue Cards */
.repair-issue {
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid #f1f3f4;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.repair-issue::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 123, 255, 0.05), transparent);
  transition: all 0.6s ease;
}

.repair-issue:hover::before {
  left: 100%;
}

.repair-issue:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
  border-color: rgba(0, 123, 255, 0.2);
}

.repair-issue-img {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  /* filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(1389%) hue-rotate(195deg) brightness(97%) contrast(101%); */
}

.repair-issue:hover .repair-issue-img {
  transform: scale(1.15) rotate(5deg);
  filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(1389%) hue-rotate(195deg) brightness(97%) contrast(101%) drop-shadow(0 3px 8px rgba(0, 123, 255, 0.3));
}

.repair-issue-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: #333;
  line-height: 1.3;
  transition: all 0.3s ease;
}

.repair-issue:hover .repair-issue-title {
  color: #007bff;
  transform: translateY(2px);
}

/* CTA Button Styles */
.btn-cta-1 {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white !important;
  padding: 12px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-cta-1::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0056b3, #004085);
  transition: all 0.4s ease;
  z-index: -1;
}

.btn-cta-1:hover {
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
  text-decoration: none;
}

.btn-cta-1:hover::before {
  left: 0;
}

.btn-cta-1:active {
  transform: translateY(0);
  box-shadow: 0 3px 12px rgba(0, 123, 255, 0.3);
}

/* Device Icon Styles */
.device-icon {
  width: 24px;
  height: 24px;
  margin-right: 8px;
  filter: brightness(0) saturate(100%) invert(33%) sepia(98%) saturate(1389%) hue-rotate(195deg) brightness(97%) contrast(101%);
}

.nav-link.active .device-icon {
  filter: brightness(0) saturate(100%) invert(100%);
}

/* Responsive Design */
@media (max-width: 1199.98px) {
  .repair-tabs .nav-link {
    font-size: 1.1rem;
    padding: 0.8rem 1.2rem;
  }
}

@media (max-width: 991.98px) {
  .repair-tabs .nav-link {
    font-size: 1rem;
    padding: 0.7rem 1rem;
  }

  .repair-image {
    max-width: 200px;
    margin-bottom: 2rem;
  }

  .repair-title {
    font-size: 2.2rem;
    text-align: center;
  }

  .repair-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .repair-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767.98px) {
  .repair-tabs {
    /* flex-direction: column; */
    border-bottom: none;
  }

  .repair-tabs .nav-link {
    margin: 0.25rem 0;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    text-align: center;
  }

  .repair-tabs .nav-link.active {
    border: 2px solid #007bff;
    transform: none;
    box-shadow: 0 3px 15px rgba(0, 123, 255, 0.2);
  }

  .repair-tabs .nav-link.active::after {
    display: none;
  }

  .repair-title {
    font-size: 2rem;
  }

  .repair-desc {
    font-size: 1.1rem;
  }

  .repair-issue {
    padding: 1.25rem 0.75rem;
  }

  .repair-issue-img {
    width: 45px;
    height: 45px;
  }

  .repair-issue-title {
    font-size: 0.9rem;
  }
}

@media (max-width: 575.98px) {
  .repair-title {
    font-size: 1.8rem;
  }

  .repair-desc {
    font-size: 1rem;
  }

  .repair-issue {
    padding: 1rem 0.5rem;
  }

  .repair-issue-img {
    width: 40px;
    height: 40px;
    margin-bottom: 0.75rem;
  }

  .repair-issue-title {
    font-size: 0.85rem;
  }

  .btn-cta-1 {
    padding: 10px 25px;
    font-size: 1rem;
    width: 100%;
    text-align: center;
  }
}

/* Animation for repair items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

.repair-issue {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

/* Active tab highlight animation */
@keyframes tabGlow {
  0% {
    box-shadow: 0 -5px 15px rgba(0, 123, 255, 0.1);
  }

  50% {
    box-shadow: 0 -5px 20px rgba(0, 123, 255, 0.2);
  }

  100% {
    box-shadow: 0 -5px 15px rgba(0, 123, 255, 0.1);
  }
}

.repair-tabs .nav-link.active {
  animation: tabGlow 2s ease-in-out infinite;
}

/*  <!--  Doorstep Repair --> */

.repair-section {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.highlight {
  color: var(--primary);
}

.content-card {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
}

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

.feature-list li {
  padding: 8px 0;
  padding-left: 30px;
  position: relative;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.btn-primary-custom {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.btn-primary-custom:hover {
  background-color: #0056b3;
  border-color: #0056b3;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 113, 227, 0.3);
}

.btn-primary-custom i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.btn-primary-custom:hover i {
  transform: translateX(5px);
}

.device-img {
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: transform 0.5s ease;
}

.device-img:hover {
  transform: scale(1.03);
}

.service-badge {
  display: inline-block;
  background: rgba(0, 113, 227, 0.1);
  color: var(--primary);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-right: 10px;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .content-card {
    padding: 25px;
  }
}

/*     <!-- Why Choose Us Section --> */
.why-choose-us {
  background-color: #f8f9fa;
  padding: 60px 0;
}

.wcu-container {
  text-align: center;
  padding: 20px 10px;
  transition: transform 0.3s ease;
}

.wcu-container:hover {
  transform: translateY(-5px);
}

.wcu-image {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--primary-color);
}

.wcu-text {
  font-size: 16px;
  font-weight: 500;
  color: #333;
  margin-bottom: 0;
}

.btn-cta-1 {
  background-color: #007bff;
  color: white;
  padding: 12px 30px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta-1:hover {
  background-color: #0056b3;
  transform: scale(1.05);
  color: white;
}

@media (max-width: 768px) {
  .wcu-container {
    margin-bottom: 20px;
  }

  .wcu-image {
    font-size: 2.5rem;
  }
}

/*   <!--People Who Believe Us  --> */

.testimonials-section {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 80px 0;
  background: linear-gradient(to bottom, #f8f9fa 0%, #ffffff 100%);
}

.section-title {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
  position: relative;
  text-align: center;
}

.section-title:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
}

.testimonial-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin: 0 10px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.user-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 20px;
  border: 3px solid var(--primary-light);
  padding: 3px;
}

.testimonial-user {
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.testimonial-text {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
  font-style: italic;
}

.rating-stars {
  color: #ffc107;
  font-size: 1.2rem;
  margin-bottom: 15px;
}

.service-tag {
  display: inline-block;
  background: rgba(0, 113, 227, 0.1);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.carousel-control-prev,
.carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.carousel-control-prev {
  left: -25px;
}

.carousel-control-next {
  right: -25px;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--text-light);
  opacity: 0.5;
}

.carousel-indicators button.active {
  background-color: var(--primary);
  opacity: 1;
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .testimonial-card {
    padding: 20px;
    margin: 0 5px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none;
  }
}

/*   <!-- Our Doorstep Pickup & Delivery Service -->  */
:root {
  --m-rent-primary: #0071e3;
  --m-rent-primary-light: #e6f2ff;
  --m-rent-accent: #ff2d55;
  --m-rent-text-dark: #1d1d1f;
  --m-rent-text-light: #86868b;
}

.m-rent-service-areas {
  font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
  padding: 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.m-rent-section-header {
  text-align: center;
  margin-bottom: 40px;
}

.m-rent-section-title {
  font-weight: 700;
  font-size: 2rem;
  color: var(--m-rent-text-dark);
  margin-bottom: 15px;
}

.m-rent-section-subtitle {
  color: var(--m-rent-text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.m-rent-areas-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.m-rent-area-column {
  margin-bottom: 30px;
}

.m-rent-area-column h5 {
  font-weight: 600;
  color: var(--m-rent-primary);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--m-rent-primary-light);
  font-size: 1.1rem;
}

.m-rent-area-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.m-rent-area-list li {
  margin-bottom: 12px;
  padding-left: 0;
}

.m-rent-area-link {
  color: var(--m-rent-text-dark);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  padding: 6px 0;
}

.m-rent-area-link:hover {
  color: var(--m-rent-primary);
  transform: translateX(5px);
}

.m-rent-area-link:before {
  content: "▸";
  color: var(--m-rent-primary);
  margin-right: 10px;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.m-rent-area-link:hover:before {
  transform: translateX(3px);
}

.m-rent-map-container {
  background: var(--m-rent-primary-light);
  border-radius: 12px;
  padding: 25px;
  margin-top: 30px;
  text-align: center;
}

.m-rent-map-placeholder {
  background: white;
  border-radius: 8px;
  padding: 40px 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.m-rent-map-icon {
  font-size: 3rem;
  color: var(--m-rent-primary);
  margin-bottom: 15px;
}

.m-rent-map-title {
  color: var(--m-rent-text-dark);
  margin-bottom: 10px;
}

.m-rent-map-description {
  color: var(--m-rent-text-light);
  margin-bottom: 20px;
}

.m-rent-btn-outline {
  border: 2px solid var(--m-rent-primary);
  color: var(--m-rent-primary);
  background: transparent;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.m-rent-btn-outline:hover {
  background-color: var(--m-rent-primary);
  color: white;
  transform: translateY(-2px);
}

.m-rent-service-highlight {
  background: linear-gradient(135deg, var(--m-rent-primary) 0%, #0056b3 100%);
  color: white;
  border-radius: 12px;
  padding: 25px;
  margin-top: 40px;
  text-align: center;
}

.m-rent-highlight-title {
  margin-bottom: 15px;
  font-weight: 600;
}

.m-rent-highlight-text {
  margin-bottom: 20px;
  opacity: 0.9;
}

.m-rent-btn-light {
  background: white;
  color: var(--m-rent-primary);
  border: none;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.m-rent-btn-light:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .m-rent-areas-container {
    padding: 25px;
  }

  .m-rent-section-title {
    font-size: 1.7rem;
  }

  .m-rent-area-column {
    margin-bottom: 25px;
  }
}

/*  <!-- Main Footer Section --> */
/* Main Footer Styles */
.main-footer {
  background-color: #2c3e50;
  color: #fff;
  padding: 50px 0 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Footer Brand */
.footer-brand {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}

.footer-brand span {
  color: #007bff;
}

/* Company Description */
.main-footer p {
  color: #bdc3c7;
  margin-bottom: 20px;
  font-size: 14px;
}

/* Social Links */
.social-links {
  margin-bottom: 25px;
}

.social-links span {
  color: #bdc3c7;
  font-size: 14px;
  margin-bottom: 10px;
  display: block;
}

.social-links a {
  color: #fff;
  font-size: 18px;
  margin-right: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  width: 36px;
  height: 36px;
  line-height: 36px;
  text-align: center;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
  color: #007bff;
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* Made in India */
.made-in-india {
  margin-bottom: 20px;
  font-size: 14px;
  color: #bdc3c7;
}

.made-in-india i {
  margin-right: 5px;
}

/* Footer Headings */
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: #007bff;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

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

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: #007bff;
  transform: translateX(5px);
}

/* Contact Info */
.contact-info {
  color: #bdc3c7;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.contact-info i {
  margin-right: 10px;
  color: #007bff;
  width: 16px;
  text-align: center;
}

/* Review Badges */
.review-badges {
  margin-top: 25px;
  margin-bottom: 20px;
}

.review-badges div {
  color: #bdc3c7;
  font-size: 14px;
  margin-bottom: 10px;
}

.review-badges a {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  transition: transform 0.3s ease;
}

.review-badges a:hover {
  transform: translateY(-2px);
}

.review-badges img {
  height: 30px;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Repair Button */
.btn-repair {
  background-color: #007bff;
  color: white;
  padding: 12px 25px;
  font-weight: 600;
  border-radius: 5px;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
  transition: all 0.3s ease;
  border: none;
  font-size: 14px;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 123, 255, 0.3);
}

.btn-repair:hover {
  background-color: #0056b3;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 123, 255, 0.4);
}

/* Copyright */
.copyright {
  border-top: 1px solid #34495e;
  padding-top: 20px;
  margin-top: 30px;
  text-align: center;
  color: #bdc3c7;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-footer {
    padding: 30px 0 20px;
  }

  .footer-heading {
    margin-top: 25px;
    font-size: 16px;
  }

  .footer-brand {
    font-size: 24px;
  }

  .social-links a {
    font-size: 16px;
    margin-right: 10px;
    width: 32px;
    height: 32px;
    line-height: 32px;
  }

  .btn-repair {
    width: 100%;
    text-align: center;
  }

  .review-badges {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .main-footer {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a:hover {
    transform: none;
  }

  .social-links a:hover {
    transform: none;
  }

  .btn-repair:hover {
    transform: none;
  }
}

/* Floating button container */
.whatsapp_float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Chat message bubble */
.whatsapp_message {
  background-color: #25D366;
  color: #fff;
  padding: 8px 14px;
  border-radius: 20px;
  margin-right: 10px;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  animation: fadeInRight 1s ease;
  transition: opacity 0.5s ease;
}

/* WhatsApp icon */
.whatsapp_float img {
  border-radius: 50%;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
  animation: bounce 2s infinite;
}

/* Hover effect */
.whatsapp_float img:hover {
  transform: scale(1.1);
}

/* Animation for message bubble */
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

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

/* Subtle bounce animation for icon */
@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-6px);
  }

  60% {
    transform: translateY(-3px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp_message {
    font-size: 13px;
    padding: 6px 10px;
  }

  .whatsapp_float img {
    width: 50px;
    height: 50px;
  }
}