/* Responsive Styles - Mobile First Approach */

/* Mobile Specific Rules */
@media (max-width: 767.98px) {
  /* Disable scroll animations on mobile as per requirements */
  .sal-animate, [data-sal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    visibility: visible !important;
  }
  
  /* Typography Adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .navbar-brand {
    font-size: 1.1rem !important;
  }
  
  /* Hero Section */
  .hero-section {
    min-height: 80vh;
    padding: 60px 0;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    display: none; /* Hide decorative elements on mobile */
  }
  
  /* Sections Padding */
  .section {
    padding: 60px 0;
  }
  
  .services-section,
  .team-section,
  .testimonials-section,
  .faq-section,
  .gallery-section,
  .contact-section {
    padding: 60px 0;
  }
  
  /* Service Cards */
  .service-card {
    margin-bottom: 30px;
    padding: 25px;
  }
  
  /* Team Cards */
  .team-card {
    margin-bottom: 30px;
    padding: 25px;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Testimonial Cards */
  .testimonial-card {
    margin-bottom: 30px;
    padding: 25px;
  }
  
  /* FAQ Cards */
  .faq-card {
    margin-bottom: 15px;
    padding: 20px;
  }
  
  /* Contact Form */
  .contact-form {
    padding: 30px 20px;
  }
  
  /* Gallery */
  .gallery-item {
    margin-bottom: 20px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 20px;
    text-align: center;
  }
  
  .footer .col-md-3 {
    margin-bottom: 30px;
  }
}

/* Tablet Styles */
@media (min-width: 768px) and (max-width: 991.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  .hero-section {
    min-height: 90vh;
  }
  
  .service-card,
  .team-card,
  .testimonial-card {
    margin-bottom: 30px;
  }
  
  .hero-shape-1 {
    width: 150px;
    height: 150px;
  }
  
  .hero-shape-2 {
    width: 120px;
    height: 120px;
  }
}

/* Large Screen Adjustments */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .section-desc {
    max-width: 700px;
  }
}

/* Extra Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
  
  .section {
    padding: 100px 0;
  }
  
  .services-section,
  .team-section,
  .testimonials-section,
  .faq-section,
  .gallery-section,
  .contact-section {
    padding: 100px 0;
  }
}

/* Height-based Media Queries */
@media (max-height: 600px) {
  .hero-section {
    min-height: auto;
    padding: 80px 0;
  }
}

/* Print Styles */
@media print {
  .hero-shapes,
  .btn,
  .navbar-toggler {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
    color: black !important;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
} 

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