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

    body {
      font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
      background: #dedad4fb;
    }

    /* 🌟 Glass Navbar */
    nav {
      position: fixed;
      top: 1;
      margin-left: 0px;
      width: 98%;
      height: 85px;
      background: rgba(255, 255, 255, 0.15); 
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      padding: 8px 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-radius: 12px;
      z-index: 20;
    }

    /* 🔷 Logo */
    .logo img {
      height: 80px;
      width: auto;
      display: block;
    }

    /* 🔹 Slogan text */
    .banner-text h1 {
      color: #081d7af7;
      font-size: 21px;
      font-weight: bold;
      margin-left: 15px;
    }

    /* 🍔 Hamburger icon */
    .hamburger {
      display: flex;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
      z-index: 1100;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: #080808;
      border-radius: 2px;
      transition: all 0.3s ease;
    }

    /* Dropdown menu */
    .nav-links {
      display: none;
      flex-direction: column;
      background: #ffffff99;
     
      backdrop-filter: blur(10px);
      position: absolute;
      top: 70px;   /* just below navbar */
      right: 20px;
      width: 220px;
      border-radius: 12px;
      padding: 12px 0;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }

    .nav-links a {
      padding: 12px 18px;
      color: #081d7af7;
      font-weight: bold;
      text-decoration: none;
      display: block;
      transition: inherit;
    }

    .nav-links a:hover {
      background: rgba(186, 184, 135, 0.7); 
    }

    /* Show dropdown when active */
    .nav-links.active {
      display: flex;
    }

   
      .background {
    position: relative;
    width: 95vw;
    max-width: 1150px;
    min-height: 80vh;
    margin: 2vh auto;
    background: rgba(186, 184, 135, 0.7);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 3vh 2vw;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, width 0.3s ease, height 0.3s ease;
  }


    .background::before {
      content: "";
      position:absolute;
      inset: 0;
    }

    .background img {
      width: 325px;
      height: 200px;
      margin-left: -700px;
      margin-bottom: -120px;
    }

    .background h1 {
      position: relative;
      color: rgb(255, 255, 255);
      font-size: 3.5rem;
      font-weight: 700;
      margin-left: 90px;
      margin-bottom: -10px;
      z-index: 1;
    }

    /* Product Details */
    .product-container {
      max-width: 1150px;
      margin: 60px auto;
      background: rgba(255, 255, 255);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 30px;
    }
      .products-container {
      max-width: 1150px;
      margin: 60px auto;
      background: rgba(255, 255, 255);
      border-radius: 12px;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      overflow: hidden;
      padding: 30px;
    }
    .product-details h2 {
      font-size: 18px;
      color: #081d7af7;
      margin-bottom: 10px;
    }

    .product-details p {
      line-height: 1.6;
      margin-bottom: 20px;
      text-align: justify;
      font-weight: 400;
    }

    .product-card {
      background: rgb(255, 255, 255);
      border-radius: 15px;
      padding: 40px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      display: flex;
      align-items: center;
      margin-bottom: 50px;
    }

    .product-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
    }

    .product-card img {
      width: 35%;
      height: 320px;
      object-fit: 100% 100%;
      border-radius: 12px;
      flex-shrink: 0;
  
    }

    .product-info {
      flex: 1;
    }

    .product-info h3 {
      color: #081d7af7;
      font-size: 1.2rem;
      margin-bottom: 5px;
      margin-left: 15px;
    }

    .product-info p {
      color: #333;
      font-weight: 550;
      margin-bottom: 10px;
      margin-left: 15px;
    }

    .product-show li{
      margin-left: 15px;
    }
    .product-show h2{
       color: #081d7af7;
      font-size: large;
      align-items: top; 
    }

    .more-btn-container {
      display: flex;
      justify-content: center;
      margin-top: 40px;
    }

    .more-btn {
      width: 220px;
      background: linear-gradient(90deg, #025DDB, #15156A);
      color: #fff;
      padding: 12px 30px;
      font-size: 1rem;
      font-weight: bold;
      border: none;
      border-radius: 50px;
      cursor: pointer;
      transition: all 0.4s ease;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
      margin-right: 500PX;
    }

    .more-btn:hover {
      background: linear-gradient(90deg, #15156A, #025DDB);
      transform: translateY(-3px) scale(1.05);
      box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
    }

.more-btn{
  display: block;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%; 
  height: auto;
}

    /* ===== MEDIA QUERIES ===== */
    @media (max-width: 1024px) {
      .product-container {
        padding: 20px;
        margin: 40px auto;
      }
      .product-details h2 {
        font-size: 24px;
      }
      .product-details p {
        font-size: 15px;
      }
      .product-card img {
        height: 218px;
      }
    }

    @media (max-width: 768px) {
      .banner-text h1 { display: none; }
      .product-container { width: 95%; padding: 15px; margin: 30px auto; }
      .product-card {
        flex-direction: column;
        align-items: center;
        text-align: flex-start;
      }
      .product-card img {
        width: 100%;
        height: auto;
        margin-bottom: 15px;
      }
      .product-info h3 { font-size: 1.2rem; }
      .product-info p { font-size: 14px; }
      .buttons { flex-direction: column; gap: 10px; }
      .more-btn-container { justify-content: center; margin-top: 20px; }
      .more-btn { width: 80%; font-size: 0.95rem; }
      .nav-links {
        width: 180px;
        right: 10px;
        top: 85px;
      }
      .nav-links a { padding: 10px 15px; font-size: 14px; }
      .hamburger span { width: 25px; height: 3px; }
    }

    @media (max-width: 480px) {
      .product-container { padding: 10px; margin: 20px auto; }
      .product-details h2 { font-size: 20px; }
      .product-details p { font-size: 13px; }
      .product-info h3 { font-size: 1rem; }
      .product-info p { font-size: 13px; }
      .more-btn { width: 90%; font-size: 0.9rem; padding: 10px 15px; }
      .background h1 { font-size: 1.3rem; }
      .background img { max-width: 120px; margin-left: 0; margin-bottom: 0; }
    }
     @media (max-width: 1200px) {
    .background {
      width: 97%;
      min-height: 80vh;
    }
    .background img {
      width: 325px;
      height: 200px;
      margin-left: -680px;
      margin-bottom:-118px;
      margin-top: -10px
    }
    .background h1{
    margin-left: 100px;
    margin-bottom: -20px;
  }
  }

     @media (max-width: 1025px) {
  /* code for iPad potrait or larger Pro models */
    .background {
      width: 97%;
      min-height: 80vh;
    }
    .background img {
      width: 260px;
      height: 165px;
      margin-left: -500px;
      margin-bottom:-120px;
      margin-top: 25px
    }
    .background h1 {
      margin-left: 220px;
    }
        .banner-text h1 {
      color: #081d7af7;
      font-size: 14px;
      font-weight: bold;
      margin-left: 15px;
    }
  }


  @media (max-width: 768px) {
    .background {
      width: 90vw;
      min-height: 30vh;
      padding: 4vh 3vw;
    }
    .background img {
      width: 35vw;
    }
    .background h1 {
      font-size: calc(1.2rem + 2vw);
    }
  }

  @media (max-width: 480px) {
    .background {
      width: 95vw;
      min-height: 23vh;
      padding: 5vh 4vw;
      background: rgba(186, 184, 135, 0.8);
    }
    .background img {
      max-width: 125px;
      height: 75px;
      margin-left: -200px;
      margin-bottom:-55px;
      margin-top: 5px;
    }
    .background h1 {
      font-size: 1.35rem;
      font-weight: 750;
      margin-left: 110px;
    }
  }
  
    html, body { 
height: 100%; 
margin: 0; padding: 0; 
overflow-x: hidden; }

/* Responsive Fixes */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

body {
  overflow-x: hidden;
}

.slider-container {
  width: 100%;
  margin: auto;
  padding: 10px;
}

.product-slider .slick-slide {
  padding: 5px;
}

.product-slider img {
  width: 100%;
  border-radius: 10px;
}

.slick-dots {
  bottom: -25px;
}

@media (max-width: 1024px) {
  .product-slider .slick-slide {
    padding: 4px;
  }
}

@media (max-width: 768px) {
  .row {
    display: block !important;
  }
  .col {
    width: 100% !important;
    margin-bottom: 15px;
  }
  .slick-dots {
    bottom: -20px;
  }
}

@media (max-width: 480px) {
  .product-slider img {
    border-radius: 6px;
  }
}

/* ===== PREMIUM UI UPGRADE ===== */
body {
  font-family: 'Segoe UI', sans-serif;
  background: #f8f9fb;
}

h1, h2, h3 {
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* Card Style */
.product-slider .slick-slide {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  padding: 10px;
  transition: transform 0.3s ease;
}

.product-slider .slick-slide:hover {
  transform: translateY(-5px);
}

/* Buttons */
button, .btn {
  border-radius: 25px;
  padding: 10px 20px;
  background: #0d6efd;
  color: #fff;
  border: none;
  transition: 0.3s;
}

button:hover {
  background: #0b5ed7;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 1000;
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}
