/* Mobile First Responsive Styles */

/* Extra Small devices (phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-section {
    min-height: auto;
    padding: 4rem 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .service-card,
  .team-card,
  .price-card {
    margin-bottom: 1.5rem;
  }
  
  .hero-section::before {
    display: none;
  }
  
  .navbar-brand {
    font-size: 1.25rem !important;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  /* Disable animations on mobile */
  .service-card:hover,
  .team-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .case-study-card:hover,
  .career-card:hover,
  .core-info-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .btn-primary:hover,
  .btn-outline-primary:hover {
    transform: none;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  .contact-form,
  .contact-info {
    margin-bottom: 2rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .section {
    padding: 4rem 0;
  }
  
  /* Disable animations on small devices */
  .service-card:hover,
  .team-card:hover,
  .price-card:hover,
  .blog-card:hover,
  .case-study-card:hover,
  .career-card:hover,
  .core-info-card:hover,
  .gallery-item:hover {
    transform: none;
  }
  
  .btn-primary:hover,
  .btn-outline-primary:hover {
    transform: none;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }
  
  .section-title {
    font-size: 2.25rem;
  }
  
  .section {
    padding: 4.5rem 0;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-title {
    font-size: 2.5rem;
  }
  
  .gallery-item img {
    height: 250px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }
  
  .section-title {
    font-size: 2.75rem;
  }
  
  .container {
    max-width: 1200px;
  }
}

/* Navigation Responsive */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 1rem;
  }
}

/* Cards Grid Responsive */
@media (max-width: 767.98px) {
  .row > [class*="col-"] {
    margin-bottom: 2rem;
  }
  
  .row > [class*="col-"]:last-child {
    margin-bottom: 0;
  }
}

/* Form Responsive */
@media (max-width: 575.98px) {
  .contact-form {
    padding: 2rem 1.5rem;
  }
  
  .contact-info {
    padding: 2rem 1.5rem;
  }
}

/* Gallery Responsive */
@media (max-width: 575.98px) {
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  .gallery-item img {
    height: 200px;
  }
}

/* Team Cards Responsive */
@media (max-width: 575.98px) {
  .team-photo {
    width: 100px;
    height: 100px;
  }
}

/* Feature Icons Responsive */
@media (max-width: 575.98px) {
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* Process Numbers Responsive */
@media (max-width: 575.98px) {
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Service Icons Responsive */
@media (max-width: 575.98px) {
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .core-info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }
}

/* Typography Responsive */
@media (max-width: 575.98px) {
  h1 {
    font-size: 1.75rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  h4 {
    font-size: 1.1rem;
  }
  
  h5 {
    font-size: 1rem;
  }
  
  h6 {
    font-size: 0.9rem;
  }
}

/* Footer Responsive */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
  }
  
  .footer .col-md-3,
  .footer .col-md-4 {
    margin-bottom: 2rem;
  }
}

/* Spacing Adjustments */
@media (max-width: 575.98px) {
  .mb-4 {
    margin-bottom: 2rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2.5rem !important;
  }
  
  .py-5 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }
}

/* Reduced motion for all screen sizes */
@media (prefers-reduced-motion: reduce) {
  .hero-section::before {
    animation: none;
  }
  
  * {
    transition: none !important;
    animation: none !important;
  }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 150px;
}