.product-nav-container {
  background-color: white;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 8px 0;
}

.product-link {
  color: black;
  text-decoration: none;
  padding: 6px 10px;
  margin: 2px 6px;
  font-weight: bold;
  font-size: 14px;
  transition: 0.3s;
  border-radius: 4px;
  white-space: nowrap;
}

.product-link:hover {
 background: linear-gradient(to right, #82CD47 , #61bbf8ff); /* Green */
  color: black;
}

@media (max-width: 768px) {
  .product-nav-container {
    flex-direction: column;
    align-items: center;
  }

  .product-link {
    width: 90%;
    text-align: center;
    margin: 5px 0;
 }
}



    .banner {
      position: relative;
      width: 100%;
      max-width: 1400px;
      height: 350px;
      margin: 0 auto;
      overflow: hidden;
      border-radius: 16px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
         
    }

    .slide {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.4s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      z-index: 1;
    }

    .slide img {
      width: 100%;
      height: 100%;
     

    }

    .text-overlay {
      position: absolute;
      top: 50%;
      left: 8%;
      transform: translateY(-50%);
      background: rgba(0, 0, 0, 0.5);
      color: #fff;
      padding: 20px 30px;
      border-radius: 10px;
      max-width: 400px;
    }

    .text-overlay h2 {
      font-size: 24px;
      margin-bottom: 10px;
    }

    .text-overlay p {
      font-size: 16px;
      margin-bottom: 15px;
    }

    .text-overlay a {
      display: inline-block;
      padding: 10px 20px;
      background: #ffffff;
      color: #000000;
      border-radius: 5px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s;
    }

    .text-overlay a:hover {
      background: #ddd;
    }

    .dots {
      position: absolute;
      padding-top: 12px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 14px;
      z-index: 2;
    }

    .dot {
      width: 8px;
      height: 8px;
      background: #ccc;
      border-radius: 50%;
      cursor: pointer;
      transition: all 0.3s ease;
      transform: scale(1);
    }

    .dot:hover {
      background: #888;
      transform: scale(1.2);
    }

    .dot.active {
      background: #000;
      transform: scale(1.4);
      box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    }

    @media (max-width: 768px) {
      .banner {
        height: 220px;
      }

      .text-overlay {
        padding: 12px 20px;
        max-width: 300px;
      }

      .text-overlay h2 {
        font-size: 18px;
      }

      .text-overlay p {
        font-size: 14px;
      }

      .dot {
        width: 12px;
        height: 12px;
      }
    }

    @media (max-width: 480px) {
      .banner {
        height: 180px;
      }

      .text-overlay {
        display: none;
      }
    }
    
    
    
    
      
       .main-wrapper-unique1 {
      padding: 2px;
    }

    .image-banner-container-unique1 {
      max-width: 1400px;
      height: 400px;
      margin: 40px auto 10px;
      overflow: hidden;
      border-radius: 15px;
      position: relative;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    }

    .image-slide-wrapper-unique1 {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .image-slide-wrapper-unique1 img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: fill;
      border-radius: 15px;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .image-slide-wrapper-unique1 img.active {
      opacity: 1;
      z-index: 1;
    }

    .dot-controls-unique1 {
      text-align: center;
      margin-top: 12px;
    }

    .slider-dot-unique1 {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 6px;
      background: #bbb;
      border-radius: 50%;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      padding: 4px;
    }

    .slider-dot-unique1:hover {
      background: #888;
      transform: scale(1.1);
    }

    .slider-dot-unique1.active {
      background: #333;
    }

    @media (max-width: 768px) {
      .image-banner-container-unique1 {
        height: 250px;
      }
    }

    @media (max-width: 480px) {
      .image-banner-container-unique1 {
        height: 200px;
      }
    }
    
    
    .main-wrapper-unique2 {
    padding: 2px;
   
  }

  .image-banner-container-unique2 {
    max-width: 1400px;
    height: 400px;
    margin: 40px auto 10px;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  }

  .image-slide-wrapper-unique2 {
    position: relative;
    width: 100%;
    height: 100%;
  }

  .image-slide-wrapper-unique2 img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    border-radius: 15px;
  }

  @media (max-width: 768px) {
    .image-banner-container-unique2 {
      height: 250px;
    }
  }

  @media (max-width: 480px) {
    .image-banner-container-unique2 {
      height: 200px;
  }
}






    .contact-wrapper {
      width: 100%;
      display: flex;
      flex-direction: row;
      background: #fff;
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      border-radius: 0;
      /*min-height: 85vh;*/
      flex-wrap: nowrap;
    }

    .contact-img-box,
    .contact-form-box {
      flex: 1;
      min-width: 0;
      padding: 30px;
      background-color: #FFCC99;
    }

    .contact-img-box {
      background: #FFCC99;
      display: flex;
      justify-content: center;
      align-items: center;
      border-right: 10px solid #ccc;
    }

    .contact-img-box img {
      width: 100%;
      max-width: 550px;
      border-radius: 12px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
      transition: transform 0.4s ease;
    }

    .contact-img-box img:hover {
      transform: scale(1.05);
    }

    .contact-form-box h2 {
      margin-bottom: 25px;
      color: #0056b3;
    }

    .contact-form-group {
      margin-bottom: 20px;
      position: relative;
    }

    .contact-form-group input,
    .contact-form-group textarea {
      width: 100%;
      padding: 14px;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 15px;
      background: #f9f9f9;
      transition: 0.3s ease;
    }

    .contact-form-group label {
      position: absolute;
      top: 50%;
      left: 14px;
      transform: translateY(-50%);
      font-size: 15px;
      color: #777;
      pointer-events: none;
      background: #fff;
      padding: 0 5px;
      transition: 0.3s;
    }

    .contact-form-group input:focus + label,
    .contact-form-group textarea:focus + label,
    .contact-form-group input:not(:placeholder-shown) + label,
    .contact-form-group textarea:not(:placeholder-shown) + label {
      top: -10px;
      font-size: 12px;
      color: #0056b3;
    }

    .contact-form-group input:focus,
    .contact-form-group textarea:focus {
      background: #fff;
      border-color: #0056b3;
    }

    .contact-form-box button {
      background: #0056b3;
      color: #fff;
      border: none;
      padding: 12px 20px;
      border-radius: 6px;
      font-size: 15px;
      cursor: pointer;
      transition: 0.3s ease;
    }

    .contact-form-box button:hover {
      background: #004080;
    }

    @media (max-width: 768px) {
      .contact-wrapper {
        flex-direction: column;
        min-height: auto;
      }

      .contact-img-box {
        border-right: none;
        border-bottom: 1px solid #ccc;
      }

      .contact-img-box img {
        max-width: 100%;
        height: auto;
      }
    }
    
    
    




   h2 {
      text-align: center;
      margin-bottom: 20px;
      font-size: 24px;
      color: #333;
    }

    .slider-container {
      overflow: hidden;
      width: 100%;
      position: relative;
    }

    .product-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .slider-product-card {
      min-width: 50%;
      max-width: 50%;
      box-sizing: border-box;
      padding: 10px;
      aspect-ratio: 1 / 1;
    }

    .slider-product-card-inner {
      background: white;
      border: 1px solid #ccc;
      border-radius: 15px 50px 30px 5px;
      padding: 8px;
      text-align: center;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-decoration: none;
      color: inherit;
      overflow: hidden;
    }

    .slider-product-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 15px 50px 30px 5px;
      aspect-ratio: 1 / 1;
      padding-top: 10px;
      transition: transform 0.3s ease;
    }

    .slider-product-card img:hover {
      transform: scale(1.05);
    }

    .slider-product-card p {
      margin-top: 8px;
      font-size: 20px;
      text-transform: capitalize;
      color:blue;
      font-weight: bold;
    }

    @media (min-width: 768px) {
      .slider-product-card {
        min-width: 20%;
        max-width: 20%;
      }
    }

    .slider-dots {
      margin-top: 15px;
      text-align: center;
    }

    .slider-dot {
      display: inline-block;
      width: 10px;
      height: 10px;
      margin: 0 4px;
      background: #ccc;
      border-radius: 50%;
      transition: background 0.3s ease;
      cursor: pointer;
    }

    .slider-dot.active {
      background: #333;
    }
    
    
    
    
