body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f6f8fa;
  color: #222;
  line-height: 1.7;
  overflow-x: hidden; /* Prevent body from scrolling horizontally */
}
header {
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.1rem 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
  background: #fff;
  position: relative;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.logo img {
  width: 269px;
  height: 115px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: #1a237e;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.08rem;
  padding: 0.3em 0.7em;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}

nav a.active,
nav a:hover {
  background: #e3f0ff;
  color: #0077ff;
}

.promo-btn.download-btn {
  margin-left: 1.5rem;
  background: #0077ff;
  color: #fff;
  padding: 0.7em 1.4em;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 2px 8px rgba(0,119,255,0.08);
}

.promo-btn.download-btn:hover {
  background: #005fcc;
  color: #fff;
}

.header-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  color: #0077ff;
  margin-left: 1.5rem;
}

@media (max-width: 900px) {
  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    position: relative;
  }
  .logo {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    z-index: 102;
  }
  .header-menu-toggle {
    display: block;
    z-index: 103;
    background: none;
    border: none;
    font-size: 2.2rem;
    cursor: pointer;
    color: #0077ff;
    margin-left: 0.5rem;
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100vw;
    box-shadow: 0 8px 32px rgba(0,119,255,0.07);
    border-radius: 0 0 12px 12px;
    padding: 4.5rem 0 1rem 0;
    z-index: 102;
    display: none;
    transition: all 0.2s;
    min-height: 100vh;
  }
  nav.open {
    display: flex;
  }
  nav a {
    width: 100%;
    padding: 1.1em 1.5em;
    font-size: 1.13rem;
    border-radius: 0;
    border-bottom: 1px solid #f0f4fa;
    margin: 0;
    text-align: left;
  }
  .promo-btn.download-btn {
    margin: 1.5rem auto 0 auto;
    width: 90%;
    text-align: center;
    font-size: 1.08rem;
    padding: 1rem 0;
    border-radius: 24px;
    box-shadow: 0 2px 8px rgba(0,119,255,0.10);
    display: block;
  }
}

@media (max-width: 600px) {
  .logo img {
    width: 200px;
    height: 100px;
  }
  .header-container {
    padding: 0.5rem 0.5rem;
  }
}

/* Hero Section */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background:
    linear-gradient(90deg, #e3f0ff 0%, #f6f8fa 100%),
    url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  padding: 4rem 1rem 3rem 1rem;
  text-align: center;
  border-radius: 0;
  box-shadow: 0 8px 32px rgba(0,119,255,0.04);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(10,24,48,0.72) 0%, rgba(10,24,48,0.82) 100%),
    url('https://images.unsplash.com/photo-1511974035430-5de47d3b95da?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  filter: brightness(0.85);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-subtitle {
  color: #ffe082;
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero h2 {
  font-size: 2.3rem;
  font-family: 'Inter', Arial, sans-serif;
  font-weight: 800;
  color: #fff;
  margin: 0 0 1.5rem 0;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.28);
  line-height: 1.3;
}
.hero p {
  color: #e3e6ea;
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.hero-highlight {
  background: linear-gradient(90deg, #ffe082 0%, #ffd54f 100%);
  color: #1a237e;
  padding: 0.1em 0.5em;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.08em;
  box-shadow: 0 2px 8px rgba(255,215,79,0.08);
  margin: 0 0.2em;
  display: inline-block;
}
.cta-btn {
  background: #ffe082;
  color: #1a237e;
  border: none;
  padding: 1.1rem 3rem;
  border-radius: 32px;
  font-size: 1.18rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(255,224,130,0.18);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  margin-bottom: 2.2rem;
  letter-spacing: 0.04em;
}
.cta-btn:hover {
  background: #ffd54f;
  color: #0a1830;
  transform: translateY(-2px) scale(1.04);
}

/* Hero Section Button Group */
.hero-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  margin-top: 1.5rem;
}
.cta-btn.secondary {
  background: transparent;
  color: #ffe082;
  border: 2px solid #ffe082;
  box-shadow: none;
}
.cta-btn.secondary:hover {
  background: #ffe082;
  color: #1a237e;
}

.trusted-by {
  margin-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trusted-by span {
  font-weight: 700;
  color: #ffe082;
  margin-right: 1rem;
  font-size: 1.1rem;
  letter-spacing: 0.2px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}
.trusted-by img {
  height: 32px;
  width: auto;
  filter: grayscale(1) brightness(0.8);
  opacity: 0.85;
  background: #fff;
  border-radius: 6px;
  padding: 2px 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.product-highlights {
  background: #fff;
  padding: 3.5rem 1rem 2.5rem 1rem;
  max-width: 1200px;
  margin: 3.5rem auto 0 auto;
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  text-align: center;
}
.product-highlights h2 {
  font-size: 2.1rem;
  color: #1a237e;
  margin-bottom: 2.2rem;
  font-weight: 800;
  letter-spacing: 0.5px;
}
.products {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
}
.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,119,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  position: relative;
  min-width: 220px;
  border-top: 4px solid #0077ff;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,119,255,0.13);
}

.product-img {
  width: 100%;
  height: 180px;
  background: #f7fafd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #e3f0ff;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s;
  filter: brightness(0.97);
  border-radius: 0 0 12px 12px;
}

.product-info {
  padding: 1.2rem 1rem 1.2rem 1rem;
  text-align: left;
  flex: 1 1 auto;
}

.product-info h3 {
  color: #0077ff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-info p {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}
.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
  margin: 3.5rem auto;
  max-width: 1100px;
  padding: 0 1rem;
}
.feature-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2.2rem 1.5rem;
  flex: 1 1 300px;
  max-width: 340px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1.5px solid #e3f0ff;
}
.feature-card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 24px rgba(0,119,255,0.10);
  border-color: #b3e0ff;
}
.feature-card img {
  width: 64px;
  margin-bottom: 1.1rem;
}
.feature-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: #0077ff;
  font-weight: 700;
  letter-spacing: 0.2px;
}
.feature-card p {
  color: #4b5563;
  font-size: 1.05rem;
}
footer {
  background: #1a237e;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem 1rem 1rem;
  margin-top: 0;
  border-radius: 0;
  font-size: 1.05rem;
  letter-spacing: 0.2px;
  box-shadow: 0 -2px 12px rgba(0,0,0,0.04);
}

/* Hero highlight for key phrases */
.hero-highlight {
  background: linear-gradient(90deg, #ffe082 0%, #ffd54f 100%);
  color: #1a237e;
  padding: 0.1em 0.5em;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.08em;
  box-shadow: 0 2px 8px rgba(255,215,79,0.08);
  margin: 0 0.2em;
  display: inline-block;
}

/* Animate the CTA button for attention */
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(0,119,255,0.18);}
  70% { box-shadow: 0 0 0 12px rgba(0,119,255,0);}
  100% { box-shadow: 0 0 0 0 rgba(0,119,255,0);}
}
.hero .cta-btn {
  animation: pulse 2.5s infinite;
  text-decoration: none;
}

/* Promo Section */
.promo-section {
  width: 100%;
  max-width: none;
  border-radius: 0;
  margin: 0;
  padding: 4rem 0 0 0;
  background: linear-gradient(100deg, #fffbe7 0%, #ffe082 100%);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  overflow-x: hidden;
  position: relative;
  flex-wrap: wrap;
  min-height: 360px;
  box-shadow: 0 8px 32px rgba(255,168,0,0.07);
}

.promo-img {
  position: relative;
  width: 277px;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(255,168,0,0.13);
  flex-shrink: 0;
  background: #fffbe7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
  z-index: 1;
  position: relative;
  transition: transform 0.3s;
}

.promo-img img:hover {
  transform: scale(1.04) rotate(-2deg);
}

.promo-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(255, 232, 138, 0.32) 0%, rgba(255, 255, 255, 0.18) 100%);
  z-index: 2;
  pointer-events: none;
}

.promo-img-decor {
  position: absolute;
  bottom: 18px;
  right: 18px;
  z-index: 3;
  opacity: 0.92;
  pointer-events: none;
  animation: floatDiya 3s ease-in-out infinite alternate;
}
@keyframes floatDiya {
  from { transform: translateY(0);}
  to { transform: translateY(-10px);}
}

.promo-content {
  flex: 1 1 340px;
  min-width: 260px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 0 2rem 0;
}

.promo-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ff9800;
  margin-bottom: 1.1rem;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 0.5em;
}

.promo-content p {
  color: #1a237e;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 500;
}

.promo-btns {
  display: flex;
  gap: 1.2rem;
  margin-top: 0.5rem;
}

.promo-btn {
  display: inline-block;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.13rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(255,168,0,0.13);
  letter-spacing: 0.01em;
  border: none;
}

.promo-btn.whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 2px 12px rgba(37,211,102,0.10);
}
.promo-btn.whatsapp:hover {
  background: #128c7e;
  transform: translateY(-2px) scale(1.04);
}

.promo-btn.outline {
  background: transparent;
  color: #ff9800;
  border: 2px solid #ff9800;
}
.promo-btn.outline:hover {
  background: #ff9800;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

.download-btn {
  background: #0077ff;
  color: #fff;
  border: none;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1.13rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(0,119,255,0.13);
  letter-spacing: 0.01em;
  display: inline-block;
  margin-left: 0.5rem;
}

.download-btn:hover {
  background: #005fcc;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 900px) {
  .promo-section, .why-features, .categories-cards, .final-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .promo-img img {
    width: 100%;
    /* height: 160px; */
  }
  .category-card {
    max-width: 95vw;
  }
}

/* Make Diwali Special Collection section full width */
.promo-section {
  width: 100%;
  max-width: none;
  border-radius: 0;
  margin: 0;
  padding: 4rem 0 0 0;
  background: linear-gradient(100deg, #fffbe7 0%, #ffe082 100%);
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 2.5rem;
  overflow-x: hidden;
  position: relative;
  flex-wrap: wrap;
  min-height: 360px;
  box-shadow: 0 8px 32px rgba(255,168,0,0.07);
}

/* Why Choose Us */
.why-choose {
  max-width: 1100px;
  margin: 3.5rem auto 0 auto;
  text-align: center;
  padding: 0 1rem;
}
.why-choose h2 {
  font-size: 2rem;
  color: #1a237e;
  font-weight: 800;
  margin-bottom: 0.7rem;
}
.why-desc {
  color: #4b5563;
  margin-bottom: 2.2rem;
}
.why-features {
  display: flex;
  gap: 2.5rem;
  justify-content: center;
  flex-wrap: wrap;
}
.why-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2rem 1.5rem;
  flex: 1 1 260px;
  max-width: 320px;
  text-align: center;
  border: 1.5px solid #e3f0ff;
  transition: transform 0.2s, box-shadow 0.2s;
}
.why-card:hover {
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 8px 32px rgba(0,119,255,0.10);
  border-color: #b3e0ff;
}
.why-card img {
  width: 56px;
  margin-bottom: 1rem;
}
.why-card h3 {
  color: #0077ff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.why-card p {
  color: #4b5563;
  font-size: 1rem;
}

/* Categories Section */
.categories-section {
  max-width: 1200px;
  margin: 4rem auto 0 auto;
  text-align: center;
  padding: 0 1rem 3rem 1rem;
  background: #f3f8fd;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0,119,255,0.04);
}
.categories-section h2 {
  font-size: 2.2rem;
  color: #1a237e;
  font-weight: 900;
  margin-bottom: 0.5rem;
  letter-spacing: 0.01em;
}
.categories-desc {
  color: #4b5563;
  margin-bottom: 2.5rem;
  font-size: 1.13rem;
}
.categories-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.2rem;
  justify-content: center;
  align-items: stretch;
}
.category-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,119,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  position: relative;
}
.category-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 32px rgba(0,119,255,0.13);
}
.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.category-info {
  padding: 1.2rem 1rem 1.2rem 1rem;
  text-align: left;
}
.category-info h3 {
  color: #0077ff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}
.category-info p {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 0.7rem;
}
.category-info a {
  color: #0077ff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}
.category-info a:hover {
  color: #1a237e;
}

/* Final CTA Section */
.final-cta {
  background: linear-gradient(100deg, #0077ff 0%, #00c6ff 100%);
  color: #fff;
  text-align: center;
  padding: 4rem 1rem 3.5rem 1rem;
  margin-top: 0;
  border-radius: 0;
  box-shadow: 0 6px 32px rgba(0,0,0,0.10);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 70%);
  z-index: 0;
  pointer-events: none;
}

.final-cta-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}
.final-cta-icon svg {
  width: 54px;
  height: 54px;
  fill: #ffe082;
  filter: drop-shadow(0 2px 12px rgba(255,224,130,0.18));
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 16px rgba(0,0,0,0.10);
}

.final-cta p {
  font-size: 1.22rem;
  margin-bottom: 2.5rem;
  color: #e3e6ea;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta-btns {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
}

.final-cta .cta-btn {
  background: #fff;
  color: #0077ff;
  border: none;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 1.1rem 2.5rem;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  position: relative;
  overflow: hidden;
  animation: pulse 2.5s infinite;
  text-decoration: none;
}

.final-cta .cta-btn.secondary {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
  animation: none;
}

.final-cta .cta-btn.secondary:hover {
  background: #fff;
  color: #0077ff;
}

.final-cta .cta-btn:hover {
  background: #e3f0ff;
  color: #0077ff;
  transform: translateY(-2px) scale(1.04);
}

@media (max-width: 600px) {
  .final-cta h2 {
    font-size: 1.4rem;
  }
  .final-cta p {
    font-size: 1rem;
  }
  .final-cta-btns {
    flex-direction: column;
    gap: 0.7rem;
  }
  .final-cta-icon svg {
    width: 38px;
    height: 38px;
  }
}

/* Responsive tweaks for hero */
@media (max-width: 600px) {
  .hero-content {
    padding: 1.2rem 0.5rem 1.2rem 0.5rem;
  }
  .hero h2 {
    font-size: .9rem;
    max-width: 300px;
  }
  .hero p {
    font-size: 1rem;
  }
  .trusted-by img {
    height: 26px;
  }
}
@media (max-width: 1100px) {
  .features, .products {
    gap: 1.2rem;
  }
}
@media (max-width: 900px) {
  .features, .products {
    flex-direction: column;
    align-items: center;
  }
  .feature-card, .product-card {
    max-width: 95vw;
  }
  .product-highlights, footer {
    border-radius: 0;
  }
  .hero {
    border-radius: 0;
  }
  .header-container {
    /* flex-direction: column; */
    align-items: stretch;
    gap: 1rem;
    padding: 1rem 4vw 1rem 4vw;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  nav {
    gap: 1.2rem;
  }
  .header-cta {
    margin-top: 0.5rem;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .promo-section, .why-features, .categories-cards, .final-cta-btns {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .promo-img img {
    width: 100%;
    /* height: 160px; */
  }
  .category-card {
    max-width: 95vw;
  }
}

.about-story-section {
  max-width: 100%;
  width: 100%;
  padding: 60px 60px;
  margin: 0;
  background: #fff;
  /* border-radius: 20px; */
  box-shadow: 0 4px 24px rgba(0,119,255,0.06);
  /* padding: 3rem 2rem 2.5rem 2rem; */
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-story-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #e3f0ff 0%, rgba(255,255,255,0) 70%);
  opacity: 0.5;
  z-index: 0;
}

.about-story-section::after {
  content: "";
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, #ffe082 0%, rgba(255,255,255,0) 70%);
  opacity: 0.4;
  z-index: 0;
}

.about-story-title {
  font-size: 2.2rem;
  font-weight: 900;
  color: #1a237e;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.about-story-desc {
  color: #4b5563;
  font-size: 1.18rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: none;
}

@media (max-width: 700px) {
  .about-story-section {
    padding: 2rem 0rem 1.5rem 0rem;
    border-radius: 12px;
    /* max-width: 300px; */
  }
  .about-story-title {
    font-size: 1.3rem;
  }
  .about-story-desc {
    font-size: 1rem;
  }
}

.about-companies-section {
  max-width: 100%;
  margin: 0;
  background: #f7fafd;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,119,255,0.06);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  text-align: center;
  position: relative;
}

.about-companies-title {
  font-size: 1.7rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 1.5rem;
  letter-spacing: 0.01em;
}

.about-companies-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.2rem;
}

.about-company-badge {
  display: inline-block;
  padding: 0.5em 1.3em;
  border-radius: 2em;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.01em;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,119,255,0.05);
  border: 1.5px solid #e3f0ff;
  transition: transform 0.18s, box-shadow 0.18s;
  opacity: 0.93;
}
.about-company-badge:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 6px 24px rgba(0,119,255,0.10);
}

.about-company-badge.green { color: #388e3c; border-color: #c8e6c9; }
.about-company-badge.blue { color: #1976d2; border-color: #bbdefb; }
.about-company-badge.blue2 { color: #1565c0; border-color: #bbdefb; }
.about-company-badge.red { color: #d32f2f; border-color: #ffcdd2; }
.about-company-badge.orange { color: #ff6f00; border-color: #ffe0b2; }

.about-companies-desc {
  color: #4b5563;
  font-size: 1rem;
  text-align: center;
  margin-top: 0.7rem;
}

@media (max-width: 600px) {
  .about-companies-section {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    border-radius: 12px;
  }
  .about-companies-title {
    font-size: 1.1rem;
  }
  .about-company-badge {
    font-size: 0.98rem;
    padding: 0.4em 1em;
  }
}

/* About Page Hero */
.about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 340px;
  background:
    linear-gradient(90deg, rgba(10,24,48,0.82) 0%, rgba(10,24,48,0.72) 100%),
    url('https://images.unsplash.com/photo-1511974035430-5de47d3b95da?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  padding: 0;
  margin: 0;
  text-align: center;
  border-radius: 0;
  overflow: hidden;
}

/* Container utility for centering and max width */
.promo-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .promo-container {
    flex-direction: column;
    gap: 1.5rem;
    padding: 0 1rem;
  }
}

.about-values-section {
  max-width: 100%;
  margin: 0;
  padding: 3rem 1.5rem 2.5rem 1.5rem;
  background: #f7fafd;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,119,255,0.07);
  text-align: center;
  position: relative;
}

.about-values-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 2.2rem;
  letter-spacing: 0.01em;
}

.about-values-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
  justify-content: center;
  margin-top: 1rem;
}

.about-value-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  padding: 2.5rem 1.5rem 2rem 1.5rem;
  max-width: 320px;
  min-width: 240px;
  text-align: center;
  border: 1.5px solid #e3f0ff;
  transition: transform 0.18s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}

.about-value-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,119,255,0.10);
  border-color: #b3e0ff;
}

.about-value-icon {
  background: linear-gradient(135deg, #e3f0ff 60%, #ffe082 100%);
  border-radius: 50%;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem auto;
  box-shadow: 0 2px 8px rgba(0,119,255,0.07);
}

.about-value-icon img {
  width: 44px;
  height: 44px;
}

.about-value-card h3 {
  color: #0077ff;
  font-size: 1.18rem;
  margin-bottom: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.about-value-card p {
  color: #4b5563;
  font-size: 1.05rem;
  margin-bottom: 0;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .about-values-cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .about-values-section {
    padding: 2rem 0.5rem 1.5rem 0.5rem;
    border-radius: 14px;
  }
}

/* Contact Us Page Styles */
.contact-hero {
  position: relative;
  min-height: 260px;
  background:
    linear-gradient(90deg, rgba(10,24,48,0.82) 0%, rgba(10,24,48,0.72) 100%),
    url('https://images.unsplash.com/photo-1519125323398-675f0ddb6308?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
}

.contact-hero-title {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.contact-hero-desc {
  color: #ffe082;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

/* Main Contact Section */
.contact-main-section {
  max-width: 1100px;
  margin: 3rem auto 0 auto;
  padding: 2.5rem 1rem 2rem 1rem;
  background: #f7fafd;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,119,255,0.07);
  margin-bottom: 50px;
}

.contact-info-container {
  display: flex;
  gap: 2.5rem;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}

.contact-details {
  flex: 1 1 320px;
  min-width: 260px;
  padding-right: 1rem;
}

.contact-title {
  font-size: 2rem;
  font-weight: 800;
  color: #1a237e;
  margin-bottom: 1.2rem;
}

.contact-desc {
  color: #4b5563;
  font-size: 1.13rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.contact-address h3 {
  color: #0077ff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-address p {
  color: #4b5563;
  font-size: 1.05rem;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

.contact-address a {
  color: #0077ff;
  text-decoration: none;
}

.contact-action {
  max-width: 600px;
  width: 90%;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,119,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Remove problematic positioning */
  left: auto;
  transform: none;
}

.contact-whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.9rem 2.2rem;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,0.10);
  transition: background 0.2s, transform 0.2s;
}

.contact-whatsapp-btn:hover {
  background: #128c7e;
  transform: translateY(-2px) scale(1.04);
}

.contact-note {
  color: #4b5563;
  font-size: 0.97rem;
  opacity: 0.7;
  text-align: center;
  margin-top: 0.2rem;
}

.contact-map {
  flex: 1 1 340px;
  min-width: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0,119,255,0.07);
}

@media (max-width: 900px) {
  .contact-info-container {
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-details, .contact-map {
    padding-right: 0;
    min-width: 0;
    width: 100%;
  }
  .contact-map iframe {
    height: 345px;
    width: 100%;
  }
  .contact-main-section {
    padding: 1.5rem 0.5rem 1.2rem 0.5rem;
    border-radius: 14px;
  }
  .contact-hero-content {
    padding: 2rem 0.5rem 2rem 0.5rem;
  }
  .contact-hero-title {
    font-size: 1.5rem;
  }
}

/* Add to style.css for products page enhancements */

/* Products Hero Section */
.products-hero {
  position: relative;
  min-height: 280px;
  background:
    linear-gradient(90deg, rgba(10,24,48,0.82) 0%, rgba(10,24,48,0.72) 100%),
    url('https://images.unsplash.com/photo-1511974035430-5de47d3b95da?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  margin-bottom: 0;
  overflow: hidden;
}

.products-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem 2rem;
  text-align: center;
}

.products-hero-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 1rem;
  letter-spacing: 0.01em;
  text-shadow: 0 4px 32px rgba(0,0,0,0.28);
}

.products-hero-desc {
  color: #ffe082;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.18);
}

.products-hero-btn {
  display: inline-block;
  background: #0077ff;
  color: #fff;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 0.9rem 2.2rem;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,119,255,0.10);
  transition: background 0.2s, transform 0.2s;
}

.products-hero-btn:hover {
  background: #005fcc;
  transform: translateY(-2px) scale(1.04);
}

/* Products Section */
.products-section {
  max-width: 1340px;
  margin: 2.5rem auto 0 auto;
  padding: 0 1rem;
}

.products-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.products-category-header h2 {
  font-size: 1.35rem;
  font-weight: 800;
  color: #1a237e;
}

.products-viewall {
  color: #0077ff;
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.products-viewall:hover {
  color: #005fcc;
  text-decoration: underline;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.product-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0,119,255,0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s;
  border: none;
  position: relative;
  min-width: 220px;
  border-top: 4px solid #0077ff;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.04);
  box-shadow: 0 12px 32px rgba(0,119,255,0.13);
}

.product-img {
  width: 100%;
  height: 180px;
  background: #f7fafd;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid #e3f0ff;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: filter 0.2s;
  filter: brightness(0.97);
  border-radius: 0 0 12px 12px;
}

.product-info {
  padding: 1.2rem 1rem 1.2rem 1rem;
  text-align: left;
  flex: 1 1 auto;
}

.product-info h3 {
  color: #0077ff;
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.product-info p {
  color: #4b5563;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Help CTA Section */
.products-help-cta {
  max-width: 900px;
  margin: 3rem auto 2rem auto;
  padding: 2.5rem 1rem 2rem 1rem;
  background: linear-gradient(100deg, #0077ff 0%, #00c6ff 100%);
  color: #fff;
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(0,119,255,0.07);
}

.products-help-cta h2 {
  font-size: 2rem;
  font-weight: 900;
  margin-bottom: 1.2rem;
  letter-spacing: 0.01em;
}

.products-help-cta p {
  font-size: 1.13rem;
  margin-bottom: 2rem;
  color: #e3e6ea;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.products-help-btn {
  background: #fff;
  color: #0077ff;
  border: none;
  font-weight: 700;
  font-size: 1.08rem;
  padding: 1rem 2.2rem;
  border-radius: 32px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  text-decoration: none;
  display: inline-block;
}

.products-help-btn:hover {
  background: #e3f0ff;
  color: #0077ff;
  transform: translateY(-2px) scale(1.04);
}

/* Branding Section */
.branding-section {
  background: #fcf6e6;
  padding: 3.5rem 0;
  margin: 2rem 0;
}

.branding-container {
  display: flex;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.branding-images {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.branding-img {
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.main-img {
  height: 240px;
  width: 100%;
}

/* Fix for small images */
.branding-small-imgs {
  display: flex;
  gap: 1rem;
  width: 100%;
}

.branding-small-imgs .branding-img {
  flex: 1;
  height: 140px;
  width: calc(50% - 0.5rem); /* Ensure they take up half the container minus gap */
  min-width: 0; /* Prevent flex items from growing beyond container */
}

@media (max-width: 900px) {
  .branding-container {
    flex-direction: column;
    gap: 2rem;
  }
  
  .branding-small-imgs .branding-img {
    height: 120px;
  }
}

@media (max-width: 600px) {
  .branding-section {
    padding: 2rem 0;
  }
  
  .branding-small-imgs {
    gap: 0.5rem;
  }
  
  .branding-small-imgs .branding-img {
    height: 100px;
  }
}

/* Fix contact action positioning */
.contact-action {
  max-width: 600px;
  width: 90%;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(0,119,255,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  /* Remove problematic positioning */
  left: auto;
  transform: none;
}

/* Fix branding section images */
@media (max-width: 600px) {
  .branding-container {
    padding: 0 1rem;
  }
  
  .branding-images {
    width: 100%;
  }
  
  .main-img {
    height: 200px;
  }
  
  .branding-small-imgs {
    gap: 0.5rem;
  }
  
  .branding-small-imgs .branding-img {
    height: 100px;
  }
  
  /* Fix hero buttons on mobile */
  .hero-btns {
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
  }
  
  .hero-btns a {
    width: 70%;
    text-align: center;
  }
  
  /* Fix spacing for mobile sections */
  .section-card, 
  .promo-section .container, 
  .features .container, 
  .categories-section .container {
    padding: 1.2rem 0.8rem;
    margin-left: 0;
    margin-right: 0;
    width: 84%;
  }
  
  /* Improve footer padding */
  footer {
    padding: 1.5rem 0.5rem 1rem;
  }
  
  /* Fix padding for product cards on mobile */
  .product-card {
    margin-left: 0.2rem;
    margin-right: 0.2rem;
    width: calc(100% - 0.4rem);
  }
  
  /* Adjust feature cards on mobile */
  .feature-card {
    padding: 1.5rem 1rem;
  }
  
  /* Fix hero content spacing */
  .hero-content {
    padding: 3rem 0 2rem 0;
  }
  
  /* Improve padding in sections */
  .section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
.promo-btns {
    display: block;
}

.promo-btns a {
    display: -webkit-inline-box;
    margin-bottom: 10px;
}
.categories-section h2 {
    font-size: 1.2rem;
     
}
}

/* Fix header logo sizing */
@media (max-width: 480px) {
  .logo img {
    width: 180px;
    height: 90px;
  }
}

/* Fix CTA buttons on very small screens */
@media (max-width: 400px) {
  .cta-btn, 
  .promo-btn, 
  .contact-whatsapp-btn {
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
  }
  

}