  .whatsapp-button {
  position: fixed !important;
  bottom: 20px !important;
  right: 20px !important;
  z-index: 1000 !important;
}

.whatsapp-button img {
  width: 70px;
  height: 70px;
}
/* For mobile screens */
@media (max-width: 768px) {
    .header-logo img {
        max-height: 60px; /* smaller on tablets/phones */
    }
}
/* Default link style */
a {
    color: #1a1a1a;       /* dark grey, professional */
    text-decoration: none !important;/* remove underline */
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 2px solid transparent; /* for subtle hover effect */
}

/* Hover effect */
a:hover {
    color: #007bff;          /* bootstrap-like blue or your brand color */
    border-bottom: 2px solid #007bff; /* underline on hover */
}

/* Focus style (for accessibility) */
  .responsive-img {
    max-height: 200px;
    max-width: 200px;
  }
  /* Make arrows smaller & center them vertically */
  .swiper-button-next,
  .swiper-button-prev {
    width: 25px;
    height: 25px;
    color: #333;         /* arrow color */
  }

  /* Align arrows vertically center within the slider */
  .swiper-button-next,
  .swiper-button-prev {
    top: 50%;
    transform: translateY(-50%);
  }

  /* Optional: bring them inside the container */
  .swiper-button-prev {
    left: 10px;   /* adjust as needed */
  }
  .swiper-button-next {
    right: 10px;  /* adjust as needed */
  }

  /* Optional: reduce arrow icon size */
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 16px;  /* default ~27px */
    font-weight: bold;
  }
   
.section-title {
      text-align: center;
      margin-bottom: 70px;
    }
    .section-title span {
      color: navy;
      font-weight: 600;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .section-title h2 {
      font-size: 34px;
      font-weight: 700;
      margin-top: 10px;
      color: #222;
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 70px 25px 35px 25px;
      position: relative;
      margin: 5px;
      box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
      text-align: center;
      transition: transform 0.3s ease;
      height: 100%;
    }
    .testimonial-card img {
      width: 150px;
      height: 150px;
      border-radius: 50%;
      margin-top: 10px;
      object-fit: cover;
      position: absolute;
      top: -50px;
      left: 50%;
      transform: translateX(-50%);
      border: 6px solid #fff;
      background: #fff;
      box-shadow: 0px 6px 16px rgba(0, 0, 0, 0.15);
    }
    .testimonial-content h3 {
      font-size: 20px;
      font-weight: 700;
      color: #222;
      margin-top: 40px;
    }
    .testimonial-content p.role {
      margin: 6px 0 14px;
      margin-top: 5px;
      font-size: 15px;
      color: grey;
    }
    .testimonial-content hr {
      border: none;
      border-top: 1px solid #ddd;
      margin: 14px auto;
      width: 80%;
    }
    .testimonial-content p.feedback {
      font-size: 15px;
      line-height: 1.6;
      color: #555;
      margin: 0;
    }