/* Responsive CSS */

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}

/* Large devices (desktops, less than 1200px) */
@media (max-width: 1199.98px) {
  #hero-title-1 {
    font-size: 3rem;
  }
  
  .hero-section {
    background-position: 70% center;
  }
}

/* Medium devices (tablets, less than 992px) */
@media (max-width: 991.98px) {
  #hero-title-1 {
    font-size: 2.5rem;
  }
  
  .section-padding {
    padding: 80px 0;
  }
  
  .navbar-nav {
    padding: 15px 0;
  }
  
  .hero-section {
    text-align: center;
  }
  
  .hero-img {
    margin-top: 30px;
  }
  
  .about-feature, 
  .service-item, 
  .feature-item, 
  .price-plan, 
  .team-member, 
  .coreinfo-item {
    margin-bottom: 40px;
  }
  
  .contact-form {
    margin-top: 40px;
  }
}

/* Small devices (landscape phones, less than 768px) */
@media (max-width: 767.98px) {
  #hero-title-1 {
    font-size: 2rem;
  }
  
  #hero-subtitle-1 {
    font-size: 1.2rem;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .about-feature, 
  .service-item, 
  .feature-item, 
  .price-plan, 
  .team-member, 
  .coreinfo-item,
  .blog-item {
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  
  footer {
    text-align: center;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .navbar-brand {
    max-width: 70%;
  }
  
  #hero-title-1 {
    font-size: 1.8rem;
  }
  
  .section-padding {
    padding: 50px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .breadcrumb-wrapper {
    text-align: center;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .shape-1, .shape-2 {
    width: 100px;
    height: 100px;
  }
}

/* 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;
  }
}

/* Mobile devices - disable autoplay and animations */
@media (max-width: 767.98px) {
  .swiper-auto-play,
  .swiper-container-cube,
  .swiper-container-flip {
    animation: none !important;
    transition: none !important;
  }
  
  .swiper-container {
    overflow: hidden;
  }
} 