/* Extra small devices (phones, 576px and down) */
@media (max-width: 576px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  h3 {
    font-size: 1.75rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 60px;
  }
  
  .hero-shape-1 {
    width: 250px;
    height: 250px;
    bottom: -50px;
    right: -100px;
  }
  
  .hero-shape-2 {
    width: 150px;
    height: 150px;
  }
  
  .about-feature,
  .services-item,
  .priceplan-item,
  .features-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 40px;
  }
  
  .contact-form {
    padding: 25px;
  }
  
  .review-item {
    margin: 10px 0;
  }
  
  .review-text:before,
  .review-text:after {
    font-size: 30px;
  }
  
  footer {
    padding: 50px 0 20px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  h1 {
    font-size: 3rem;
  }
  
  .section {
    padding: 70px 0;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
    padding: 120px 0 70px;
  }
  
  .about-feature,
  .services-item,
  .priceplan-item,
  .features-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .team-member {
    margin-bottom: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .section {
    padding: 80px 0;
  }
  
  .hero {
    height: auto;
    min-height: 100vh;
  }
  
  .about-feature,
  .services-item,
  .priceplan-item,
  .features-item,
  .coreinfo-item {
    margin-bottom: 30px;
  }
  
  .footer-widget {
    margin-bottom: 30px;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .navbar-nav .nav-link {
    padding: 0.5rem 0.75rem;
  }
}

/* Media query for animations */
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    animation: none !important;
  }
  
  .fade-up {
    opacity: 1;
    transform: none;
  }
  
  .hero-shape-1,
  .hero-shape-2 {
    display: none;
  }
  
  .about-feature:hover,
  .services-item:hover,
  .features-item:hover,
  .priceplan-item:hover,
  .coreinfo-item:hover,
  .blog-item:hover,
  .team-member:hover .team-img img,
  .blog-item:hover .blog-img img,
  .gallery-item:hover img {
    transform: none;
  }
} 