/* Responsive Styles */

/* Large devices (laptops/desktops, up to 1200px) */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .section-header h2 {
    font-size: 2.2rem;
  }
  
  .hero-content h2 {
    font-size: 2.5rem;
  }
}

/* Medium devices (tablets, up to 992px) */
@media (max-width: 992px) {
  .container {
    max-width: 720px;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    padding: 40px 0 100px;
  }
  
  .hero-content {
    margin-top: 60px;
  }
  
  .hero-content h2 {
    font-size: 2.2rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .about-grid,
  .stats-container,
  .social-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

/* Small devices (landscape phones, up to 768px) */
@media (max-width: 768px) {
  .container {
    max-width: 540px;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .nav {
    flex-direction: column;
    text-align: center;
  }
  
  .logo-img {
    height: 35px !important;
  }
  
  .footer-logo-img {
    height: 40px !important;
  }
  
  .nav-links {
    margin-top: 20px;
    justify-content: center;
    gap: 15px;
  }
  
  .hero-content {
    text-align: center;
    margin: 40px auto 0;
  }
  
  .hero-content h2 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .testimonial-controls {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
}

/* Extra small devices (phones, up to 576px) */
@media (max-width: 576px) {
  .container {
    width: 95%;
    padding: 0 15px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .hero {
    padding: 30px 0 80px;
  }
  
  .hero-content h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-header h2 {
    font-size: 1.8rem;
  }
  
  .section-header p {
    font-size: 1rem;
  }
  
  .logo-img {
    height: 30px !important;
  }
  
  .footer-logo-img {
    height: 35px !important;
  }
  
  .nav-links {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .about-grid,
  .stats-container,
  .social-links {
    grid-template-columns: 1fr;
  }
  
  .about-card,
  .stat-card,
  .social-link {
    padding: 20px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px;
  }
} 