/* CSS Reset and Global Styles */
:root {
  --aps-red: #d90429;
  --aps-red-dark: #b00322;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --blue-gradient: linear-gradient(180deg, #1d3865, #224988);
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;

  --sleep-premium: linear-gradient(180deg, #f8f9fb, #e8ecf3);
  --Pale-Terracotta-Tint: #f8ebe6;
  --sky-blue-gradient: linear-gradient(180deg, #eaf4ff 0%, #d8e7fb 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}


html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background-color: var(--white);
  color: var(--gray-900);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a{
  text-decoration: none !important;
}

/* Utility Classes */
.container {
  width: 100%;
  max-width: 1280px; /* max-w-7xl */
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem;
}

.hidden {
  display: none;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 800;
  margin-bottom: 1rem;
}
.section-header p {
  font-size: 1.125rem; /* text-lg */
  color: var(--gray-700);
  max-width: 42rem; /* max-w-2xl */
  margin-left: auto;
  margin-right: auto;
}

/* Header & Navigation */
.header {
  background-color: var(--white);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 50;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* .logo {
  font-size: 1.5rem;
  font-weight: 800;
  text-decoration: none;
} */
.logo {
  height: 80px;
  width: auto;
}
.logo-dark {
  color: var(--gray-900);
}
.logo-red {
  color: var(--aps-red);
}

/* --- MARK: Dropdown Menu Styles --- */

/* 1. Container for the link and the hidden menu */
.dropdown {
  position: relative;
  display: flex;         /* Keeps it aligned with other nav items */
  align-items: center;
  height: 100%;
}

/* 2. Style the main link to align the arrow icon */
.dropdown .dropbtn {
  display: flex;
  align-items: center;
  gap: 5px; /* Space between text and arrow icon */
  height: 100%;

  cursor: pointer;
}

/* 3. The hidden dropdown menu */
.dropdown-content {
  display: none; /* Hidden by default */
  position: absolute;
  background-color: var(--bg-card);
  min-width: 240px; /* Width of the dropdown */
  background-color: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  top: 100%; /* Positions it directly below the navbar */
  left: 0;
  border-top: 3px solid var(--primary-red); /* Red accent line at top */
  border-radius: 0 0 5px 5px;
  padding: 10px 0;
  /* margin-top: 15px; */

  /* --- THIS IS THE SCROLLABLE FIX --- */
  max-height: 60vh; /* Set a max height (e.g., 60% of the viewport height) */
  overflow-y: auto; /* Add vertical scrollbar ONLY if it overflows */
  /* --- END FIX --- */
}

/* 4. Links inside the dropdown */
.dropdown-content a {
  color: var(--text-color);
  padding: 12px 20px;
  text-decoration: none;
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  text-transform: capitalize; /* Makes links look cleaner */
  border-bottom: 1px solid #f0f0f0;
  transition: all 0.3s ease;
}

/* Remove border from last item */
.dropdown-content a:last-child {
  border-bottom: none;
}

/* 5. Hover Effects */
.dropdown-content a:hover {
  background-color: #fff0f0; /* Very light red background */
  color: var(--primary-red);
  /* padding-left: 25px; */
}

/* 6. Show the menu when hovering over the container */
.dropdown:hover .dropdown-content {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* Optional: Small fade-in animation */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-desktop {
  display: none; /* hidden */
  align-items: center;
  gap: 1.5rem; /* space-x-6 */
}
.nav-desktop a {
  color: var(--gray-700);
  text-decoration: none;
  font-weight: 500; /* font-medium */
  transition: color 0.3s;
}
.nav-desktop a:hover {
  color: var(--aps-red);
}
.nav-desktop .nav-button {
  background-color: var(--gray-900);
  font-weight: 700;
  color: var(--white);
  padding: 0.5rem 1.25rem; /* px-5 py-2 */
  border-radius: 0.5rem; /* rounded-lg */
  transition: background-color 0.3s;
}
.nav-desktop .nav-button:hover {
  background-color: var(--aps-red);
  color: var(--white);
}

.nav-mobile-btn {
  display: block; /* md:hidden */
  font-size: 1.875rem; /* text-3xl */
  color: var(--gray-900);
  background: none;
  border: none;
  cursor: pointer;
}

.nav-mobile-menu {
  background-color: var(--white);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
}
.nav-mobile-menu a {
  display: block;
  padding: 0.75rem 1.5rem; /* px-6 py-3 */
  color: var(--gray-700);
  font-weight: 500;
  text-decoration: none;
}
.nav-mobile-menu a:hover {
  background-color: var(--gray-50);
  color: var(--aps-red);
}
.nav-mobile-menu .nav-button-mobile {
  background-color: var(--aps-red);
  color: var(--white);
  text-align: center;
}
.nav-mobile-menu .nav-button-mobile:hover {
  background-color: var(--aps-red-dark);
  color: var(--white);
}

/* =========== floating icons =========== */
.floating-icons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* chat icon */
.chat-icon {
  /* position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000; */
  display: flex;
  flex-direction: row-reverse !important;
  align-items: center;
  gap: 2px;
  padding: 0;

  /* cursor: pointer; */
}

.chat-icon img {
  width: auto;
  height: 30px !important;
  border-radius: 50%;
  /* border: 2px solid #ffffff; */
}

.chat-icon p {
  display: none;
  margin: 0;
  width: 100%;
}

.chat-icon p img {
  width: auto;
  height: 30px !important;
}

@media (min-width: 768px) {
  .chat-icon {
    gap: 10px;
  }
  .chat-icon p {
    display: flex;
    align-items: center;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 50px 50px 0px 50px;
  }
  .chat-icon img {
    height: 50px !important;
  }
  .floating-icons a {
    text-decoration: none;
  }
}

/* ============= Hero Section ============= */
.hero-section {
  color: #fff;
  padding: 0;
  text-align: center;
  background-size: cover;
  background-position: center;
}

.hero-section img {
  width: 100%;
  object-fit: contain;
}

/* banner section */
/* ============== Banner Slider (Corrected CSS) ============== */
.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.slides {
  display: flex;
  width: 100%;
}

.slide {
  min-width: 100%;
}

/* ============== Hero Section ============== */
.hero {
  background-color: var(--gray-50);
}
.hero-content {
  padding-top: 6rem; /* py-24 */
  padding-bottom: 6rem;
  text-align: center;
}
.hero-content h1 {
  font-size: 2.25rem; /* text-4xl */
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.hero-content .subtitle {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 500;
  color: var(--gray-800);
  margin-bottom: 2rem;
}
.hero-content .description {
  /* max-width: 48rem; max-w-3xl */
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem; /* text-lg */
  color: var(--gray-700);
  margin-bottom: 2.5rem;
  line-height: 1.75; /* leading-relaxed */
}
.hero-button {
  display: inline-block;
  background-color: var(--aps-red);
  color: var(--white);
  font-weight: 700; /* font-bold */
  padding: 0.75rem 2rem; /* py-3 px-8 */
  border-radius: 0.5rem; /* rounded-lg */
  font-size: 1.125rem; /* text-lg */
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.hero-button:hover {
  background-color: var(--aps-red-dark);
  transform: scale(1.05);
}

/* ============ Product Gallery Section ============ */
.product-gallery {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: var(--gray-900);
}

.products-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: 1;
}
.products-content {
  position: relative;
  z-index: 2; /* keeps text and cards above video */
  color: var(--white) !important;
}
.products-content p {
  color: var(--white);
}
/* .products-content .section-header h2{
  color: var(--white) !important;
} */

.product-gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.product-gallery-card {
  background-color: var(--white);
  opacity: 0.9;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem;

  margin-bottom: 1rem;
}

.product-gallery-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2);
}

.product-gallery-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.product-gallery-info {
  padding: 1.5rem;
  text-align: left;
}

.product-gallery-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.product-gallery-info p {
  font-size: 1rem;
  color: var(--gray-700);
  line-height: 1.6;
}

/* Responsive Layout */
@media (min-width: 768px) {
  .product-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .product-gallery-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== Products Section =================== */
.products {
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
  /* background-color: var(--white); */
  background-color: var(--gray-50);
  /* background: var(--sky-blue-gradient); */
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
.product-card {
  background-color: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04); /* shadow-xl */
  border-radius: 0.75rem; /* rounded-xl */
  padding: 2rem;
  transition: all 0.3s;
}
.product-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
}
.product-card i {
  font-size: 3.75rem; /* text-6xl */
  color: var(--aps-red);
  margin-bottom: 1.25rem;
}
.product-card h3 {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.product-card p {
  color: var(--gray-700);
  margin-bottom: 1rem;
}
.product-card ul {
  list-style-position: inside;
  list-style-type: disc;
  color: var(--gray-700);
}
.product-card ul li {
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .products {
    padding-top: 7rem; /* md:py-28 */
    padding-bottom: 7rem;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
  .product-card-full {
    grid-column: span 2 / span 2; /* md:col-span-2 */
  }
}
@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr); /* lg:grid-cols-3 */
  }
  .product-card-full {
    grid-column: span 3 / span 3; /* lg:col-span-3 */
  }
}
/* ============= Mission & Vision Section ================== */
.mission-vision-section {
  padding: 5rem;
  background: var(--blue-gradient);
  color: #fff;
}
.mission-vision-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  text-align: center;
}
.mission {
  padding-bottom: 2rem;
  border-bottom: 2px solid var(--aps-red);
}
.mission-vision-content h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.mission-vision-content p {
  font-size: 1.125rem;
  color: #d1d5db;
  margin: 0;
}

/* ============ Why Choose Us Section ====================== */
.why-us {
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
  background-color: var(--gray-50);
}
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem 2rem; /* gap-x-8 gap-y-12 */
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem; /* space-x-5 */
}
.feature-icon {
  flex-shrink: 0;
  background-color: var(--aps-red);
  color: var(--white);
  width: 3.5rem; /* w-14 */
  height: 3.5rem; /* h-14 */
  border-radius: 9999px; /* rounded-full */
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-icon i {
  font-size: 1.875rem; /* text-3xl */
}
.feature-item h4 {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.feature-item p {
  color: var(--gray-700);
}

/* ============ Our factory ====================== */
.factory {
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
  background-color: var(--gray-50);
  text-align: center;
}

.factory-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  /* flex-wrap: wrap; */
}

/* Arrows */
.factory-content .arrow {
  border: solid black;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 15px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.factory-content .arrow:hover {
  border-color: var(--primary-color, #e63946);
  transform: scale(1.1) rotate(var(--rotate));
}

.left {
  transform: rotate(135deg);
  --rotate: 135deg;
}
.right {
  transform: rotate(-45deg);
  --rotate: -45deg;
}

/* Video Slider Container */
.videoSlider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  overflow: hidden;
  margin: 0 auto;
}

.videoSlides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.videoSlide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Video layout inside each slide */
.factory-videos {
  width: 100%; 
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* Video wrapper (makes iframe clickable) */
.video-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

/* Video frame */
.video-wrapper iframe {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 16 / 9; /* keeps it responsive */
  border: none;
  border-radius: 16px;
}

/* Overlay clickable link */
.video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  cursor: pointer;
}

/* ---------- Responsive Styling ---------- */
@media (max-width: 768px) {
  .factory-content {
    flex-direction: column;
  }

  .video-wrapper {
    width: 90%;
    /* max-width: 500px; */
  }

  .factory-videos {
    flex-direction: column;
    align-items: center;
  }
}

@media (min-width: 769px) {
  .videoSlider {
    max-width: 1400px; /* bigger container */
  }

  .video-wrapper {
    width: 48%;
    max-width: 700px;
  }

  .video-wrapper iframe {
    aspect-ratio: 16 / 9;
  }
}



/* .factory {
  padding-top: 5rem; py-20
  padding-bottom: 5rem;
  background-color: var(--gray-50);
  text-align: center;
}
.factory-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
} */

/* Arrows */
/* .factory-content .arrow {
  border: solid black;
  border-width: 0 6px 6px 0;
  display: inline-block;
  padding: 20px;

  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.factory-content .arrow:hover {
  border-color: var(--primary-color, #e63946);
  transform: scale(1.1) rotate(var(--rotate));
}
.left {
  transform: rotate(135deg);

    --rotate: 135deg;
}
.right {
  transform: rotate(-45deg);

    --rotate: -45deg;
}

.factory-videos {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.videoSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.videoSlides {
  display: flex;
  width: 100%;
}

.videoSlide {
  min-width: 100%;
}

.video-wrapper {
  position: relative;
  display: inline-block;
}

.video-wrapper iframe {
  width: 250px;
  height: 150px;
  border-radius: 20px;
}

.video-overlay-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: transparent;
  cursor: pointer;
}

@media (min-width: 768px) {
  .video-wrapper iframe {
    width: 800px;
    height: 400px;
    width: 100%;
    height: 100%;
  }
  .factory-videos {
    display: flex;
    gap: 10px;
  }
} */
/* ============= Partner CTA Section ==================== */
.partner-cta {
  padding-top: 5rem; /* py-20 */
  padding-bottom: 5rem;
  /* background-color: var(--gray-900); */
  background: var(--blue-gradient);
  color: var(--white);
}
.partner-cta-content {
  text-align: center;
}
.partner-cta-content h2 {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.partner-cta-content p {
  max-width: 48rem; /* max-w-3xl */
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem; /* text-lg */
  color: var(--gray-300);
  margin-bottom: 2.5rem;
  line-height: 1.75;
}
.partner-cta-button {
  display: inline-block;
  background-color: var(--aps-red);
  color: var(--white);
  font-weight: 700; /* font-bold */
  padding: 0.75rem 2rem; /* py-3 px-8 */
  border-radius: 0.5rem; /* rounded-lg */
  font-size: 1.125rem; /* text-lg */
  text-decoration: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: all 0.3s;
}
.partner-cta-button:hover {
  background-color: var(--aps-red-dark);
  transform: scale(1.05);
}

/* ================== Footer ================== */
#contact {
  background-color: var(--gray-300);
  color: var(--gray-900);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-column h3 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.footer-column img {
  width: 200px;
  margin-bottom: 1rem;
}

.footer-column p,
.footer-column a {
  color: var(--gray-700);
  text-decoration: none;
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--gray-900);
  color: var(--white);
  font-size: 1.25rem;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: var(--aps-red);
  transform: translateY(-3px);
}

/* Map Styling */
.footer-map {
  margin-top: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-map iframe {
  width: 100%;
  height: 180px;
  border: 0;
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid var(--gray-600);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-700);
}

/* Responsive Footer */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --- Footer --- */
/* #contact {
  background-color: var(--gray-300);
  color: var(--gray-900);
  padding: 3rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.footer-column h3 {
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.footer-column img{
    width: 200px;
}

.footer-column p,
.footer-column a {
  color: var(--gray-700);
  text-decoration: none;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--medium-gray);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray-600);
} */

/* Responsive Media Queries */
@media (min-width: 640px) {
  .container {
    padding-left: 1.5rem; /* sm:px-6 */
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex; /* md:flex */
  }
  .nav-mobile-btn {
    display: none; /* md:hidden */
  }
  .hero-content {
    padding-top: 8rem; /* md:py-32 */
    padding-bottom: 8rem;
  }
  .hero-content h1 {
    font-size: 3rem; /* md:text-5xl */
  }
  .hero-content .subtitle {
    font-size: 1.875rem; /* md:text-3xl */
  }

  .mission-vision-content {
    flex-direction: row;
    /* text-align: left; */
    text-align: center;
  }
  .mission-vision-content > div {
    width: 50%;
  }
  .mission {
    padding-right: 2rem;
    border-right: 2px solid var(--aps-red);
    border-bottom: none;
    padding-bottom: 0rem;
  }

  .why-us,
  .partner-cta {
    padding-top: 7rem; /* md:py-28 */
    padding-bottom: 7rem;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr); /* md:grid-cols-2 */
  }
  .section-header h2,
  .partner-cta-content h2,
  #factory h2 {
    font-size: 2.25rem; /* md:text-4xl */
  }
}

@media (min-width: 1024px) {
  .container {
    padding-left: 2rem; /* lg:px-8 */
    padding-right: 2rem;
  }
  .nav-desktop {
    gap: 2rem; /* lg:space-x-8 */
  }
  .hero-content h1 {
    font-size: 3.75rem; /* lg:text-6xl */
  }
}


/* added later */

