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

    body {
      font-family: 'Segoe UI', sans-serif;
    }

    /* Navbar */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background: #f48fb1;
      position: relative;
      z-index: 20;
    }

    .logo img {
      width: 50px;
    }

    .nav-links {
      list-style: none;
      display: flex;
     
      gap: 20px;
      
    }

    .nav-links a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;     
    }
.nav-links a {
  position: relative;
  padding: 10px 15px;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: bold;
  border-radius: 5px;
  overflow: hidden;
  z-index: 1;
}

.nav-links a::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(120deg, #00f6ff, #00f6ff);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
  z-index: -1; /* BACKGROUND goes behind text */
  border-radius: 5px;
}

.nav-links a:hover::before {
  transform: scaleX(1);
}

.nav-links a:hover {
  color: #000;
}  

  .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      
      
    }

    .hamburger .menu-icon,
    .hamburger .close-icon {
      font-size: 28px;
      display: none;
      
    }

    #menu-toggle {
      display: none;
      
    }

    #menu-toggle:not(:checked) + .hamburger .menu-icon {
      display: inline;
    }

    #menu-toggle:checked + .hamburger .close-icon {
      display: inline;
    }

    /* Carousel */
 .carousel-container {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 400px; /* Fixed banner height */
}

.carousel-track {
  display: flex;
  transition: transform 1s ease-in-out;
  width: 200vw; /* 2 slides */
}

.slide {
  min-width: 100vw;
  height: 400px; /* Same fixed height */
  position: relative;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensures image covers area nicely */
  display: block;
}

.overlay {
  position: absolute;
  top: 20%;
  left: 10%;
  padding: 20px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
  border-radius: 10px;
}

.cta-button {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: #00c3ff;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s ease;
}

.cta-button:hover {
  background-color: #007eae;
}

/* Responsive */
@media (max-width: 768px) {
  .carousel-container,
  .slide {
    height: 250px;
  }

  .slide img {
    height: 100%;
  }

  .overlay {
    top: 15%;
    left: 5%;
    padding: 15px;
  }
}

/* Responsive */
@media (min-width: 787px) {
  .carousel-container,
  .slide {
    height: 300px;
  }

  .slide img {
    height: 100%;
  }

  .overlay {
    top: 15%;
    left: 5%;
    padding: 15px;
  }
}
    /* Responsive */
    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        right: 10px;
        top: 60px;
        background: #fff;
        width: 150px;
        box-shadow: 0 0 10px rgba(0,0,0,0.2);
        padding: 10px;
      }

      #menu-toggle:checked + .hamburger + .nav-links {
        display: flex;
      }

      .hamburger {
        display: block;
      }
    }
    
    /* about section */
  .about-section {
  background: #ffe6eb;
  padding: 50px 20px;
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  margin-top: 60px;
  text-align: center;
}

.about-section h2 {
  font-size: 36px;
  margin-bottom: 10px;
  color: #b30059;
}

.intro {
  font-size: 18px;
  margin-bottom: 40px;
  color: #4d004d;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.about-card {
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
  text-align: left;
}

.about-card:hover {
  transform: translateY(-5px);
}

/* Individual card colors */
.card1 {
  background: #fde2e4;
  color: #6b1134;
}
.card1 h3 { color: #a10035; }

.card2 {
  background: #e0f7fa;
  color: #01579b;
}
.card2 h3 { color: #0288d1; }

.card3 {
  background: #e8f5e9;
  color: #1b5e20;
}
.card3 h3 { color: #388e3c; }

.card4 {
  background: #fff3e0;
  color: #e65100;
}
.card4 h3 { color: #f57c00; }

.card5 {
  background: #f3e5f5;
  color: #6a1b9a;
}
.card5 h3 { color: #8e24aa; }

.card6 {
  background: #fbe9e7;
  color: #bf360c;
}
.card6 h3 { color: #d84315; }

/* Responsive text */
.about-card h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.about-card p {
  font-size: 16px;
  line-height: 1.5;
}


/* products section*/
.product-section {
  background: #fef0f5; /* soft pink tone to match pink body */
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 60px;
  text-align: center;
}

.product-section h2 {
  font-size: 32px;
  margin-bottom: 10px;
  color: #a8004d;
}

.section-desc {
  color: #5c005c;
  font-size: 16px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.product-card {
  background-color: #e7f1fa;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.3s;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 20px;
  color: #004d80;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
}

.product-card span {
  display: inline-block;
  font-size: 13px;
  color: #0072a0;
  background: #dff3ff;
  padding: 4px 10px;
  border-radius: 5px;
}

/* testimonial section*/
.testimonials-section {
  background-color: #fff0f5; /* light pink to match theme */
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
  font-family: 'Segoe UI', sans-serif;
}

.testimonials-section h2 {
  font-size: 32px;
  color: #a80050;
  margin-bottom: 10px;
}

.section-desc {
  color: #5c005c;
  font-size: 16px;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.testimonial-card {
  background-color: #f0faff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card p {
  font-size: 15px;
  color: #333;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 14px;
  color: #0072a0;
  font-weight: 600;
}

/* blog section */
.blog-section {
  background-color: #ffe6f0; /* soft pinkish background */
  padding: 60px 20px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 60px;
}

.blog-section h2 {
  font-size: 32px;
  color: #c2185b;
  margin-bottom: 10px;
}

.blog-desc {
  font-size: 16px;
  color: #6d004d;
  margin-bottom: 40px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.blog-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: 0.3s ease-in-out;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.blog-content {
  padding: 20px;
  text-align: left;
}

.blog-content h4 {
  font-size: 18px;
  color: #c2185b;
  margin-bottom: 10px;
}

.blog-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 15px;
}

.blog-content a {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}

.blog-content a:hover {
  text-decoration: underline;
}

/* contwct section */
.contact-section {
  background-color: #ffe6f0; /* light pink */
  padding: 60px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 60px;
}

.contact-section h2 {
  text-align: center;
  color: #c2185b;
  font-size: 32px;
  margin-bottom: 10px;
}

.contact-subtitle {
  text-align: center;
  color: #6d004d;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-info {
  background: #fff5f8;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.contact-info h3 {
  color: #880e4f;
  margin-bottom: 15px;
}

.contact-info p {
  margin: 10px 0;
  color: #444;
}

.contact-info a {
  color: #0077cc;
  text-decoration: none;
}

.whatsapp-btn {
  background-color: #25d366;
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 5px;
}

.contact-map iframe {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Responsive */
@media (min-width: 768px) {
  .contact-grid {
    flex-direction: row;
    justify-content: space-between;
  }

  .contact-info, .contact-map {
    flex: 1;
    max-width: 48%;
  }
}

/*footer section */
.main-footer {
  background-color: #ffccdd; /* light pink */
  color: #4a0033;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
  margin-top: 60px;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  font-size: 18px;
  color: #880e4f;
  margin-bottom: 15px;
}

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

.footer-section ul li a {
  text-decoration: none;
  color: #ffffea;
  display: block;
  margin-bottom: 8px;
}

.social-links a {
  display: inline-block;
  margin-right: 15px;
  text-decoration: none;
  color: #0077cc;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #e5b3c2;
  padding-top: 15px;
  font-size: 14px;
  color: #6d004d;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}