body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #333;
  }
  
 /* HEADER BASE STYLING */
.main-header {
    background-color: rgb(120, 4, 106);
    color: #fff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
  }
  
  .nav-container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo {
    font-size: 24px;
    margin: 0;
  }
  
  /* NAVIGATION STYLING */
  .main-nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
  }
  
  .main-nav a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
  }
  
  /* HAMBURGER MENU STYLING */
  .menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    color: #fff;
  }
  
  /* RESPONSIVE STYLES */
  @media (max-width: 768px) {
    .main-nav ul {
      flex-direction: column;
      position: absolute;
      top: 70px;
      right: 0;
      background-color: rgb(120, 4, 106);
      width: 200px;
      display: none;
      padding: 1rem;
      border-radius: 0 0 5px 5px;
    }
  
    .main-nav ul.show {
      display: flex;
    }
  
    .menu-toggle {
      display: block;
    }
  }
  

  
  .section {
    padding: 50px 0;
  }
  .home-section {
    background-image: url('./images/gallery/pexels-bobo-20631804.jpg'); /* Replace with your own image */
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
  }
  
  .home-overlay {
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }
  
  .home-content {
    text-align: center;
    max-width: 800px;
    padding: 1rem;
    animation: fadeIn 2s ease-in-out;
  }
  
  .home-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    font-weight: bold;
    line-height: 1.2;
  }
  
  .home-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    margin-bottom: 2rem;
  }
  
  .home-content .cta-btn {
    background-color:  green;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .home-content .cta-btn:hover {
    background-color: greenyellow;
  }
  
  @keyframes fadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Optional: Improve mobile spacing */
  @media (max-width: 768px) {
    .home-content {
      padding: 1.5rem;
    }
  }
  
  
  .home {
    background-color: #f9f9f9;
    text-align: center;
  }
  
  .about {
    background-color: #f9f9f9;
    padding: 60px 20px;
    color: #333;
  }
  
  .about h2 {
    color: green;
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
  }
  
  .about p {
    font-size: 18px;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
  }
  
  .about strong {
    color: #000;
  }

  .about, .products, .contact {
    background-color: #fff;
  }
  
  /* General Section Styling */
.section.products {
  padding: 15px 20px;
  background-color: #f8f9fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.section.products h2 {
  text-align: center;
  font-size: 2rem;
  color: green;
  margin-bottom: 50px;
}

/* Container */
.section.products .container {
  max-width: 1100px;
  margin: 0 auto;
}

/* Product Item Styling */
.product-item {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.product-item:hover {
  transform: translateY(-5px);
}
/* General Header Styling */
.main-header {
    background-color: #2c3e50;
    color: white;
    padding: 15px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
  }
  
  /* Navigation */
  .main-nav ul {
    display: flex;
    gap: 25px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .main-nav a {
    color: white;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
  }
  
  .main-nav a:hover {
    color: #f39c12;
  }
  
  /* Hamburger Toggle */
  .menu-toggle {
    font-size: 2rem;
    display: none;
    cursor: pointer;
  }
  
  /* Mobile Styles */
  @media (max-width: 768px) {
    .menu-toggle {
      display: block;
    }
  
    .main-nav {
      display: none;
      width: 100%;
      background-color: #2c3e50;
      margin-top: 10px;
    }
  
    .main-nav ul {
      flex-direction: column;
      align-items: center;
      padding: 10px 0;
    }
  
    .main-nav.show {
      display: block;
    }
  }
  

/* Product Image */
.product-item img {
  width: 100%;
  max-width: 400px;
  object-fit: cover;
  height: auto;
}

/* Product Details */
.product-details {
  padding: 20px;
  flex: 1;
}

.product-details h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 10px;
}

.product-details .price {
  font-weight: bold;
  color: #27ae60;
  margin-bottom: 10px;
}

.product-details p {
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .product-item {
    flex-direction: column;
  }

  .product-item img {
    width: 100%;
  }
}

.contact h2 {
  color: green;
  text-align: center;
  margin-bottom: 30px;
  font-size: 32px;
}

.contact-wrapper {
  display: flex;
  gap: 90px;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* Contact Form Styles */
.contact-form {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  margin-bottom: 15px;
  width: 100%;
  border: 1px solid #ccc;
}

.contact-form button {
  padding: 10px;
  background-color: rgb(120, 4, 106);
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 15px;
}

/* Contact Info Styles */
.contact-info {
  flex: 1;
  min-width: 280px;
  font-size: 16px;
  line-height: 1.6;
  margin-top: 10px;
}


.contact-info a {
  color: #34495e;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }

  .contact-form,
  .contact-info {
    width: 100%;
  }
}


  
  .footer {
    background-color: rgb(120, 4, 106);
    color: #ccc;
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .product-item {
      flex-direction: column;
      text-align: center;
    }
  
    .navbar {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    transition: transform 0.3s ease;
  }
  
  .whatsapp-float:hover {
    transform: scale(1.1);
  }
  
  .whatsapp-float img {
    width: 55px;
    height: 55px;
  }
  