/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
  html {
    font-size: 14px;
  }
  
  section {
    padding: 50px 0;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .service-card {
    margin-bottom: 20px;
  }
  
  .team-grid, 
  .features-grid, 
  .blog-grid, 
  .coreinfo-grid {
    grid-template-columns: 1fr;
  }
  
  .team-image {
    height: 250px;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer {
    padding: 50px 0 20px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  /* Swiper Slider Changes */
  .swiper-button-next,
  .swiper-button-prev {
    display: none !important;
  }
  
  /* Hero Height Adjustment */
  .hero-section {
    height: 80vh;
  }
  
  /* Remove hover effects on mobile */
  .service-card:hover,
  .team-member:hover,
  .blog-item:hover,
  .about-feature:hover,
  .feature-item:hover,
  .price-card:hover,
  .coreinfo-item:hover,
  .review-item:hover {
    transform: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  }
  
  /* Additional Page Header Adjustment */
  .page-header {
    height: 40vh;
  }
  
  .page-title {
    font-size: 2.2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  html {
    font-size: 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  .hero-title {
    font-size: 2.8rem;
  }
  
  .team-grid, 
  .features-grid, 
  .blog-grid, 
  .coreinfo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  .footer-column {
    margin-bottom: 30px;
  }
  
  /* Hero Height Adjustment */
  .hero-section {
    height: 85vh;
  }
  
  /* Additional Page Header Adjustment */
  .page-header {
    height: 45vh;
  }
  
  .page-title {
    font-size: 2.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  html {
    font-size: 16px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .contact-info {
    margin-top: 30px;
  }
  
  /* Team Members & Features Grid Adjustment */
  .team-grid, 
  .features-grid, 
  .blog-grid, 
  .coreinfo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  /* Swiper Slider Adjustments */
  .swiper-button-next,
  .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  
  /* Additional Page Header Adjustment */
  .page-header {
    height: 50vh;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  /* Team Members Grid Adjustment */
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* Blog Grid Adjustment */
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  /* CoreInfo Grid Adjustment */
  .coreinfo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  html {
    font-size: 18px;
  }
  
  .container {
    max-width: 1200px;
  }
  
  /* Team Members Grid Adjustment */
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  /* CoreInfo Grid Adjustment */
  .coreinfo-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Support for high DPI devices */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}

/* Prefer reduced motion */
@media (prefers-reduced-motion) {
  .swiper-slide {
    transition: none !important;
  }
  
  * {
    transition: none !important;
    animation: none !important;
  }
} 