/* Responsive Styles */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large devices (desktops, 992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  #hero h1 {
    font-size: 3rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  .team-img {
    width: 180px;
    height: 180px;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 4rem 0;
  }
  
  #hero {
    min-height: 80vh;
  }
  
  #hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-shape {
    width: 30%;
    height: 30%;
  }
  
  .about-img-container {
    margin-bottom: 2rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-member,
  .coreinfo-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .service-image {
    height: 200px;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 3.5rem 0;
  }
  
  #hero {
    min-height: 70vh;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 2.2rem;
  }
  
  #hero p {
    margin: 0 auto 2rem;
  }
  
  .hero-shape {
    display: none;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .about-img-container {
    margin-bottom: 2rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-member,
  .coreinfo-card,
  .blog-card {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
  
  .service-image {
    height: 200px;
  }
  
  .reviews-shape {
    display: none;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .gallery-item {
    max-width: 400px;
    margin: 0 auto 2rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
  
  footer {
    text-align: center;
  }
  
  .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .footer-links {
    margin-bottom: 2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 3rem 0;
  }
  
  #hero {
    min-height: 100vh;
    text-align: center;
  }
  
  #hero h1 {
    font-size: 2rem;
  }
  
  #hero p {
    font-size: 1rem;
    margin: 0 auto 2rem;
  }
  
  .hero-shape {
    display: none;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-img-container {
    margin-bottom: 2rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-member,
  .coreinfo-card,
  .blog-card {
    margin-bottom: 2rem;
  }
  
  .service-image {
    height: 180px;
  }
  
  .services-blob,
  .reviews-shape {
    display: none;
  }
  
  .review-card {
    margin: 0 0 1.5rem;
  }
  
  .contact-info {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  footer {
    text-align: center;
    padding: 3rem 0 1.5rem;
  }
  
  .footer-heading {
    margin-top: 1.5rem;
  }
  
  .footer-heading:after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-contact p {
    justify-content: center;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Fix for 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: 999999s;
  }
  
  .float-animation {
    animation: none !important;
  }
} 