/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero {
    padding: 3rem 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 1.75rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-img-container {
    margin-top: 2rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .team-img {
    width: 150px;
    height: 150px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero {
    padding: 4rem 0;
    min-height: auto;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-img-container {
    margin-top: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero {
    min-height: 80vh;
  }
  
  .hero-title {
    font-size: 2.25rem;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  
}

/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  
}

/* For all mobile devices */
@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.1rem;
  }
  
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  .feature-card {
    margin-bottom: 1.5rem;
  }
  
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .review-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .footer-column {
    margin-bottom: 2rem;
  }
  
  /* Disable animations and transitions for specific elements */
  .feature-card,
  .service-card,
  .price-card,
  .social-link,
  .blog-card,
  .review-card,
  .info-card,
  .gallery-item,
  .case-study-card {
    transition: none !important;
  }
  
  /* Disable hover transform effects */
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover,
  .social-link:hover {
    transform: none !important;
  }
}

/* Mobile landscape orientation */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 3rem 0;
  }
}

/* For reducing animations */
@media (prefers-reduced-motion: reduce) {
  .feature-card:hover,
  .service-card:hover,
  .price-card:hover {
    transform: none;
  }
} 

.hero-content {
    padding-top: 125px;
}