/* =====================================
   TESTIMONIAL HERO SECTION
===================================== */

.testimonial-hero {
  width: 100%;
  height: 420px;

  background: url("../images/testimonial-banner.jpg") center/cover no-repeat;

  display: flex;
  justify-content: center;
  align-items: center;

  position: relative;
}

/* Dark Overlay */
.testimonial-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Text Center */
.testimonial-overlay {
  position: relative;
  text-align: center;
  color: white;
}

.testimonial-overlay h1 {
  font-size: 52px;
  font-weight: bold;
  margin-bottom: 10px;
}

.testimonial-overlay p {
  font-size: 15px;
  color: #ddd;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .testimonial-hero {
    height: 280px;
  }

  .testimonial-overlay h1 {
    font-size: 34px;
  }

}






/* ==============================
   TESTIMONIAL SLIDER SECTION
============================== */

.testimonial-slider {
  padding: 80px 20px;
  text-align: center;
  background: #0d0d0d;
  color: white;
}

.testimonial-slider h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.testimonial-slider p {
  color: #aaa;
  margin-bottom: 40px;
}

/* Slider Container */
.slider-container {
  overflow: hidden;
  max-width: 1100px;
  margin: auto;
}

/* Track */
.slider-track {
  display: flex;
  gap: 20px;
  animation: scrollSlider 40s linear infinite;
}

/* Review Card */
.review-card {
  min-width: 320px;
  background: #111;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(255, 165, 0, 0.2);
}

.review-card p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.6;
}

.review-card h4 {
  margin-top: 15px;
  color: orange;
  font-size: 14px;
}

/* Auto Scroll Animation */
@keyframes scrollSlider {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {
  .review-card {
    min-width: 90%;
  }

  .slider-track {
    animation-duration: 60s;
  }
}




/* ===============================
   CALL BANNER SECTION (DARK FIX)
================================ */

.call-banner {
  padding: 60px 20px;

  /* ✅ Dark Background */
  background: #0d0d0d;

  display: flex;
  justify-content: center;
}

.call-box {
  width: 100%;
  max-width: 1100px;

  /* ✅ Dark Blue Premium Gradient */
  background: linear-gradient(to right, #001a66, #0033cc);

  padding: 35px 40px;
  border-radius: 18px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  /* ✅ Soft Shadow for Dark UI */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.6);
}

.call-text h2 {
  font-size: 28px;
  color: white;
  margin: 0;
}

.call-text p {
  margin-top: 8px;
  color: #ddd;
  font-size: 15px;
}

/* ✅ Button */
.call-btn {
  background: orange;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.call-btn:hover {
  background: white;
  color: black;
}

/* ✅ Mobile Responsive */
@media (max-width: 768px) {

  .call-box {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .call-text h2 {
    font-size: 22px;
  }

  .call-btn {
    width: 100%;
    text-align: center;
  }
}