/* Mobile First Responsive Styles */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-section h1 {
    font-size: 2.75rem;
    padding-top: 225px;
}
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .hero-section h1 {
    font-size: 3rem;
    padding-top: 225px;
}
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .contact-form {
    padding: 3rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-section h1 {
    font-size: 3.5rem;
    padding-top: 225px;
}
  
  .navbar-brand {
    font-size: 1.5rem;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .section-padding {
    padding: 7rem 0;
  }
}

/* Mobile Specific Rules - No Animations */
@media (max-width: 767.98px) {
  /* Remove all hover effects and animations on mobile */
  .service-card,
  .team-card {
    transition: none;
  }
  
  .service-card:hover,
  .team-card:hover {
    transform: none;
  }
  
  /* Mobile Typography */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }
  
  /* Mobile Spacing */
  .section-padding {
    padding: 3rem 0;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  /* Team Avatar Size on Mobile */
  .team-avatar {
    width: 100px;
    height: 100px;
  }
  
  /* Process Steps Mobile */
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }
}

/* Print Styles */
@media print {
  .hero-decoration {
    display: none;
  }
  
  .service-card,
  .team-card {
    box-shadow: none;
    border: 1px solid #ddd;
  }
} 
/* Disable horizontal scroll on desktop resolutions */
@media (min-width: 992px) {
    html, body {
        overflow-x: hidden;
        max-width: 100%;
    }
}
