/* Responsive Styles */

/* Large Screens */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/* Medium Screens */
@media (min-width: 992px) and (max-width: 1199px) {
  .container {
    max-width: 960px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
  
  .services-grid,
  .priceplan-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Small Screens */
@media (min-width: 768px) and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section {
    padding: 60px 0;
  }
  
  .section-title {
    margin-bottom: 40px;
  }
  
  .about-content {
    flex-direction: column;
  }
  
  .about-image,
  .about-text {
    flex: 0 0 100%;
  }
  
  .services-grid,
  .features-grid,
  .priceplan-grid,
  .coreinfo-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

/* Extra Small Screens */
@media (max-width: 767px) {
  .container {
    max-width: 100%;
    padding-right: 20px;
    padding-left: 20px;
  }
  
  .navbar {
    padding: 15px 0;
  }
  
  .navbar-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
   
  }
  
  .navbar-nav.active {
    display: flex;
  }
  
  .nav-item {
    margin: 10px 0;
  }
  
  .navbar-toggler {
    display: block;
  }
  
  .hero-section {
    height: auto;
    padding: 100px 0 60px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .section {
    padding: 50px 0;
  }
  
  .section-title {
    margin-bottom: 30px;
  }
  
  .section-title h2 {
    font-size: 2rem;
  }
  
  .about-content {
    flex-direction: column;
    gap: 30px;
  }
  
  .services-grid,
  .features-grid,
  .priceplan-grid,
  .team-grid,
  .coreinfo-grid,
  .blog-grid,
  .add-page-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Hide animations on mobile for performance and accessibility */
  @media (prefers-reduced-motion: reduce) {
    * {
      animation: none !important;
      transition: none !important;
    }
  }
  
  /* Adjust swiper for mobile */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}

/* Very Small Screens */
@media (max-width: 480px) {
  .hero-title {
    font-size: 1rem;
  }
  
  .section-title h2 {
    font-size: 1rem;
  }
  
  .feature-item {
    flex-direction: column;
  }
  
  .feature-icon {
    margin-bottom: 15px;
  }
} 