/* Responsive CSS */

/* 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-title {
    font-size: 3rem;
  }
  
  .section-title h2 {
    font-size: 2.2rem;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  
  .hero-section {
    min-height: auto;
    padding: 100px 0;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .feature-item,
  .service-card,
  .features-item,
  .price-card,
  .team-card,
  .review-card,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 20px;
  }
  
  .service-image {
    height: 180px;
  }
  
  .blog-image {
    height: 180px;
  }
  
  .contact-form {
    padding: 30px;
  }
  
  .price-card {
    padding: 30px;
  }
  
  .footer-site-name {
    font-size: 1.6rem;
  }
}

/* Small devices (landscape phones, 576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 80px 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .hero-image {
    margin-top: 40px;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .feature-item,
  .service-card,
  .features-item,
  .price-card,
  .team-card,
  .review-card,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 20px;
  }
  
  .service-content,
  .blog-content {
    padding: 20px;
  }
  
  .contact-form {
    padding: 25px;
    margin-top: 30px;
  }
  
  footer {
    padding: 60px 0 20px;
  }
  
  .footer-site-name {
    font-size: 1.5rem;
  }
  
  .footer-contact,
  .footer-menu {
    margin-top: 30px;
  }
  
  .breadcrumb-title {
    font-size: 2.2rem;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 40px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 1.6rem;
  }
  
  .hero-section {
    min-height: auto;
    padding: 60px 0;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-image {
    margin-top: 30px;
  }
  
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .about-image {
    margin-bottom: 30px;
  }
  
  .feature-item,
  .service-card,
  .features-item,
  .price-card,
  .team-card,
  .review-card,
  .coreinfo-item,
  .blog-card {
    margin-bottom: 20px;
  }
  
  .service-title,
  .features-title,
  .price-title,
  .team-name,
  .coreinfo-title,
  .blog-title {
    font-size: 1.2rem;
  }
  
  .service-content,
  .blog-content {
    padding: 15px;
  }
  
  .service-image,
  .blog-image {
    height: 160px;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .contact-form {
    padding: 20px;
    margin-top: 30px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  .footer-site-name {
    font-size: 1.4rem;
  }
  
  .footer-contact,
  .footer-menu {
    margin-top: 30px;
  }
  
  .breadcrumb-area {
    padding: 100px 0 60px;
    margin-bottom: 40px;
  }
  
  .breadcrumb-title {
    font-size: 1.8rem;
  }
  
  /* Reduce animations on mobile */
  .service-card:hover,
  .features-item:hover,
  .price-card:hover,
  .team-card:hover,
  .coreinfo-item:hover,
  .blog-card:hover {
    transform: none;
  }
  
  .service-card:hover .service-image img,
  .team-card:hover .team-image img,
  .blog-card:hover .blog-image img,
  .gallery-item:hover .gallery-image img {
    transform: none;
  }
}

/* For sliders on smaller screens */
@media (max-width: 767px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Reduce animations for users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .service-card:hover,
  .features-item:hover,
  .price-card:hover,
  .team-card:hover,
  .coreinfo-item:hover,
  .blog-card:hover {
    transform: none !important;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05) !important;
  }
  
  .service-card:hover .service-image img,
  .team-card:hover .team-image img,
  .blog-card:hover .blog-image img,
  .gallery-item:hover .gallery-image img {
    transform: none !important;
  }
  
  .nav-link:hover:after {
    width: 0 !important;
  }
} 