/* ==========================================================================
   Zywie Meditech - Main Stylesheet (Navbar Completely Removed)
   Mobile-first | Modern | Responsive | Medical Brand Feel
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700&family=Open+Sans:wght@400;500;600;700&display=swap');

:root {
  --gradient-start:     #0f2b5e;
  --gradient-mid:       #006d77;
  --gradient-end:       #00c4b4;
  --accent-green:       #73ac4b;
  --accent-green-dark:  #5f933f;
  --dark-text:          #0f2b5e;
  --light-bg:           #f8fdff;
  --white:              #ffffff;
  --gray:               #5a7d8a;
  --gray-light:         #e8f5f5;

  --section-bg:         var(--gray-light);
  --card-bg:            var(--white);
  --card-shadow:        0 4px 15px rgba(0, 0, 0, 0.08);
  --transition:         all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  background-color: var(--light-bg);
  color: var(--dark-text);
  line-height: 1.7;          /* Slightly increased for better readability */
  font-weight: 400;          /* Default regular weight */
  font-size: 1.05rem;        /* Slightly larger base size for modern feel */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

section {
  padding: 70px 0;
}

h1, h2, h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;          /* Bold and confident for headings */
  color: var(--dark-text);
  line-height: 1.2;
  letter-spacing: -0.5px;    /* Subtle tightening for modern look */
}

h1 {
  font-size: clamp(2.6rem, 7vw, 4rem);
  font-weight: 800;          /* Extra bold for hero impact */
}

h2 {
  font-size: clamp(2rem, 5.5vw, 2.8rem);
  font-weight: 700;
  position: relative;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

p { margin-bottom: 1.2rem; }
.btn {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--accent-green);
  color: var(--white);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif; /* Updated for consistency */
}

.btn:hover {
  background-color: var(--accent-green-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(115, 172, 75, 0.3);
}

.btn-secondary {
  background: #ffffff;
  border: 2px solid var(--accent-green);
  color: var(--accent-green);
}

.btn-secondary:hover {
  background: var(--accent-green);
  color: var(--white);
}
/* navabr code */
/* ───────────────────────────────────────────────
   Modern Aesthetic Navbar - 2025/2026 Style
   ─────────────────────────────────────────────── */

.modern-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
 background: rgba(15, 43, 94, 0.75);    /* semi-transparent dark navy */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.4s ease;
}

.modern-navbar.scrolled {
  background: rgba(15, 43, 94, 0.92);
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

/* Container */
.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: white;
  font-weight: 700;
  font-size: 1.5rem;
  gap: 12px;
}

.logo img {
  height: 48px;
  width: auto;
}

.logo span {
  font-family: 'Roboto', sans-serif;
  letter-spacing: 0.5px;
}

/* Desktop Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 42px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  transition: color 0.3s ease;
  padding: 6px 4px;
}

.nav-links li a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2.5px;
  bottom: -6px;
  left: 50%;
  background: var(--accent-green);
  transition: all 0.35s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translateX(-50%);
}

.nav-links li a:hover {
  color: var(--accent-green);
}

.nav-links li a:hover::after {
  width: 80%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 32px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: rgba(15, 43, 94, 0.98);
  backdrop-filter: blur(10px);
  padding-top: 100px;
  transition: right 0.45s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 999;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu ul {
  list-style: none;
  padding: 0 32px;
}

.mobile-menu li {
  margin: 32px 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 500;
  display: block;
  transition: all 0.3s ease;
}

.mobile-menu a:hover {
  color: var(--accent-green);
  padding-left: 12px;
}

/* ───────────────────────────────────────────────
   Responsive Rules
   ─────────────────────────────────────────────── */

@media (max-width: 1023px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-container {
    padding: 0 20px;
  }

  .logo img {
    height: 42px;
  }
}

@media (max-width: 480px) {
  .logo span {
    font-size: 1.3rem;
  }

  .mobile-menu {
    width: 100%;
    max-width: none;
  }
}

/* When menu is open - animate hamburger to X */
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  align-items: center; /* Vertical center */
  justify-content: center; /* Horizontal center */
  min-height: 80vh; /* Fuller, professional height */
  padding: 100px 20px; /* Balanced padding */
  color: var(--white);
  text-align: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid), var(--gradient-end)); /* Fallback */
}

/* Background image layer */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0.85; /* Slightly transparent for classier blend */
}

/* Softer overlay for readability (reduced opacity) */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 43, 94, 0.45) 0%, /* Softer navy */
    rgba(0, 109, 119, 0.35) 50%, /* Lighter teal */
    rgba(0, 196, 180, 0.25) 100% /* Subtle green */
  );
  z-index: 2;
}

/* Content layer */
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px; /* Wider for better readability */
  animation: fadeIn 1.2s ease-in-out; /* Subtle professional fade-in */
}

/* color change for the Empowering Healthcare with Quality Medical Products, About Zywie Meditech, "Our Products, contact */
.hero h1 {
  font-size: clamp(3rem, 8vw, 4.5rem); /* Larger, impactful */
  color: #ffffff; /* Pure white for contrast */
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3); /* Softer shadow */
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em; /* Tightened for elegance */
}

/* Optional: make sure it's fully white and readable */
.hero h1 {
    color: #ffe25f;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4); /* optional - improves readability on gradient */
}

/* Buttons with slight spacing */
.hero .btn, .hero .btn-secondary {
  margin: 0 10px;
}
/* Page-specific backgrounds */
.hero.hero-home .hero-bg {
  background-image: url('cotton.jpeg');
}

.hero.hero-products .hero-bg {
  background-image: url('cotton.jpeg');
}

.hero.hero-about .hero-bg {
  background-image: url('cotton.jpeg');
}

.hero.hero-contact .hero-bg {
  background-image: url('cotton.jpeg');
}
/* Fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    padding: 80px 15px;
  }
  
  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }
  
  .hero p {
    font-size: 1.1rem;
  }
}



.hero p {
  font-size: 1.3rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  opacity: 0.92; /* Subtle fade for depth */
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.review-card p {
  font-style: italic;
  margin-bottom: 1rem;
}

.review-card cite { 
  font-weight: 500;
  color: var(--accent-green);
}

/* Footer */
.footer {
  background: var(--dark-text);
  color: white;
  padding: 4rem 0 2rem;
  text-align: center;
}

.footer-brand {
  margin-bottom: 1.5rem;
}

.footer-brand img {
  height: 80px;
}

.footer-tagline {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.footer-contact a {
  color: var(--accent-green);
  text-decoration: none;
}

.quick-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1.5rem 0;
  padding: 0;
}

.quick-links a {
  color: white;
  text-decoration: none;
  transition: var(--transition);
}

.quick-links a:hover {
  color: var(--accent-green);
}

.copyright {
  margin-top: 2rem;
  opacity: 0.7;
  font-size: 0.95rem;
}

/* Certifications */
.certifications {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.cert-badge {
  text-align: center;
}

.cert-image {
  width: 180px;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--card-shadow);
}

/* Customer Review section */
/* ───────────────────────────────────────────────
   Simplified Customer Reviews Carousel
   ─────────────────────────────────────────────── */

.reviews-section {
  background: var(--section-bg);
  padding: 70px 0;
}

.reviews-carousel {
  overflow-x: auto; /* Allow horizontal scroll */
  scroll-snap-type: x mandatory; /* Snap to cards */
  -webkit-overflow-scrolling: touch; /* Smooth on iOS */
  margin-top: 2rem;
}

.reviews-wrapper {
  display: flex;
  gap: 1rem; /* Space between cards */
}

/* Cards */
.review-card {
  flex: 0 0 100%; /* 1 card on mobile */
  scroll-snap-align: start;
  background: var(--card-bg);
  border-radius: 12px;
  padding: 1.8rem;
  box-shadow: var(--card-shadow);
  min-width: 100%; /* Full width on mobile */
  opacity: 1 !important; /* Ensure visible */
}

/* Hide scrollbar */
.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-carousel {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* Responsive */
@media (min-width: 768px) {
  .review-card {
    flex: 0 0 calc(50% - 1rem); /* 2 cards on tablets */
    min-width: calc(50% - 1rem);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 1rem); /* 3 cards on desktops */
    min-width: calc(33.333% - 1rem);
  }
}

/* Contact Section */
.contact-section {
  background: var(--section-bg);
}

.contact-wrapper {
  display: grid;
  gap: 2rem;
}

.contact-left, .contact-right {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: var(--card-shadow);
}

.map-embed iframe {
  border-radius: 10px;
  width: 100%;
  height: 350px;
}
/* Simplified Customer Reviews Carousel */
.reviews-section {
  background: var(--section-bg);
  padding: 80px 0;
}

.reviews-carousel {
  overflow: hidden;
  position: relative;
  margin-top: 2rem;
}

.reviews-wrapper {
  display: flex;
  transition: transform 0.8s ease-in-out;
}

.review-card {
  flex: 0 0 100%;               /* 1 card on small screens */
  min-width: 100%;
  box-sizing: border-box;
  padding: 1.8rem;
  margin: 0 1rem;
  background: var(--card-bg);
  border-radius: 12px;
  box-shadow: var(--card-shadow);
  opacity: 1 !important;        /* force visible */
}

/* Responsive – show more cards side by side */
@media (min-width: 640px) {
  .review-card {
    flex: 0 0 calc(50% - 2rem);
    min-width: calc(50% - 2rem);
  }
}

@media (min-width: 1024px) {
  .review-card {
    flex: 0 0 calc(33.333% - 2rem);
    min-width: calc(33.333% - 2rem);
  }
}

/* Responsive */
@media (min-width: 768px) {
  .products-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrapper { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .products-grid, .reviews-grid { grid-template-columns: repeat(3, 1fr); }
  section { padding: 90px 0; }
  .hero { padding: 220px 20px 160px; }
}

@media (min-width: 1200px) {
  .container { padding: 0 40px; }
}
/* Our products section code */
/* ───────────────────────────────────────────────
   Modern & Classy Products Grid (Updated 2025 Style)
   ─────────────────────────────────────────────── */

.products-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin-top: 2rem;
}

.product-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.product-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(115, 172, 75, 0.18);
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--accent-green), var(--accent-green-dark));
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.4s ease;
}

.product-card:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: contain;
  margin-bottom: 1.5rem;
  transition: transform 0.5s ease;
}

.product-card:hover img {
  transform: scale(1.08);
}

.product-card h3 {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  color: var(--dark-text);
}

/* Chip-style size tags – very trendy */
.product-sizes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0.8rem 0 0;
}

.product-sizes li {
  background: rgba(115, 172, 75, 0.1);
  color: var(--accent-green);
  padding: 0.5rem 1.1rem;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.3s ease;
  border: 1px solid rgba(115, 172, 75, 0.3);
}

.product-sizes li:hover {
  background: var(--accent-green);
  color: white;
  transform: translateY(-2px);
}

/* Description text (for Cast Padding etc.) */
.product-desc {
  font-size: 1rem;
  color: var(--gray);
  font-style: italic;
  margin-top: 1rem;
  line-height: 1.5;
}
/* Dropdown code of products */

.dropdown {
  position: relative;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(15, 43, 94, 0.92); /* Dark teal/navy semi-transparent – matches your hero/nav */
  backdrop-filter: blur(8px); /* Glassmorphism effect – modern & subtle */
  min-width: 220px;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  z-index: 1000;
  margin-top: 5px;
  overflow: hidden;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: white;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(115, 172, 75, 0.25); /* Subtle green highlight on hover */
  color: var(--accent-green);
}

/* Hide on mobile */
@media (max-width: 1023px) {
  .dropdown-content {
    display: none !important;
  }
}
/* Ceo image */
  .founder-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
  }

  .founder-content {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
  }

  .text-column {
    flex: 1;
    min-width: 300px;
  }

  .text-column h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
  }

  .text-column p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
  }

  .image-column {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
  }

  .image-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
  }

  .image-wrapper:hover {
    transform: translateY(-12px) scale(1.04);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  }

  .image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .image-wrapper:hover img {
    transform: scale(1.08);
  }

  /* Optional overlay effect on hover */
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .image-wrapper:hover .overlay {
    opacity: 1;
  }
/* ────────────────────────────────────────
     Responsive breakpoints
  ──────────────────────────────────────── */

  @media (max-width: 1024px) {
    .founder-content {
      gap: 50px;
    }
    .image-wrapper {
      max-width: 420px;
    }
  }

  @media (max-width: 768px) {
    .founder-section {
      padding: 60px 16px;
    }

    .founder-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 50px;
    }

    .text-column {
      max-width: 680px;
    }

    .image-column {
      justify-content: center;
    }

    .image-wrapper {
      max-width: clamp(300px, 75vw, 380px);
      aspect-ratio: 3 / 4;
    }
  }

  @media (max-width: 480px) {
    .founder-section {
      padding: 50px 12px;
    }

    .text-column h2 {
      font-size: 1.9rem;
    }

    .text-column p {
      font-size: 1rem;
    }

    .image-wrapper {
      max-width: 320px;
      border-radius: 12px;
    }
  }
  /* Company Founder code */
  /* Founder Section – Modern & Responsive */
.founder-section {
  background-color: #f8fdff; /* Light medical/clean background */
  padding: 80px 20px;
  overflow: hidden;
}

.founder-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.founder-text {
  text-align: center;
}

.founder-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0f2b5e;
  margin-bottom: 1.2rem;
  position: relative;
  display: inline-block;
}

.founder-text h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: #73ac4b;
  border-radius: 2px;
}

.founder-name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #006d77;
  margin: 1.5rem 0 1rem;
}

.founder-desc {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a6b7a;
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Open Sans', sans-serif;
}

.founder-image {
  display: flex;
  justify-content: center;
}

.image-card {
  position: relative;
  width: 100%;
  max-width: 380px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

/* Responsive Adjustments */
@media (min-width: 768px) {
  .founder-section {
    padding: 100px 40px;
  }

  .founder-grid {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    text-align: left;
  }

  .founder-text {
    text-align: left;
  }

  .founder-text h2::after {
    left: 0;
    transform: none;
  }

  .founder-name {
    font-size: 2rem;
  }

  .image-card {
    max-width: 420px;
  }
}

@media (min-width: 1024px) {
  .founder-grid {
    max-width: 1200px;
    gap: 80px;
  }

  .founder-text h2 {
    font-size: 3rem;
  }

  .founder-desc {
    font-size: 1.15rem;
  }

  .image-card {
    max-width: 480px;
  }
}

@media (max-width: 480px) {
  .founder-section {
    padding: 60px 15px;
  }

  .founder-text h2 {
    font-size: 2.1rem;
  }

  .founder-name {
    font-size: 1.6rem;
  }

  .image-card {
    max-width: 320px;
  }
}
/* Code of making texts center for About Zywie Meditech,Our Products,Life at Zywie,Our Certifications,Customer Reviews, */
/* Center specific headings on home page */
.about-preview h2,
#products h2,
.life-section h2,
#certifications h2,
.reviews-section h2 {
  text-align: center;
}

/* New Additional Code Applied for the latest new context update */
details {
  margin: 1rem 0;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  overflow: hidden;
}

summary {
  padding: 12px 16px;
  background: #f8fdff;
  font-weight: 600;
  color: var(--accent-green);
  cursor: pointer;
  user-select: none;
}

details[open] summary {
  background: #e8f5f5;
}

details ul {
  padding: 0 16px 16px;
  margin: 0;
  list-style-type: disc;
}

details ul li {
  margin: 0.5rem 0;
}

/* Better mobile spacing */
@media (max-width: 767px) {
  .product-card {
    margin-bottom: 2.5rem;
  }
  summary {
    font-size: 1.05rem;
  }
}

/* Mission & Vision – same style as Life at Zywie */
.mission-vision {
  padding: 80px 20px;
  text-align: center;
}

.mission-vision .container {
  max-width: 900px;
}

.mission-vision h2 {
  margin-bottom: 1.5rem;
}

.mission-vision p {
  color: var(--gray);
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 750px;
  margin: 0 auto 1.5rem;
}
