<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Responsive CSS - Eco-Friendly Packaging Template */

/* ===== MOBILE FIRST APPROACH ===== */

/* Extra Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 2rem !important;
  }
  
  .hero-subtitle {
    font-size: 1rem !important;
  }
  
  .hero-description {
    font-size: 0.9rem !important;
  }
  
  .section {
    padding: 40px 0 !important;
  }
  
  .services-grid,
  .team-grid,
  .pricing-grid,
  .blog-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  
  .service-card,
  .team-card,
  .pricing-card,
  .contact-form {
    padding: 1.5rem !important;
  }
  
  .navbar-brand {
    font-size: 1.2rem !important;
  }
  
  h1, .h1 { font-size: 1.8rem !important; }
  h2, .h2 { font-size: 1.5rem !important; }
  h3, .h3 { font-size: 1.3rem !important; }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(5, 1fr);
  }
  
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ===== NAVIGATION RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .navbar-nav {
    text-align: center;
    padding-top: 1rem;
  }
  
  .navbar-nav .nav-link {
    padding: 0.5rem 0;
    margin: 0;
  }
}

/* ===== HERO SECTION RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .hero-section {
    min-height: 80vh;
    text-align: center;
  }
  
  .hero-content {
    padding: 2rem 0;
  }
}

/* ===== SWIPER RESPONSIVE OVERRIDES ===== */
@media (max-width: 767.98px) {
  .swiper {
    padding-bottom: 2rem !important;
  }
  
  .swiper-slide {
    margin-bottom: 1rem;
  }
  
  /* Disable autoplay and effects on mobile */
  .swiper[data-autoplay="true"] {
    --swiper-autoplay-delay: 0;
  }
}

/* ===== FAQ RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .faq-question,
  .faq-answer {
    padding: 1rem;
  }
  
  .faq-question {
    font-size: 0.9rem;
  }
}

/* ===== CONTACT FORM RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .contact-form {
    margin: 1rem;
    padding: 2rem;
  }
  
  .form-control {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/* ===== TESTIMONIALS RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .testimonial-card {
    margin: 0.5rem;
    padding: 2rem;
  }
  
  .testimonial-card::before {
    font-size: 3rem;
    top: 0.5rem;
    left: 1.5rem;
  }
}

/* ===== FOOTER RESPONSIVE ===== */
@media (max-width: 767.98px) {
  .footer {
    text-align: center;
    padding: 2rem 0 1rem;
  }
  
  .footer .row &gt; div {
    margin-bottom: 2rem;
  }
}

/* ===== UTILITY RESPONSIVE CLASSES ===== */
@media (max-width: 767.98px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .mb-mobile-3 {
    margin-bottom: 2rem !important;
  }
  
  .px-mobile-2 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

/* ===== REDUCED MOTION RESPONSIVE ===== */
@media (prefers-reduced-motion: reduce) {
  .hero-section,
  .card,
  .service-card,
  .team-card,
  .pricing-card,
  .gallery-item,
  .blog-card {
    transition: none !important;
  }
  
  .card:hover,
  .service-card:hover,
  .team-card:hover,
  .pricing-card:hover,
  .gallery-item:hover,
  .blog-card:hover {
    transform: none !important;
  }
} </pre></body></html>