@media (max-width: 60rem) {
  html {
    font-size: 90%;
  }
}

@media (max-width: 50rem) {
  html {
    font-size: 80%;
  }
  .hero-section {
    background-attachment: scroll;
  }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
    max-width: 300px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    padding-top: 6rem;
    z-index: 1001;
    transition: right 0.4s ease;
  }

  .nav-links.active {
    right: 0;
  }
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }

  .hamburger {
    display: block;
  }

  .nav-overlay {
    display: none;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  .services-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-item h3 {
    font-size: 1.5rem;
  }

  .services-item:hover .service-img {
    transform: none;
  }
  .services-item {
    padding: 1rem;
    background: #f5f5f5;
  }

  .services-item h3,
  .services-item p {
    position: static;
    opacity: 1;
    transform: none;
    color: #222;
  }

  .services-item p {
    font-size: 1rem;
  }
  .footer-overview {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }

  .footer-links {
    align-items: center;
  }

  .footer-img {
    max-width: 160px;
  }
  .company-overview {
    grid-template-columns: 1fr;
  }
  .company-overview img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
    border-radius: 50%;
    height: 300px;
  }
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.8rem;
    bottom: 15px;
    right: 15px;
  }
   .testimonial-item {
    margin: 0 0.3rem;
  }
}

@media (max-width: 34rem) {
  html {
    font-size: 70%;
  }

  .nav-links a {
    font-size: 1.5rem;
  }

  .heading-break {
    display: none;
  }

  .services-list {
    grid-template-columns: 1fr;
  }

  .cta {
    padding: 1rem;
    max-width: 300px;
    width: 90%;
  }

  .company-overview img {
    max-width: 300px;
    width: 100%;
    height: 300px;
    border-radius: 12px;
    margin: 0 auto;
    border-radius: 50%;
  }
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 1.6rem;
    bottom: 12px;
    right: 12px;
  }
}
