<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Extra small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  section {
    padding: 3rem 0;
  }
  
  .service-card, 
  .core-info-item,
  .testimonial-item {
    margin-bottom: 1.5rem;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.5rem;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
  
  /* Disable animations on mobile */
  .service-card:hover,
  .core-info-item:hover,
  .blog-card:hover,
  .price-plan:hover,
  .card:hover {
    transform: none;
    box-shadow: none;
  }
  
  .gallery-item:hover .gallery-image {
    transform: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  section {
    padding: 4rem 0;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .service-card-icon {
    font-size: 2rem;
  }
  
  .feature-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
  }
  
  .footer-widget {
    margin-bottom: 2rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero {
    height: 100vh;
  }
  
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 1rem;
    padding-left: 1rem;
  }
}

/* Fix for Swiper slider on mobile */
@media (max-width: 767.98px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
  
  .swiper-pagination {
    bottom: 0;
  }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .service-card:hover,
  .core-info-item:hover,
  .blog-card:hover,
  .price-plan:hover,
  .gallery-item:hover .gallery-image,
  .card:hover {
    transform: none !important;
    box-shadow: none !important;
  }
  
  .swiper-container {
    --swiper-pagination-bullet-inactive-opacity: 0.5;
  }
}

/* Adjust specific elements for landscape orientation on mobile */
@media (max-width: 767.98px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 4rem 0;
  }
} </pre></body></html>