/* Extra Large Devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Large Devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199px) {
  .navbar-brand {
    font-size: 24px;
  }
  
  .nav-link {
    margin: 0 10px;
  }
  
  .hero {
    height: 90vh;
  }
  
  .service-item {
    padding: 30px 20px;
  }
  
  .team-member-info {
    margin-left: 15px;
    margin-right: 15px;
  }
}

/* Medium Devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991px) {
  section {
    padding: 60px 0;
  }
  
  .navbar-brand {
    font-size: 22px;
  }
  
  .hero {
    height: auto;
    padding: 120px 0 80px;
  }
  
  .hero-bg {
    width: 100%;
    opacity: 0.2;
  }
  
  .hero-overlay {
    background: linear-gradient(0deg, rgba(255,255,255,0.85), rgba(255,255,255,0.85));
  }
  
  .about-feature {
    margin-bottom: 20px;
  }
  
  .feature-img::before {
    bottom: -10px;
    right: -10px;
  }
  
  .service-item, 
  .price-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .contact-form {
    padding: 30px;
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .page-header {
    height: 250px;
    margin-bottom: 60px;
  }
}

/* Small Devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767px) {
  section {
    padding: 50px 0;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-brand {
    font-size: 20px;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero {
    height: auto;
    padding: 100px 0 60px;
    text-align: center;
  }
  
  .hero-bg {
    width: 100%;
    opacity: 0.2;
  }
  
  .hero-overlay {
    background: linear-gradient(0deg, rgba(255,255,255,0.85), rgba(255,255,255,0.85));
  }
  
  .hero-content {
    margin-bottom: 40px;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .feature-img {
    margin-top: 30px;
  }
  
  .feature-img::before {
    display: none;
  }
  
  .contact-form {
    padding: 25px;
    margin-bottom: 30px;
  }
  
  .contact-img::before {
    display: none;
  }
  
  footer {
    padding: 60px 0 0;
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .page-header {
    height: 200px;
    margin-bottom: 50px;
  }
}

/* Extra Small Devices (portrait phones, less than 576px) */
@media (max-width: 575px) {
  section {
    padding: 40px 0;
  }
  
  .navbar {
    padding: 10px 0;
  }
  
  .navbar-brand {
    font-size: 18px;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .btn {
    padding: 10px 20px;
  }
  
  .hero {
    height: auto;
    padding: 100px 0 50px;
    text-align: center;
  }
  
  .hero-bg {
    width: 100%;
    opacity: 0.15;
  }
  
  .hero-overlay {
    background: linear-gradient(0deg, rgba(255,255,255,0.9), rgba(255,255,255,0.9));
  }
  
  .hero-content {
    margin-bottom: 30px;
  }
  
  .about-feature,
  .service-item,
  .feature-item,
  .price-item,
  .team-member,
  .coreinfo-item,
  .blog-item {
    margin-bottom: 30px;
  }
  
  .feature-img {
    margin-top: 30px;
  }
  
  .feature-img::before {
    display: none;
  }
  
  .review-item {
    padding: 30px 20px;
  }
  
  .contact-form {
    padding: 20px;
    margin-bottom: 30px;
  }
  
  .contact-img::before {
    display: none;
  }
  
  footer {
    padding: 50px 0 0;
    text-align: center;
  }
  
  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-widget {
    margin-bottom: 40px;
  }
  
  .contact-info p {
    justify-content: center;
  }
  
  .page-header {
    height: 180px;
    margin-bottom: 40px;
  }
  
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
  }
  
  .service-icon i {
    font-size: 28px;
  }
}

/* For Reduced Motion Preference */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 999999s;
  }
} 