.testimonial-section {
  background-color: #0e0e0e;
  color: #fff;
  padding: 100px 50px 50px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
  position: relative;
  overflow: hidden;
}

.testimonial-heading h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #f1c40f;
  margin-bottom: 10px;
}

.testimonial-heading p {
  color: #ddd;
  font-size: 17px;
  margin-bottom: 60px;
}

/* Slider Layout */
.testimonial-slider {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  min-height: 230px;
}

.testimonial {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
}

.testimonial.active {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: left;
}

.client-photo img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #f1c40f;
  opacity: 0.9;
  transition: transform 0.4s ease;
}

.client-photo img:hover {
  transform: scale(1.05);
}

.client-review {
  max-width: 600px;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.8;
  color: #ddd;
  font-style: italic;
  margin-bottom: 20px;
}

.client-name {
  font-size: 18px;
  color: #fff;
  font-weight: 500;
}

.client-position {
  font-size: 15px;
  color: #bbb;
}

/* Dots */
.slider-dots {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.dot {
  width: 10px;
  height: 10px;
  border: 1px solid #f1c40f;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.dot.active {
  background-color: #f1c40f;
  transform: scale(1.2);
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }

  .client-review {
    max-width: 100%;
  }

  .client-photo img {
    margin-bottom: 20px;
  }
}


/* Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
  pointer-events: none;
}

.arrow {
  font-size: 45px;
  color: #f1c40f;
  cursor: pointer;
  transition: 0.3s ease;
  pointer-events: auto;
  opacity: 0.7;
}

.arrow:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Mobile hide arrows if needed */
@media (max-width: 600px) {
  .arrow {
    font-size: 35px;
  }
}

/* -------------------------
   RESPONSIVE (TABLET + MOBILE)
--------------------------- */

/* --- For Tablets (max-width: 992px) --- */
@media (max-width: 992px) {
  .testimonial-section {
    padding: 80px 30px;
  }

  .testimonial-heading h2 {
    font-size: 2.2rem;
  }

  .testimonial-slider {
    max-width: 90%;
  }

  .testimonial-content {
    gap: 25px;
  }

  .testimonial-text {
    font-size: 17px;
  }
}

/* --- For Medium Mobile (max-width: 768px) --- */
@media (max-width: 768px) {
  .testimonial-section {
    padding: 70px 25px;
  }

  .testimonial-heading h2 {
    font-size: 2rem;
  }

  .testimonial-heading p {
    font-size: 15px;
  }

  .testimonial-content {
    flex-direction: column;
    text-align: center;
  }

  .client-photo img {
    width: 110px;
    height: 110px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.7;
  }

  .client-name {
    font-size: 17px;
  }

  .client-position {
    font-size: 14px;
  }

  .arrow {
    font-size: 32px;
  }
}

/* --- For Small Mobile (max-width: 550px) --- */
@media (max-width: 550px) {
  .testimonial-section {
    padding: 60px 20px;
  }

  .testimonial-heading h2 {
    font-size: 1.8rem;
  }

  .testimonial-slider {
    min-height: 270px;
  }

  .client-photo img {
    width: 100px;
    height: 100px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .slider-dots {
    gap: 10px;
  }

  .dot {
    width: 9px;
    height: 9px;
  }

  .arrow {
    font-size: 28px;
  }
}

/* --- For Extra Small Devices (max-width: 400px) --- */
@media (max-width: 400px) {
  .testimonial-section {
    padding: 55px 15px;
  }

  .testimonial-heading h2 {
    font-size: 1.6rem;
  }

  .client-photo img {
    width: 90px;
    height: 90px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .client-name {
    font-size: 16px;
  }

  .arrow {
    font-size: 24px;
  }
}











.call-floating {
  position: fixed;
  bottom: 60px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #ffeb3b;
  color: #000;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  z-index: 999;
  box-shadow: 0px 0px 15px rgba(255, 235, 59, 0.7);
  cursor: pointer;
  animation: wobble 1.6s infinite ease-in-out;
  transition: 0.3s ease;
}

.call-floating:hover {
  transform: scale(1.15);
  box-shadow: 0px 0px 20px rgba(255, 235, 59, 1);
}

/* Wobble Animation */
@keyframes wobble {

  0%,
  100% {
    transform: translateX(0) rotate(0);
  }

  25% {
    transform: translateX(-4px) rotate(-6deg);
  }

  50% {
    transform: translateX(4px) rotate(6deg);
  }

  75% {
    transform: translateX(-2px) rotate(-3deg);
  }
}




.bottom-footer {
  width: 100%;
  background: #0d0d0d;
  color: #fff;
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 14px;
}

.bottom-footer p {
  margin: 0;
  opacity: 0.85;
}

.bottom-footer strong {
  color: #ffeb3b;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: #fff;
  font-size: 20px;
  transition: 0.3s ease;
}

.social-links a:hover {
  color: #ffeb3b;
}

/* Mobile Responsive */
@media (max-width: 600px) {
  .bottom-footer {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}