/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f9fafb;
  color: #333;
}

header {
  background-color: var(--white);
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

header h1 {
  font-family: 'Poppins', sans-serif;
  color: var(--primary);
  margin: 0;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover {
  color: var(--primary);
}

/* Testimonials Section */
.testimonials-page {
  padding: 4rem 2rem;
  text-align: center;
}

.testimonials-page h1 {
  font-size: 36px;
  color: #1E88E5;
  margin-bottom: 3rem;
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 300px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  /* border: 3px solid #1E88E5; */
}

.testimonial-card p {
  font-style: italic;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: #444;
}

.testimonial-card h4 {
  color: #FFA726;
  font-size: 16px;
  font-weight: 600;
}

.testimonial-card span {
  font-size: 13px;
  color: #666;
}

/* Footer */
footer {
  background-color: #1E88E5;
  color: #fff;
  text-align: center;
  padding: 1rem 0;
  margin-top: 4rem;
}

/* Whatsapp Button */

.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9999;
  /* background-color: red; */
}

.whatsapp-button img {
  width: 55px;
  height: 55px;
  transition: transform 0.3s ease;
  border-radius: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-button img:hover {
  transform: scale(1.1);
}

/* Hamburger Icon */
.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1E88E5;
}


/* Responsivness part for this page */

/* Tablets and Small Desktops (≤ 992px) */
@media (max-width: 992px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.5rem;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .testimonials-page {
    padding: 3rem 1.5rem;
  }

  .testimonials-page h1 {
    font-size: 30px;
    margin-bottom: 2rem;
  }

  .testimonial-grid {
    gap: 1.5rem;
  }

  .testimonial-card {
    max-width: 280px;
    padding: 1.5rem;
  }

  .testimonial-img {
    width: 70px;
    height: 70px;
  }
}

/* Tablets and Large Phones (≤ 768px) */
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 106px;
    left: 146px;
    width: 60%;
    /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
  }

  nav.show {
    display: flex;
  }

  .hamburger {
    display: block;
  }

  header {
    position: relative;
    flex-direction: row;
  }

  header h1 {
    font-size: 20px;
  }

  nav a {
    padding: 15px;
    /* border-top: 1px solid #eee; */
    text-align: center;
    margin-left: 0;
    font-size: 16px;
  }

  .testimonials-page h1 {
    font-size: 26px;
  }

  .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card {
    max-width: 90%;
  }

  footer {
    padding: 1rem;
    font-size: 14px;
  }

  .whatsapp-button img {
    width: 45px;
    height: 45px;
  }
}

/* Mobile Devices (≤ 480px) */
@media (max-width: 480px) {
  .navbar {
    padding: 1rem;
  }

  .logo {
    font-size: 20px;
  }

  .nav-links {
    gap: 0.6rem;
  }

  .nav-links a {
    font-size: 13px;
  }

  .testimonials-page {
    padding: 2rem 1rem;
  }

  .testimonials-page h1 {
    font-size: 22px;
  }

  .testimonial-card {
    padding: 1.2rem;
  }

  .testimonial-card p {
    font-size: 14px;
  }

  .testimonial-card h4 {
    font-size: 15px;
  }

  .testimonial-card span {
    font-size: 12px;
  }

  .testimonial-img {
    width: 65px;
    height: 65px;
  }

  footer {
    font-size: 13px;
  }

  .whatsapp-button img {
    width: 40px;
    height: 40px;
  }
}


