/* Responsive CSS */

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .hero-content p {
    font-size: 1.1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .navbar-collapse {
    background-color: white;
    padding: 15px;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  }
  
  .service-card,
  .price-card,
  .coreinfo-item {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  .section-padding {
    padding: 50px 0;
  }
  
  .hero-section {
    height: auto;
    min-height: 500px;
    padding: 100px 0;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .about-feature,
  .service-card,
  .feature-item,
  .price-card,
  .team-member,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 25px;
  }
  
  .contact-form {
    margin-top: 30px;
  }
  
  footer {
    padding: 40px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
  
  .shape-1,
  .shape-2 {
    width: 80px;
    height: 80px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 40px 0;
  }
  
  .hero-section {
    min-height: 450px;
    padding: 80px 0;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .service-card h3,
  .price-card h3,
  .team-member-info h4 {
    font-size: 1.3rem;
  }
  
  .service-price,
  .price-card .price {
    font-size: 2.2rem;
  }
  
  .breadcrumb-section {
    padding: 15px 0;
  }
  
  .shape {
    display: none;
  }
}

/* Special Cases */
@media (prefers-reduced-motion: reduce) {
  .swiper-container {
    --swiper-autoplay: 0;
  }
  
  .shape-1,
  .shape-2 {
    animation: none;
  }
  
  .service-card:hover,
  .about-feature:hover,
  .coreinfo-item:hover,
  .price-card:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .blog-card:hover .blog-img img,
  .gallery-item:hover img {
    transform: none;
  }
}

/* For extremely small screens */
@media (max-width: 320px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
  
  .section-title h2 {
    font-size: 1.4rem;
  }
} 