/* Mobile First Responsive Design */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-section::before {
    display: none;
  }
  
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .case-study-card,
  .career-card,
  .core-info-card,
  .blog-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .contact-form {
    padding: 2rem;
  }
  
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  .feature-icon,
  .process-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.25rem;
  }
  
  .service-icon,
  .core-info-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.25rem;
  }
  
  .price-value {
    font-size: 2.5rem;
  }
  
  /* No animations on mobile */
  .service-card:hover,
  .case-study-card:hover,
  .career-card:hover,
  .blog-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .service-card,
  .case-study-card,
  .career-card,
  .blog-card,
  .gallery-item {
    transition: none;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  h1 {
    font-size: 2rem;
  }
  
  .section-padding {
    padding: 4rem 0;
  }
  
  .contact-form {
    padding: 2.5rem;
  }
  
  /* Reduced animations on small devices */
  .service-card:hover,
  .case-study-card:hover,
  .career-card:hover,
  .blog-card:hover {
    transform: translateY(-2px);
  }
  
  .gallery-item:hover {
    transform: scale(1.02);
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 95vh;
  }
  
  h1 {
    font-size: 2.25rem;
  }
  
  .section-padding {
    padding: 4.5rem 0;
  }
  
  .service-card:hover,
  .case-study-card:hover,
  .career-card:hover,
  .blog-card:hover {
    transform: translateY(-3px);
  }
  
  .gallery-item:hover {
    transform: scale(1.03);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Landscape orientation adjustments */
@media (orientation: landscape) and (max-height: 600px) {
  .hero-section {
    min-height: 100vh;
    padding: 2rem 0;
  }
  
  .section-padding {
    padding: 3rem 0;
  }
}

/* Print styles */
@media print {
  .hero-section::before,
  .navbar,
  .footer {
    display: none;
  }
  
  .hero-section,
  .section-padding {
    min-height: auto;
    padding: 1rem 0;
  }
  
  .service-card,
  .team-card,
  .review-card,
  .case-study-card,
  .career-card,
  .core-info-card,
  .blog-card,
  .price-card {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .service-card,
  .team-card,
  .review-card,
  .case-study-card,
  .career-card,
  .core-info-card,
  .blog-card,
  .price-card,
  .contact-form {
    border: 2px solid var(--text-dark);
  }
  
  .hero-section::before {
    display: none;
  }
}

/* Dark mode preferences */

.hero-content {
    padding-top: 175px;
}