  /* Banner Slide Full Responsive */
.banner-slide {
    width: 100%;
    min-height: 100vh;
    background-position: center;
    background-size: cover;
    padding: 60px 0;
}

/* Hero Content Box */
.hero-content {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

/* Title Responsive */
.banner-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background-color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    color: var(--bs-primary, #0d6efd);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background-color: var(--bs-primary, #0d6efd);
    color: #ffffff;
    transform: scale(1.1);
}

/* Pagination Bullets */
.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ffffff;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: var(--bs-primary, #0d6efd) !important;
    width: 25px;
    border-radius: 5px;
    opacity: 1;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {

    .banner-slide {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content {
        padding: 25px;
        text-align: center;
    }

    .banner-title {
        font-size: 22px;
        line-height: 1.4;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .swiper-button-next:after,
    .swiper-button-prev:after {
        font-size: 14px;
    }
}

/* ✅ Extra Small Screens */
@media (max-width: 480px) {

    .hero-content {
        padding: 8px;
        max-width: 250px;
        margin: auto;
    }

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

    .hero-content a{
        margin-top: 2px !important;
        padding: 2px;
    }
    /* .banner-slide  .container{
        display: none;
    } */
}


  /* Decorations */
  .deco-1 {
      width: 400px;
      height: 400px;
      filter: blur(150px);
      margin-right: -200px;
      margin-top: -200px;
  }

  .deco-2 {
      width: 300px;
      height: 300px;
      filter: blur(120px);
      margin-left: -150px;
      margin-bottom: -150px;
  }

  /* Card Hover */
  .branch-card {
      border: 1px solid rgba(0, 0, 0, 0.03);
      transition: .4s;
  }

  .branch-card:hover {
      transform: translateY(-10px);
      border-color: rgba(5, 143, 6, 0.15);
  }

  .branch-icon-box {
      width: 55px;
      height: 55px;
      min-width: 55px;
      transition: .4s;
  }

  .branch-card:hover .branch-icon-box {
      background-color: #058f06 !important;
      color: white !important;
      transform: scale(1.1) rotate(8deg);
      box-shadow: 0 10px 20px rgba(5, 143, 6, 0.2);
  }

  .badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      display: inline-block;
      animation: pulse 2s infinite;
  }

  @keyframes pulse {

      0%,
      100% {
          opacity: 1;
      }

      50% {
          opacity: .5;
      }
  }

  .hover-success:hover {
      color: #058f06 !important;
  }

  /* Responsive Fixes */
  @media (max-width: 576px) {
      .branch-card-inner {
          padding: 20px !important;
      }

      .branch-icon-box {
          width: 48px;
          height: 48px;
      }

      .display-6 {
          font-size: 28px !important;
      }
  }

  .lh-1_6 {
      line-height: 1.6;
  }

  .rotate-180 {
      transform: rotate(180deg);
  }

  .bg-light-gradient {
      background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  }

  .hover-primary:hover {
      background-color: #019ff8 !important;
      color: white !important;
  }

  .testimonial-slider-container {
      position: relative;
      width: 100%;
      margin: 0 auto;
  }

  @media (max-width: 768px) {
      .testimonial-slider-container {
          min-height: 440px !important;
      }

      .testimonial-slider-container .box-body {
          min-height: 400px !important;
          padding: 30px 15px !important;
      }

      .testimonial-slider-container .fs-18 {
          font-size: 16px !important;
      }
  }

  .usp-item {
      display: flex;
      align-items: center;
      background: #fff;
      padding: 15px;
      border-left: 5px solid;
      border-radius: 8px;
      box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  }

  .usp-icon {
      width: 45px;
      height: 45px;
      min-width: 45px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      margin-right: 20px;
  }

  .feature-box {
      padding: 30px;
      text-align: center;
      border-radius: 12px;
      background: #fff;
      height: 100%;
      transition: 0.3s ease;
      box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
  }

  .feature-box:hover {
      transform: translateY(-6px);
  }

  .feature-icon {
      width: 75px;
      height: 75px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      transition: 0.3s;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  }

  /* Hover color presets */
  .hover-primary-bg:hover {
      background-color: #019ff8 !important;
      color: #fff !important;
  }

  .hover-success-bg:hover {
      background-color: #058f06 !important;
      color: #fff !important;
  }

  .hover-info-bg:hover {
      background-color: #00bcd4 !important;
      color: #fff !important;
  }

  .hover-warning-bg:hover {
      background-color: #ffb100 !important;
      color: #fff !important;
  }

  /* Change icon + text to white on hover */
  .feature-box:hover .feature-icon,
  .feature-box:hover h4,
  .feature-box:hover p {
      color: #fff !important;
  }

  .feature-box:hover .feature-icon {
      background: rgba(255, 255, 255, 0.25) !important;
  }
