/* Google Fonts - Poppins */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap");

/* * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
.container {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e3f2fd;
} */
.testimonials-section .testimonial {
  position: relative;
  max-width: 900px;
  width: 100%;
  padding: 50px 0;
  overflow: hidden;
}
.testimonials-section .testimonial .image {
  height: 170px;
  width: 170px;
  object-fit: cover;
  border-radius: 50%;
}
.testimonials-section .testimonial .slide {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  row-gap: 30px;
  height: 100%;
  width: 100%;
}
.testimonials-section .slide p {
  text-align: center;
  padding: 0 160px;
  font-size: 16px;
  font-weight: 400;
  color: #333;
}
.testimonials-section .slide .quote-icon {
  font-size: 30px;
  color: #4070f4;
}
.testimonials-section .slide .details {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.testimonials-section .details .name {
  font-size: 16px;
  font-weight: 600;
  color: #333;
}
.testimonials-section .details .job {
  font-size: 14px;
  font-weight: 400;
  color: #333;
}
/* swiper button css */
.testimonials-section .nav-btn {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  transform: translateY(30px);
  background-color: rgba(0, 0, 0, 0.1);
  transition: 0.2s;
}
.testimonials-section .nav-btn:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.testimonials-section .nav-btn::after,
.testimonials-section .nav-btn::before {
  font-size: 20px;
  color: #fff;
}
.testimonials-section .swiper-pagination-bullet {
  background-color: rgba(0, 0, 0, 0.8);
}
.testimonials-section .swiper-pagination-bullet-active {
  background-color: #4070f4;
}
@media screen and (max-width: 768px) {
  .testimonials-section .slide p {
    padding: 0 20px;
  }
  .testimonials-section .nav-btn {
    display: none;
  }
}


.promo-box {
  background: linear-gradient(90deg, #00007D 0%, #00003F 100%);
  color: #ffffff; /* White text color */
  padding: 25px 40px 20px 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.promo-box h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.promo-box p {
  font-size: 1.1rem;
  margin: 10px 0;
}

.promo-box p.promo-desc {
  width: 60%;
  margin: auto;
}

.promo-box h1 {
  font-size: 3rem;
  margin: 20px 0;
  color: #ffffff;
  font-weight: bold;
}

.contact-button {
  background-color: #32cd32; /* Green button */
  color: #ffffff;
  padding: 10px 20px;
  font-size: 1.2rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  margin-top: 20px;
}

.promo-box .btn:hover {
  color: var(--secondary-color) !important;
}