/* Responsive Stylesheet for Breakpoints */

/* Desktop & Large Laptops (1200px and below) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .counter-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-top {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem;
  }
}

/* Laptops & Tablets Landscape (992px and below) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }

  .top-bar {
    display: none; /* Hide top bar on smaller screens for clean mobile UI */
  }

  .nav-links, .nav-actions .btn {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-slide {
    min-height: 460px;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}

/* Tablets Portrait (768px and below) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }

  .section-padding {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 0.95rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .page-banner {
    padding: 3rem 0;
  }

  .page-banner-title {
    font-size: 1.8rem;
  }
}

/* Mobile Devices (576px and below) */
@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .nav-logo {
    height: 50px;
  }

  .hero-slide {
    min-height: 400px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .btn {
    width: 100%;
    padding: 0.8rem 1.2rem;
  }

  .counter-grid {
    grid-template-columns: 1fr;
  }

  .doc-card {
    flex-direction: column;
    text-align: center;
  }
}
