/* Responsive Styles */

/* Tablet */
@media (max-width: 991.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .contact-form {
    padding: 2rem;
  }
}

/* Mobile */
@media (max-width: 767.98px) {
  /* No animations on mobile scroll */
  [data-sal] {
    transform: none !important;
    opacity: 1 !important;
  }
  
  .hero-section {
    min-height: 70vh;
    padding: 2rem 0;
  }
  
  .hero-decoration {
    display: none;
  }
  
  .section-padding {
    padding: 2.5rem 0;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-desc {
    font-size: 1rem;
  }
  
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .case-card,
  .process-card,
  .timeline-card,
  .career-card,
  .info-card,
  .blog-card,
  .faq-card {
    margin-bottom: 1.5rem;
    height: auto; /* Ensure responsive height */
    overflow: visible; /* Prevent content cutoff */
  }
  
  /* Specific FAQ card mobile styling */
  .faq-card {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
  
  .contact-form {
    padding: 1.5rem;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .gallery-item img {
    height: 200px;
  }
  
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  .navbar-brand {
    font-size: 1.1rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.25rem;
  }
  
  .btn {
    font-size: 0.875rem;
    padding: 0.5rem 1.5rem;
  }
  
  .team-image {
    width: 100px;
    height: 100px;
  }
  
  .price-value {
    font-size: 2rem;
  }
} 

.hero-section h1 {
    padding-top: 200px;
}