/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .hero-section {
    padding: 0 2rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
  
  .services-item {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-form {
    padding: 4rem;
  }
  
  .team-photo {
    width: 180px;
    height: 180px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .hero-content h1 {
    font-size: 3.5rem;
  }
  
  .section-padding {
    padding: 6rem 0;
  }
  
  .services-item {
    padding: 3rem 2rem;
  }
  
  .gallery-item img {
    height: 300px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-content h1 {
    font-size: 4rem;
  }
  
  .container-fluid {
    max-width: 1400px;
  }
}

/* Mobile-specific adjustments */
@media (max-width: 767.98px) {
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  .hero-section {
    min-height: 80vh;
    padding: 2rem 1rem;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .section-title {
    font-size: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .team-photo {
    width: 120px;
    height: 120px;
  }
  
  .services-item {
    padding: 1.5rem 1rem;
    margin-bottom: 2rem;
  }
  
  .testimonial-item {
    margin: 0.5rem;
    padding: 1.5rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  /* Disable autoplay and effects on mobile for Swiper */
  .swiper-wrapper {
    transition-duration: 0ms !important;
  }
  
  .swiper-slide {
    transition-duration: 0ms !important;
  }
}

/* Extra small devices */
@media (max-width: 575.98px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.3rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .btn-primary {
    width: 100%;
    padding: 1rem;
  }
  
  .card-body {
  overflow-x: hidden;
    padding: 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .swiper-button-next,
  .swiper-button-prev,
  .swiper-pagination {
    display: none !important;
  }
  
  body {
  overflow-x: hidden;
    color: #000 !important;
    background: white !important;
  }
  
  .hero-section {
    background: none !important;
    color: #000 !important;
    min-height: auto;
  }
} 