/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .section-padding {
    padding: 3rem 0;
  }

  .team-member img {
    width: 150px;
    height: 150px;
  }

  .service-card, .price-card, .blog-card {
    margin-bottom: 1.5rem;
  }

  .navbar-brand {
    font-size: 1.3rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .section-padding {
    padding: 4rem 0;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-padding {
    padding: 4.5rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content {
    padding-right: 2rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* For all mobile devices */
@media (max-width: 767.98px) {
  /* Disable animations on mobile to improve performance */
  @media (prefers-reduced-motion: no-preference) {
    .service-card:hover,
    .price-card:hover,
    .blog-card:hover,
    .about-feature-item:hover,
    .coreinfo-item:hover {
      transform: none;
    }
    
    .blog-card:hover .blog-img img {
      transform: none;
    }
    
    .gallery-img:hover img {
      transform: none;
    }
  }

  /* Slider adjustments for mobile */
  .swiper-button-next, 
  .swiper-button-prev {
    display: none;
  }

  .swiper-pagination {
    bottom: 0;
  }

  /* Spacing adjustments */
  .section-title {
    margin-bottom: 1.5rem;
  }

  /* Footer adjustments */
  footer {
    text-align: center;
  }

  .contact-info p {
    justify-content: center;
  }

  .footer-links {
    margin-bottom: 2rem;
  }
} 