.hero-section {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.video-container video {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.video-container .overlay {
  background: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .navbar-nav .nav-item {
    margin-bottom: 10px;
  }
}
/* -------------------- */
/* কন্ট্রোল বাটনের কালার ও আকার কাস্টমাইজ */
#brandCarousel .carousel-control-prev-icon,
#brandCarousel .carousel-control-next-icon {
  background-color: #007bff; /* নীল রং */
  border-radius: 50%;
  width: 40px;
  height: 40px;
  background-size: 20px 20px;
}

/* ব্র্যান্ড লোগো flexbox স্টাইল */
.brand-carousel-inner {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.brand-carousel-inner img.brand-logo {
  flex: 0 0 auto;
  width: calc(100% / 8 - 10px); /* ৮টি লোগোর জন্য width */
  max-width: 100px; /* প্রয়োজনমতো কমান-বাড়ান */
}

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


.section-title {
  font-size: 2.5rem;
  color: #ca9e5f;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
}
@media (max-width: 768px) {
  .section-title {
  font-size: 1.5rem;
  color: #ca9e5f;
  position: relative;
  display: inline-block;
  padding-bottom: 2px;
  }
}

.section-title::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 4px;
  background: #007bff;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  border-radius: 2px;
}

.locations p.text-muted {
  font-size: 1.1rem;
  color: #555;
  max-width: 600px;
  margin: 0 auto 40px;
  font-weight: 500;
}

.location-card {
  background: linear-gradient(135deg, #ffffff, #e9f0ff);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgb(0 123 255 / 0.15);
  padding: 30px 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #d7e3fc;
}

.location-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgb(0 123 255 / 0.3);
  border-color: #007bff;
}

.location-card h4 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #007bff;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.location-card h6 {
  font-weight: 600;
  color: #555;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.location-card ul {
  padding-left: 0;
}

.location-card ul li {
  list-style: none;
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: #333;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.location-card ul li::before {
  content: "\f058"; /* FontAwesome check icon */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #007bff;
  font-size: 14px;
}

@media (max-width: 991.98px) {
  .location-card {
    padding: 25px 20px;
  }
}

@media (max-width: 575.98px) {
  .location-card h4 {
    font-size: 1.6rem;
  }
  .location-card h6 {
    font-size: 1rem;
  }
  .location-card ul li {
    font-size: 1rem;
  }


  /* -------------------- */
     /* Custom CSS for testimonial cards */
     .testimonial-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 15px;
    height: 100%;
    transition: transform 0.3s ease;
  }

  .testimonial-card:hover {
    transform: translateY(-5px);
  }

  .testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .testimonial-author {
    font-weight: 600;
    color: #333;
    margin-bottom: 0;
  }

  /* Custom carousel indicators */
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    opacity: 0.5;
    transition: all 0.3s ease;
  }

  .carousel-indicators .active {
    background-color: #6c757d;
    opacity: 1;
    width: 12px;
    height: 12px;
  }

  /* Mobile carousel specific styles */
  @media (max-width: 767.98px) {
    .carousel-control-prev,
    .carousel-control-next {
      background-color: rgba(255, 255, 255, 0.5);
      width: 40px;
      height: 40px;
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
    }
    
    .carousel-control-prev {
      left: -10px;
    }
    
    .carousel-control-next {
      right: -10px;
    }
    
    .carousel-control-prev-icon,
    .carousel-control-next-icon {
      width: 20px;
      height: 20px;
    }
    
    .testimonial-card {
      margin: 0 15px;
    }
    
    /* Make mobile indicators more compact */
    .carousel-indicators {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      margin-right: 0;
      margin-left: 0;
      padding: 0 15px;
    }
    
    .carousel-indicators [data-bs-target] {
      width: 8px;
      height: 8px;
      margin: 0 3px;
    }
  }
  .carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin: 0 5px;
  }
  
  @media (max-width: 767.98px) {
    .carousel-inner .carousel-item > .row > div {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  /* -------- */
  
  
}
