* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Inter', sans-serif;
    }
    body {
      color: #1a1a1a;
      background: #fff;
      padding-top: 80px;
    }
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }
    .logo img {
      height: 60px;
      padding-right: 0.5rem;
    }
    nav ul {
      display: flex;
      list-style: none;
      gap: 1.5rem;
    }
    nav li {
      position: relative;
      transition: color 0.2s;
    }
    nav a {
      text-decoration: none;
      color: #1a1a1a;
      font-weight: 500;
    }
   .dropdown {
  display: block; /* Always block so JS can control visibility via opacity + pointer-events */
  position: absolute;
  top: 110%;
  left: 0;
  background: #fff;
  border: none;
  border-radius: 12px;
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(60, 72, 88, 0.15), 0 1.5px 4px rgba(60, 72, 88, 0.08);
  z-index: 1001;
  padding: 0.5rem 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
}

nav li.active .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown li {
  padding: 0;
}

.dropdown a {
  display: block;
  padding: 0.75rem 1.25rem;
  color: #222;
  border-radius: 8px;
  font-size: 1rem;
  transition: background 0.15s, color 0.15s;
}

.dropdown a:hover,
.dropdown a:focus {
  background: #f3f6fa;
  color: #2563eb;
  font-weight: 600;
}

nav > ul > li > a::after {
  content: ' ▼';
  font-size: 0.7em;
  color: #888;
  margin-left: 0.2em;
  vertical-align: middle;
  opacity: 0.7;
  transition: transform 0.2s;
  display: inline-block;
}

nav > ul > li.active > a::after {
  transform: rotate(-180deg);
}

nav > ul > li:not(:has(.dropdown)) > a::after {
  content: '';
}

    .hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  padding: 2rem;
  text-align: center;
  background-color: white;
  margin-top: 0; /* remove any spacing from fixed header compensation */
}

    .hero h1 {
      font-size: 3rem;
      font-weight: 700;
    }
    .hero p {
      margin-top: 1rem;
      font-size: 1.25rem;
      color: #666;
    }
    .hero .btn {
      margin-top: 2rem;
      padding: 0.75rem 1.5rem;
      background-color: #3b82f6;
      color: white;
      border: none;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
    }
    .section {
      text-align: center;
      padding: 4rem 0 4rem 0; /* Add top and bottom padding */
    }
    .products, .blogs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      margin-top: 2rem;
      padding: 1rem 0 2rem 0; /* Add vertical padding inside the container */
    }
    .card, .blog {
      border: 1px solid #ddd;
      padding: 1.5rem;
      border-radius: 10px;
      width: 300px;
      transition: box-shadow 0.2s;
      background-color: #fff;
    }
    a:visited, a:link {
      text-decoration: none;
      color: black;
    }
    .card:hover, .blog:hover {
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }
    .hand-drawn-img {
      max-width: 200px;
      margin: 1rem auto;
      display: block;
    }
    footer {
      padding: 2rem;
      background: #ffffff;
      text-align: center;
      color: #888;
      font-size: 1.1rem;
    }
     .inline-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .product-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-bottom: 0.5rem;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 600px;
  opacity: 0;
  transform: translateY(40px);
  animation: hero-slide-in 1s ease-out forwards;
  animation-delay: 0.2s;
}

@keyframes hero-slide-in {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-main-title {
  text-align: left;
  /* margin-bottom: 1rem; */
  color: #b01030;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.1;
}

.product-showcase {
  padding: 4rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.product-row.left {
  flex-direction: row;
}

.product-row.right {
  flex-direction: row-reverse;
}

.product-image {
  flex: 1;
  max-width: 500px;
}

.product-image img {
  width: 100%;
  height: auto;
  border-radius: 7px;
  display: block;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05); */
}

.product-text {
  flex: 1;
  max-width: 600px;
}

.product-text h2 {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

.product-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .product-row {
    flex-direction: column !important;
    align-items: flex-start;
  }

  .product-text,
  .product-image {
    max-width: 100%;
  }

  .product-text h2 {
    font-size: 1.75rem;
  }

  .product-text p {
    font-size: 1rem;
  }
}



.social-icons {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2rem;
  margin-bottom: 3rem;

  flex-wrap: wrap;
}

.social-icons a {
  color: #1a1a1a;
  text-decoration: none;
  transition: color 0.3s ease;
  width: 32px;
  height: 32px;
}

.social-icons a:hover {
  color: #2563eb;
}

.social-icons svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.about-section {
  padding: 4rem 2rem;
  background-color: #ffffff;
  margin-top: 7rem;
}

.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  max-width: 600px;
}

.about-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.about-text p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #444;
  margin-bottom: 1rem;
}

.about-image {
  flex: 1;
  max-width: 500px;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  /* box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1); */
}

/* Responsive layout */
@media (max-width: 768px) {
  .about-content {
    flex-direction: column;
    text-align: left;
  }

  .about-text, .about-image {
    max-width: 100%;
  }
}
