/* Responsive CSS - Mobile First Approach */

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.90rem;
  }
  
  h2 {
    font-size: 1.55rem;
  }
  
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative-shape {
    display: none;
  }
  
  .section-padding {
    padding: 2rem 0;
  }
  
  .contact-form {
    padding: 2rem 1rem;
  }
  
  .price-card.featured {
    transform: none;
    margin-top: 1rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.28rem;
  }
  
  .navbar-brand {
    font-size: 1rem !important;
  }
  
  .nav-link {
    font-size: 10px !important;
    padding: 0.3rem 0.4rem !important;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-card {
    margin-bottom: 1.73rem;
  }
  
  .timeline-item {
    padding-left: 1.5rem;
  }
  
  .timeline-item::before {
    left: -7px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  .services-card .card-img-top {
    height: 180px;
  }
  
  .team-photo {
    height: 220px;
  }
  
  .gallery-item img {
    height: 220px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .hero-shape-1 {
    width: 250px;
    height: 250px;
  }
  
  .hero-shape-2 {
    width: 180px;
    height: 180px;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .price-card.featured {
    transform: scale(1.03);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container-xl {
    max-width: 1320px;
  }
  
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 5rem 0;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .navbar {
    padding: 0.25rem 1rem;
  }
}

/* Print styles */
@media print {
  .navbar,
  .footer,
  .btn,
  .hero-decorative-shape {
    display: none !important;
  }
  
  .hero-section {
    min-height: auto;
    background: white !important;
  }
  
  * {
    color: black !important;
    background: white !important;
  }
} 

.hero-section h1 {
    padding-top: 100px;
}