*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
  }
  html {
    scroll-behavior: smooth;
  }
  
  body{
    background:#f8fcff;
  }

  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }

  
  
  /* NAV */
  .navbar{
    display:flex;
    justify-content:space-between;
    padding:20px 80px;
    background:white;
    align-items:center;
    flex-wrap: wrap;
  }
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    position: relative;
    z-index: 10;
  }
  nav {
    display: flex;
    gap: 20px;
  }
  .logo {
    display: flex;
    align-items: center;
  }
  
  .logo img {
    height: 50px;   /* 👈 IMPORTANT */
    width: auto;
    display: block;
  }
  
  nav a{
    margin:0 15px;
    text-decoration:none;
    color:#333;
  }
  
  .nav-btn {
    background: linear-gradient(135deg, #00c897, #00a8cc);
    color: white;
    padding: 10px 22px;
    border-radius: 25px;
    text-decoration: none; /* ❗ removes underline */
    font-weight: 500;
    transition: 0.3s;
  }
  
  .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  }
  
  
  /* HERO */
  .hero{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 80px 5%;
    flex-wrap: wrap;
    background:linear-gradient(135deg,#eaf7ff,#ffffff);
    
  }
  .hero-content {
    flex: 1 1 400px;
  }
  
  
  .hero::before{
    
      z-index: 0;
   
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#00AEEF20;
    border-radius:50%;
    top:-100px;
    left:-100px;
  }
  
  .hero h1{
    font-size:52px;
    margin-bottom:20px;
  }
  
  .hero p{
    margin-bottom:20px;
    color:#555;
  }
  
  .hero-img{
    flex: 1;
  max-width: 500px;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,0.2));
  }
  
  
  
  /* BUTTONS */
  .btn-main {
    display: inline-block;
    background: linear-gradient(135deg, #00c897, #00a8cc);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none; /* ❗ removes underline */
    font-weight: 500;
    margin-right: 10px;
    transition: 0.3s;
  }
  
  .btn-main:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  
  .btn-outline {
    display: inline-block;
    border: 2px solid #00c897;
    color: #00c897;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none; /* ❗ removes underline */
    font-weight: 500;
    transition: 0.3s;
  }
  
  .btn-outline:hover {
    background: #00c897;
    color: white;
  }
  
  
  /* FEATURES */
  .features{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 40px 5%;
    background:white;
  }
  
  .feature{
    text-align:center;
    max-width:200px;
    flex: 1 1 200px;
  }
  
  
  /* PRODUCTS */
  .products{
    padding:80px;
    text-align:center;
    background:linear-gradient(#ffffff,#eaf7ff);
  }
  
  .grid{
    display:flex;
    gap:20px;
    margin-top:40px;
  }
  
  .card{
    background:white;
    padding:20px;
    border-radius:20px;
    flex:1;
    box-shadow:0 15px 30px rgba(0,0,0,0.08);
    transition:0.3s;
  }
  
  .card:hover{
    transform:translateY(-10px);
  }
  
  .card img{
    width:100%;
    height:200px;
    object-fit:contain;
  }
  
  .card button{
    margin-top:10px;
    padding:10px;
    background:#00C897;
    color:white;
    border:none;
    border-radius:20px;
  }
  
  
  /* TRUST */
  .trust{
    display:flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px 5%;
    background:#eaf7ff;
    font-weight:600;
  }

  .categories {
    padding: 100px 80px;
    text-align: center;
    background: #ffffff;
  }
  
  .categories h2 {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .subtitle {
    color: #666;
  }
  
  .category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
  

  /*This needs to be changed
  /* COMMON SECTION */
.categories {
    padding: 100px 80px;
    text-align: center;
    background: #ffffff;
  }
  
  .category-grid {
    display: flex;
    gap: 40px;
    margin-top: 60px;
  }
  
  /* COMMON CARD STYLE */
  .category-card {
    flex: 1;
    padding: 40px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    transition: 0.3s;
  
    /* 🔥 NEW LIGHT GREEN BACKGROUND */
    background: linear-gradient(135deg, #f3fff8, #e6fff3);
  
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    border: 2px solid #00c897;
  }
  
  .category-card:hover {
    transform: translateY(-8px);
  }
  
  /* BADGE */
  .badge {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #00c897;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
  }
  
  /* TEXT */
  .category-card h3 {
    margin: 20px 0;
  }
  
  .category-card p {
    margin-bottom: 20px;
    color: #333;
  }
  
  /* LIST */
  .category-card ul {
    list-style: none;
    padding: 0;
  }
  
  .category-card ul li {
    margin-bottom: 10px;
  }
  
  /* 🔥 B2B SPECIAL (SUBTLE DIFFERENCE, NOT DARK) */
  .b2b {
    border: 2px solid #00c897;
  }
  
  /* STATS */
  .stats {
    display: flex;
    justify-content: space-between;
    margin: 25px 0;
  }
  
  .stats h4 {
    font-size: 22px;
    color: #00a86b;
  }
  
  .stats span {
    font-size: 12px;
    color: #555;
  }
  
  /* BUTTONS */
  .btn-green {
    background: #00c897;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
  }
  
  /* B2B BUTTONS */
  .btn-white {
    background: #00c897;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    border: none;
    margin-right: 10px;
  }
  
  .btn-outline-white {
    border: 2px solid #00c897;
    background: transparent;
    color: #00c897;
    padding: 12px 20px;
    border-radius: 25px;
  }

  .why {
    padding: 100px 80px;
    text-align: center;
    background: #f8fcff;
  }
  
  .why h2 {
    font-size: 34px;
  }
  
  .subtitle {
    color: #666;
    margin-top: 10px;
  }
  
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    
  }
  
  .why-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s;
  }
  
  .why-card:hover {
    transform: translateY(-8px);
  }

  .contact {
    padding: 100px 80px;
  
    /* 🔥 Attractive soft gradient */
    background: linear-gradient(135deg, #eaf7ff, #f0fff7);
  }
  
  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    
  }
  
  /* LEFT SIDE */
  .contact-info {
    flex: 1;
  }
  
  .contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .contact-info p {
    color: #555;
    margin-bottom: 20px;
  }
  
  .contact-details p {
    margin-bottom: 12px;
    font-size: 15px;
  }
  
  /* RIGHT SIDE FORM */
  .contact-form {
    flex: 1;
    background: white;
    padding: 35px;
    border-radius: 20px;
  
    /* 🔥 depth */
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  
  .contact-form h3 {
    margin-bottom: 20px;
  }
  
  /* INPUTS */
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    outline: none;
    transition: 0.2s;
  }
  
  /* focus effect */
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: #00c897;
    box-shadow: 0 0 0 2px #00c89720;
  }
  
  .contact-form textarea {
    height: 110px;
    resize: none;
  }
  
  /* BUTTON */
  .btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #00AEEF, #00C897);
    color: white;
    padding: 14px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
  }
  
  .btn-submit:hover {
    opacity: 0.9;
  }

  /* About us page */


  /* HERO */
.about-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 5%;
  flex-wrap: wrap; 
    background: linear-gradient(135deg, #eaf7ff, #f3fff8);
  }
  
  .about-hero h1 {
    font-size: 40px;
  }
  .about-hero-content {
    flex: 1 1 400px;
  }
  .about-hero-image {
    flex: 1 1 400px;
    text-align: center;
  }
  
  /* SECTIONS */
  .about-section {
    padding: 80px;
    display: flex;
    justify-content: center;
  }
  
  .about-content {
    max-width: 800px;
  }
  
  .about-content h2 {
    margin-bottom: 20px;
  }
  
  .about-content p {
    margin-bottom: 15px;
    color: #555;
  }
  
  /* LIST */
  .about-content ul {
    list-style: none;
  }
  
  .about-content ul li {
    margin-bottom: 10px;
  }
  
  /* MISSION */
  .mission {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 40px 5%;
    background: #f8fcff;
  }
  
  .mission-card {
    flex: 1 1 300px;
    background: white;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  }
  
  /* QUALITY */
  .quality {
    padding: 80px;
    text-align: center;
  }
  
  .quality-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
   
  }
  
  .quality-card {
    flex: 1;
    background: #f3fff8;
    padding: 25px;
    border-radius: 15px;
  }
  
  /* CTA */
  .about-cta {
    text-align: center;
    padding: 80px;
    background: linear-gradient(135deg, #00AEEF, #00C897);
    color: white;
  }
  .btn-cta {
    display: inline-block;
    margin-top: 20px;
    background: white;
    color: #00a8cc;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
  }
  
  .btn-cta:hover {
    background: #e6fffa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  }

  .about-hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 80px;
  
    background: linear-gradient(135deg, #eaf7ff, #f3fff8);
  }
  
  /* LEFT TEXT */
  .about-hero-content {
    max-width: 50%;
  }
  
  .about-hero-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
  }
  
  .about-hero-content p {
    color: #555;
    font-size: 16px;
  }
  
  /* RIGHT IMAGE */
  .about-hero-image img {
    flex: 1 1 400px;
  text-align: center;
  
    /* 🔥 makes it blend nicely */
    mix-blend-mode: multiply;
    filter: drop-shadow(0 20px 30px rgba(0,0,0,0.1));
  }
  /* Why section */

  .why {
    padding: 100px 80px;
    background: #f8fcff;
  }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .why-container {
    display: flex;
    align-items: center;
    gap: 60px;
  }
  
  /* IMAGE */
  .why-image img {
    width: 600px;
    mix-blend-mode: multiply;
  }
  
  /* CONTENT */
  .why-content {
    flex: 1;
  }
  
  .why-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
  }
  
  .why-content ul {
    list-style: none;
    padding: 0;
  }
  
  .why-content ul li {
    margin-bottom: 12px;
    font-size: 16px;
  }
  
  /* 🔥 STATS */
  .why-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
  }
  
  .why-stats h3 {
    color: #00c897;
    font-size: 24px;
  }
  
  .why-stats p {
    font-size: 14px;
    color: #555;
  }

  /*Products PAge */

  /* SECTION */
.product-categories {
    padding: 100px 80px;
    text-align: center;
    background: #ffffff;
  }
  
  .product-categories h2 {
    font-size: 36px;
  }
  
  .subtitle {
    color: #666;
    margin-bottom: 50px;
  }
  
  /* BLOCK */
  .category-block {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 80px;
    gap: 50px;
  }
  
  /* TEXT */
  .category-text {
    flex: 1;
    text-align: left;
  }
  
  .category-text h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  
  .category-text p {
    color: #555;
    margin-bottom: 20px;
  }
  
  /* IMAGE */
  .category-image img {
    width: 420px;
  
    /* 🔥 BLEND EFFECT */
    mix-blend-mode: multiply;
    filter: drop-shadow(0 25px 40px rgba(0,0,0,0.15));
  }
  
  /* TAGS */
  .product-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0;
  }
  
  .product-tags span {
    background: #eaf7ff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
  }
  
  /* DARK TAGS (B2B) */
  .product-tags.dark span {
    background: #e6fff3;
  }
  
  /* HOMECARE BG */
  .homecare-block {
    background: linear-gradient(135deg, #f8fcff, #ffffff);
    padding: 40px;
    border-radius: 20px;
  }
  
  /* B2B BG */
  .b2b-block {
    background: linear-gradient(135deg, #eafff5, #ffffff);
    padding: 40px;
    border-radius: 20px;
  }
  
  /* BUTTONS */
  .btn-green {
    background: #00c897;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
  }
  
  .btn-white {
    background: #00AEEF;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    border: none;
  }
  .products {
    padding: 60px 80px; /* reduced from 100px */
    text-align: center;
    background: #f8fcff;
  }
  
  .products h2 {
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    margin: 10px auto 30px; /* reduced gap */
  }
  
  /* GRID */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));;
    gap: 20px;
   
  }
  
  /* CARD */
  .product-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    width: 250px;
  
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: 0.3s;
  }
  
  .product-card:hover {
    transform: translateY(-10px);
  }
  
  /* IMAGE */
  .product-card img {
    width: 120px;
    margin-bottom: 15px;
  }
  
  /* TEXT */
  .product-card h3 {
    margin-bottom: 10px;
  }
  
  .product-card p {
    color: #666;
    margin-bottom: 15px;
  }
  
  /* BUTTON */
  .product-card button {
    background: #00c897;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
  }
  /* TOP SMALL TEXT */
.section-tag {
  color: #00c897;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* SUBTITLE */
.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 10px auto 40px;
  font-size: 15px;
}



/* SPECIAL CARD */
.coming-soon {
  background: linear-gradient(135deg, #eafff5, #f3fff8);
  border: 2px dashed #00c897;
  text-align: center;
}

/* ICON */
.coming-icon {
  font-size: 40px;
  margin-bottom: 10px;
}

/* TAG */
.tag {
  display: inline-block;
  margin-top: 10px;
  background: #00c897;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.b2b-section {
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: white;
  padding: 80px 60px;
  border-radius: 30px;
  margin-top: 60px;
}

.b2b-header {
  text-align: center;
  max-width: 700px;
  margin: auto;
}

.section-tag.light {
  color: #00ffcc;
  letter-spacing: 2px;
  font-size: 12px;
}

.b2b-header h2 {
  margin: 10px 0;
  font-size: 32px;
}

.b2b-header p {
  opacity: 0.8;
}

/* STATS */
.b2b-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin: 40px 0;
}

.b2b-stats h3 {
  font-size: 28px;
  color: #00ffcc;
}

/* GRID */
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.b2b-card {
  background: rgba(255,255,255,0.06);
  padding: 25px 20px;
  border-radius: 20px; /* smoother curves */
  transition: all 0.35s ease;
  text-align: center;

  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);

  position: relative;
  overflow: hidden;
}
.b2b-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}
.b2b-card img {
  width: 130px;
  height: 160px;
  object-fit: contain;

  display: block;
  margin: 0 auto 15px auto; /* PERFECT CENTER */

  border-radius: 12px;
  padding: 10px;

  background: rgba(255,255,255,0.08); /* subtle glow bg */
}
.b2b-card:hover::before {
  opacity: 1;
}

.b2b-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.b2b-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.b2b-card h3 {
  margin: 10px 0 5px;
  font-size: 18px;
}

.b2b-card p {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.4;
}
.b2b-card p {
  font-size: 14px;
  opacity: 0.8;
}

/* COMING SOON */
.coming-soon-dark {
  border: 1px dashed #00ffcc;
  text-align: center;
}

.coming-soon-dark span {
  display: inline-block;
  margin-top: 10px;
  background: #00ffcc;
  color: black;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
}

/* BUTTONS */
.b2b-cta {
  text-align: center;
  margin-top: 40px;
}

.btn-light {
  background: #00ffcc;
  color: black;
  padding: 12px 20px;
  border: none;
  border-radius: 25px;
  margin-right: 10px;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #00ffcc;
  color: #00ffcc;
  padding: 12px 20px;
  border-radius: 25px;
  cursor: pointer;
}
.b2b-card img {
  width: 120px;
  height: auto;
  margin-bottom: 15px;
}

/* 5L badge */
.badge {
  display: inline-block;
  margin-top: 12px;
  background: linear-gradient(135deg, #00ffcc, #00c897);
  color: #002b2b;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
}
.b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-top: 40px;
}



/* Responsive Media*/

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  .navbar {
    flex-direction: column;
    gap: 10px;
  }

  nav {
    flex-direction: column;
    align-items: center;
  }

  .hero {
    flex-direction: column;
    text-align: center;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
  }

  .why-container {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 28px;
  }

  .about-hero h1 {
    font-size: 28px;
  }

}

/* SMALL MOBILE */
@media (max-width: 480px) {

  body {
    font-size: 14px;
  }

}