/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile */
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  
  .hero-decorative-shape {
    display: none;
  }
  
  /* Conservative mobile typography */
  h1 {
    font-size: 1.5rem;
  }
  
  h2 {
    font-size: 1.375rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem !important;
  }
  
  /* Hero section mobile adjustments */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  /* Service cards mobile spacing */
  .service-card {
    margin-bottom: 1.5rem;
  }
  
  /* Team cards mobile */
  .team-card {
    margin-bottom: 1.5rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Contact form mobile */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Section padding mobile */
  .section-padding {
    padding: 2rem 0;
  }
  
  /* Price plan cards mobile */
  .price-plan-card {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  /* Process steps mobile */
  .process-step {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.125rem;
  }
  
  /* Footer mobile */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }
  
  /* Blog cards mobile */
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* FAQ mobile */
  .faq-card {
    padding: 1.25rem;
  }
  
  /* Core info mobile */
  .core-info-item {
    margin-bottom: 1.5rem;
    padding: 1.25rem;
  }
  
  .core-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Tablet specific adjustments */
  .hero-section {
    min-height: 90vh;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .team-photo {
    width: 110px;
    height: 110px;
  }
  
  .process-number {
    width: 55px;
    height: 55px;
  }
  
  .core-info-icon {
    width: 55px;
    height: 55px;
    font-size: 1.375rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  .section-padding {
    padding: 3.5rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  /* Enhanced spacing for large screens */
  .service-card {
    margin-bottom: 2rem;
  }
  
  .team-card {
    margin-bottom: 2rem;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  .price-plan-card {
    padding: 2.5rem;
  }
  
  .process-step {
    padding: 2.5rem;
  }
}

/* Print styles */
@media print {
  .hero-decorative-shape,
  .navbar,
  .footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
    line-height: 1.4;
  }
  
  h1, h2, h3 {
    page-break-after: avoid;
  }
  
  .section-padding {
    padding: 1rem 0;
  }
} 

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