/* Mobile First Responsive Design */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  * {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-section {
    min-height: 90vh;
    padding: 2rem 0;
  }
  
  .hero-shape-1, .hero-shape-2 {
    display: none;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .section-title {
    margin-bottom: 2rem;
  }
  
  h1, .h1 {
    font-size: 1.75rem;
  }
  
  h2, .h2 {
    font-size: 1.5rem;
  }
  
  h3, .h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  .service-card, .feature-card, .team-card, .review-card {
    margin-bottom: 1.5rem;
  }
  
  .team-img {
    width: 120px;
    height: 120px;
  }
  
  .gallery-img {
    height: 200px;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
  
  /* Footer mobile improvements */
  .footer {
    text-align: center;
  }
  
  .footer h5 {
    margin-top: 1rem;
    margin-bottom: 0.75rem;
  }
  
  .footer .disclaimer {
    text-align: left;
    font-size: 0.875rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  .service-card, .feature-card, .team-card, .review-card {
    margin-bottom: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 3.5rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  .hero-shape-1 {
    width: 350px;
    height: 350px;
  }
  
  .hero-shape-2 {
    width: 250px;
    height: 250px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-shape-1 {
    width: 400px;
    height: 400px;
  }
  
  .hero-shape-2 {
    width: 300px;
    height: 300px;
  }
}

/* XXL devices (larger desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  .navbar, .footer {
    display: none;
  }
  
  .hero-shape-1, .hero-shape-2 {
    display: none;
  }
  
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .service-card, .feature-card, .team-card, .review-card, .faq-card {
    border-width: 2px;
  }
  
  .form-control {
    border-width: 3px;
  }
}

/* Reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover, .feature-card:hover, .team-card:hover {
    transform: none;
  }
} 

.hero-content {
    padding-top: 200px;
}
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
