/* Responsive Styles */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .section-padding {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .section-title h2 {
    font-size: 28px;
  }
  
  .hero-section {
    height: 70vh;
    min-height: 450px;
  }
  
  .hero-content h1 {
    font-size: 32px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .about-img:after {
    width: 100%;
    height: 100%;
    bottom: -10px;
    left: -10px;
  }
  
  .process-container {
    padding-left: 50px;
    margin-bottom: 30px;
  }
  
  .process-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  
  .process-line {
    left: 20px;
  }
  
  .neuron-animation {
    height: 200px;
  }
  
  .blob-1, .blob-2 {
    display: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .section-padding {
    padding: 70px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .section-title h2 {
    font-size: 32px;
  }
  
  .hero-section {
    height: 80vh;
    min-height: 500px;
  }
  
  .hero-content h1 {
    font-size: 36px;
  }
  
  .hero-content p {
    font-size: 16px;
  }
  
  .about-img:after {
    width: 90%;
    height: 90%;
    bottom: -15px;
    left: -15px;
  }
  
  .process-container {
    padding-left: 60px;
    margin-bottom: 40px;
  }
  
  .process-number {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .process-line {
    left: 22.5px;
  }
  
  .neuron-animation {
    height: 250px;
  }
  
  .blob-1 {
    width: 200px;
    height: 200px;
  }
  
  .blob-2 {
    width: 150px;
    height: 150px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section-padding {
    padding: 80px 0;
  }
  
  .section-title {
    margin-bottom: 50px;
  }
  
  .hero-section {
    height: 90vh;
    min-height: 550px;
  }
  
  .hero-content h1 {
    font-size: 40px;
  }
  
  .about-img:after {
    width: 85%;
    height: 85%;
    bottom: -15px;
    left: -15px;
  }
  
  .service-img {
    height: 180px;
  }
  
  .team-img {
    height: 250px;
  }
  
  .team-img img {
    height: 100%;
    object-fit: cover;
  }
  
  .blob-1 {
    width: 250px;
    height: 250px;
  }
  
  .blob-2 {
    width: 200px;
    height: 200px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .section-padding {
    padding: 90px 0;
  }
  
  .hero-section {
    height: 95vh;
  }
  
  .service-img {
    height: 190px;
  }
}

/* Disable 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;
  }
  
  .blob-1, .blob-2, .neuron, .connection {
    animation: none !important;
  }
  
  .swiper-container {
    --swiper-autoplay-delay: 0ms !important;
  }
} 