/* Mobile First Responsive Design */

/* Small devices (landscape phones, 576px and up) */
@media (max-width: 575.98px) {
  /* Disable all animations on mobile */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    transform: none !important;
  }
  
  /* Typography adjustments */
  :root {
    --font-size-h1: 1.5rem;
    --font-size-h2: 1.375rem;
    --font-size-h3: 1.25rem;
    --font-size-h4: 1.125rem;
    --section-padding: 2rem 0;
    --card-padding: 1rem;
  }
  
  /* Hero section adjustments */
  #hero {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-decorative-blob {
    display: none; /* Hide decorative elements on mobile */
  }
  
  /* Section spacing */
  section {
    padding: var(--section-padding);
  }
  
  /* Cards and components */
  .service-card,
  .feature-card,
  .price-card,
  .team-card,
  .review-card,
  .casestudy-card,
  .career-card,
  .coreinfo-card,
  .blog-card {
    margin-bottom: 1.5rem;
  }
  
  /* Contact form */
  .contact-form {
    padding: 1.5rem;
  }
  
  /* Gallery adjustments */
  .gallery-image {
    height: 200px;
  }
  
  /* Team photos */
  .team-photo {
    width: 100px;
    height: 100px;
  }
  
  /* Price cards */
  .price-card.featured {
    transform: none;
  }
  
  .price-amount {
    font-size: 2rem;
  }
  
  /* Process steps */
  .process-number {
    width: 35px;
    height: 35px;
  }
  
  /* Navbar brand */
  .navbar-brand {
    font-size: var(--font-size-base);
  }
  
  /* Footer */
  #footer {
    padding: 2rem 0 1rem;
  }
  
  .footer-section {
    margin-bottom: 1.5rem;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  :root {
    --font-size-h1: 1.75rem;
    --font-size-h2: 1.5rem;
    --section-padding: 3rem 0;
  }
  
  .hero-decorative-blob {
    opacity: 0.2;
  }
  
  .hero-decorative-blob:nth-child(1) {
    width: 150px;
    height: 150px;
  }
  
  .hero-decorative-blob:nth-child(2) {
    width: 120px;
    height: 120px;
  }
  
  .team-photo {
    width: 110px;
    height: 110px;
  }
  
  .gallery-image {
    height: 220px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-decorative-blob:nth-child(1) {
    width: 180px;
    height: 180px;
  }
  
  .hero-decorative-blob:nth-child(2) {
    width: 140px;
    height: 140px;
  }
  
  .gallery-image {
    height: 240px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-decorative-blob:nth-child(1) {
    width: 220px;
    height: 220px;
  }
  
  .hero-decorative-blob:nth-child(2) {
    width: 170px;
    height: 170px;
  }
}

/* Extra extra large devices (extra large desktops, 1400px and up) */
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

/* Print styles */
@media print {
  *, *::before, *::after {
    animation-duration: 0s !important;
    transition-duration: 0s !important;
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
  }
  
  .hero-decorative-blob {
    display: none;
  }
  
  .navbar,
  #footer {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
  }
  
  h1, h2, h3, h4, h5, h6 {
    page-break-after: avoid;
  }
} 

body {
    overflow-x: hidden;
}

.hero-content {
    padding-top: 100px;
}