/* Responsive CSS for Employee Engagement Pulse-Survey SaaS Template */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  /* Disable animations on mobile for performance */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  /* Typography adjustments */
  h1 {
    font-size: 2rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.25rem;
  }
  
  .navbar-brand {
    font-size: 1.125rem;
  }

  /* Hero section */
  .hero-section {
    min-height: 80vh;
    padding: 2rem 0;
  }
  
  .hero-shape,
  .hero-blob {
    display: none;
  }

  /* Section padding */
  .section-padding {
    padding: 3rem 0;
  }

  /* Cards */
  .service-card,
  .pricing-card,
  .review-card,
  .contact-form {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .service-card:hover {
    transform: none;
  }

  /* Pricing */
  .pricing-price {
    font-size: 2.5rem;
  }

  /* Team images */
  .team-image {
    height: 200px;
  }

  /* Gallery images */
  .gallery-image {
    height: 200px;
  }

  /* Process steps */
  .process-step {
    padding: 1.5rem 0.5rem;
  }
  
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  /* Footer */
  .footer {
    padding: 2rem 0 1rem;
    text-align: center;
  }

  /* Blog cards */
  .blog-image {
    height: 150px;
  }
  
  .blog-content {
    padding: 1rem;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  /* Disable animations on small devices */
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.875rem;
  }

  .hero-section {
    min-height: 85vh;
  }

  .section-padding {
    padding: 4rem 0;
  }

  .service-card,
  .pricing-card,
  .review-card {
    margin-bottom: 2rem;
  }

  .team-image,
  .gallery-image {
    height: 220px;
  }

  .blog-image {
    height: 180px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .hero-section {
    min-height: 90vh;
  }

  .hero-shape {
    width: 250px;
    height: 250px;
  }
  
  .hero-blob {
    width: 150px;
    height: 150px;
  }

  .section-padding {
    padding: 4.5rem 0;
  }

  .team-image,
  .gallery-image {
    height: 240px;
  }

  .blog-image {
    height: 200px;
  }
}

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

  .section-padding {
    padding: 4.75rem 0;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .hero-section {
    min-height: 100vh;
  }

  .section-padding {
    padding: 5rem 0;
  }
}

/* Utility classes for responsive behavior */
.mobile-center {
  text-align: center;
}

@media (min-width: 768px) {
  .mobile-center {
    text-align: left;
  }
}

.mobile-hide {
  display: none;
}

@media (min-width: 768px) {
  .mobile-hide {
    display: block;
  }
}

.desktop-hide {
  display: block;
}

@media (min-width: 768px) {
  .desktop-hide {
    display: none;
  }
}

/* Responsive spacing */
.mb-mobile-3 {
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .mb-mobile-3 {
    margin-bottom: 1.5rem;
  }
}

.p-mobile-2 {
  padding: 1rem;
}

@media (min-width: 768px) {
  .p-mobile-2 {
    padding: 2rem;
  }
}

/* Navigation adjustments */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding: 1rem 0;
  }
  
  .navbar-nav .nav-link {
    padding: 0.75rem 1rem;
  }
}

/* Contact form responsive */
@media (max-width: 767.98px) {
  .contact-form .row {
    margin: 0;
  }
  
  .contact-form .col-md-6 {
    padding: 0 0 1rem 0;
  }
}

/* Timeline responsive */
@media (max-width: 767.98px) {
  .timeline-item {
    border-left: 2px solid var(--primary-color);
    padding-left: 1.5rem;
  }
  
  .timeline-item::before {
    width: 10px;
    height: 10px;
    left: -6px;
  }
}

/* Career cards responsive */
@media (max-width: 767.98px) {
  .career-card {
    padding: 1.5rem;
    text-align: center;
  }
  
  .career-badge {
    display: inline-block;
    margin: 0.5rem 0;
  }
}

/* Core info responsive */
@media (max-width: 767.98px) {
  .core-info-card {
    margin-bottom: 1.5rem;
  }
  
  .core-info-icon {
    width: 40px;
    height: 40px;
  }
} 

body {
    overflow-x: hidden;
}

.hero-section h1 {
    padding-top: 275px;
}