/* Responsive Styles */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-title-1 {
    font-size: 3.5rem;
  }
  
  .service-card {
    padding: 25px;
  }
  
  .about-content {
    padding: 30px;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  section {
    padding: 60px 0;
  }
  
  .hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.5rem;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .blog-card {
    margin-bottom: 30px;
  }
  
  .review-card {
    margin: 10px;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  section {
    padding: 50px 0;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 100px 0;
  }
  
  .hero-title-1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.3rem;
  }
  
  .hero-desc-1 {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .about-content {
    padding: 20px 0;
  }
  
  .about-feature {
    padding: 20px 15px;
  }
  
  .service-icon,
  .feature-icon,
  .coreinfo-icon {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .page-header {
    height: 30vh;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  
  .gallery-item {
    height: 200px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  section {
    padding: 40px 0;
  }
  
  .hero-title-1 {
    font-size: 2rem;
  }
  
  .hero-subtitle-1 {
    font-size: 1.1rem;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .coreinfo-item {
    padding: 20px 15px;
  }
  
  .service-icon,
  .feature-icon,
  .coreinfo-icon {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .service-title {
    font-size: 1.3rem;
  }
  
  .review-card {
    padding: 20px 15px;
    margin: 10px 0;
  }
  
  .page-header {
    height: 25vh;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .gallery-container {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    grid-gap: 10px;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .footer-heading {
    margin-bottom: 20px;
  }
  
  .footer-links li {
    margin-bottom: 10px;
  }
}

/* For small height devices */
@media (max-height: 600px) {
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 80px 0;
  }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
} 