 :root {
      --primary-color: #f7501f;
      --dark-orange: #d23a0f;
      --light-bg: #fef8f5;
      --text-color: #111;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Segoe UI', sans-serif;
      background: #fff;
      color: var(--text-color);
      padding-top: 36px; /* टॉप बार की ऊंचाई के बराबर */
    }

    /* Top bar fixed */
    .top-bar {
      position: fixed;
      top: 0;
      width: 100%;
      background-color: var(--primary-color);
      color: white;
      text-align: center;
      padding: 6px 0;
      font-size: 13px;
      z-index: 1000;
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 20px;
      background: white;
      box-shadow: 0 2px 4px rgba(0,0,0,0.05);
      position: sticky; /* या fixed कर सकते हैं */
      top: 24px; /* टॉप बार के नीचे से शुरू */
      z-index: 999;
    }

    .logo-section {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .logo-section img {
      height: 45px;
    }

    .header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .call-btn {
      background: var(--primary-color);
      color: white;
      border: none;
      padding: 6px 12px;
      border-radius: 5px;
      font-size: 14px;
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .search-box {
      display: flex;
      border: 1px solid #ccc;
      border-radius: 5px;
    }

    .search-box input {
      border: none;
      padding: 6px 10px;
      outline: none;
      min-width: 120px;
    }

    .search-box button {
      background: var(--primary-color);
      border: none;
      color: white;
      padding: 6px 10px;
      cursor: pointer;
    }

    nav {
      background: var(--light-bg);
      display: flex;
      justify-content: center;
      padding: 10px;
      z-index: 998;
      box-shadow: 0 2px 4px rgba(0,0,0,0.06);

    }

    .nav-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      align-items: center;
    }

    .nav-links a {
      text-decoration: none;
      font-weight: 600;
      color: var(--text-color);
      position: relative;
    }

    .nav-links a:hover {
      color: var(--primary-color);
    }

    .dropdown {
      position: relative;
    }

    .dropdown-content {
      display: none;
      position: absolute;
      background: white;
      top: 100%;
      left: 0;
      width: 260px;
      max-height: 400px;
      overflow-y: auto;
      box-shadow: 0 4px 8px rgba(0,0,0,0.1);
      z-index: 100;
      border-radius: 6px;
    }

    /* Show dropdown on hover */
    .dropdown:hover .dropdown-content {
      display: block;
    }

    .dropdown-content .item {
      padding: 10px 15px;
      border-bottom: 1px solid #eee;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .dropdown-button {
      background-color: var(--primary-color);
      color: white;
      border: none;
      padding: 4px 10px;
      border-radius: 4px;
      font-size: 12px;
      cursor: pointer;
    }

    .dropdown-button:hover {
      background-color: var(--dark-orange);
    }

    /* Hamburger button */
    .hamburger {
      display: none;
      font-size: 28px;
      cursor: pointer;
      background: none;
      border: none;
      color: var(--primary-color);
    }

    /* Mobile menu from left with animation */
    .mobile-nav {
      display: flex;
      flex-direction: column;
      background-color: var(--light-bg);
      padding: 10px 15px;
      position: fixed;
      top: 90px; /* टॉप से शुरू */
      left: 0; /* बाएं से शुरू */
      height: 100%;
      width: 250px;
      transform: translateX(-100%); /* बाहर बाएं से शुरू */
      transition: transform 0.3s ease-in-out;
      box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
      z-index: 998;
      margin: 0; /* कोई margin नहीं */
      border-radius: 10px;
      margin-left: 2px;
    }

    /* जब active हो तो बाएं से स्लाइड इन */
    .mobile-nav.active {
      transform: translateX(0);
    }

    /* Overlay */
    .overlay {
      display: none;
      position: fixed;
      top: 0; 
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.3);
      z-index: 997;
    }
    .overlay.show {
      display: block;
    }

    /* मोबाइल लिंक स्टाइल */
    .mobile-nav a {
      text-decoration: none;
      padding: 10px 0;
      border-bottom: 1px solid #eee;
      color: var(--text-color);
      font-weight: 500;
    }
    .mobile-nav a:hover {
      color: var(--primary-color);
    }

    /* रेस्पॉन्सिव */
    @media (max-width: 768px) {
      .header-right {
        display: none;
      }
      nav {
        display: none;
        margin-top: 100px;
      }
      .hamburger {
        display: block;
      }
      .search-box input {
        min-width: 80px;
      }
      .logo-section {
        flex: 1;
      }
    }



/* baner/ */



    
    .banner {
      width: 100%;
      height: 450px;
      position: relative;
      overflow: hidden;
    }

    /* Desktop Image */
    .desktop-image {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Hide desktop image on mobile */
    @media (max-width: 768px) {
      .desktop-image {
        display: none;
      }
      .banner {
      width: 100%;
      height: 630px;
      position: relative;
      overflow: hidden;
    }
    }

    /* Mobile container */
    .mobile-images {
      display: none;
      height: 100%;
    }

    /* Show mobile images side by side */
    @media (max-width: 768px) {
      .mobile-images {
        display: flex;
        width: 100%;
      }

      .mobile-images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
 

    .tretet-container {
    width: 100%;
    background-color: #f5f5f5;
    /* padding: 80px 20px; */
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
  }

  .tretet-heading-center {
    text-align: center;
    font-size: 36px;
    color: #ff6f00;
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    font-weight: bold;
  }

  .tretet-subheading {
    text-align: center;
    font-size: 20px;
    color: #555;
    margin-bottom: 50px;
    font-weight: 500;
  }

  .tretet-flexbox {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
  }

  .tretet-left, .tretet-right {
    flex: 1 1 300px;
    box-sizing: border-box;
  }

  .tretet-left p {
    font-size: 19px;
    color: #333;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
  }

  .tretet-right h3 {
    font-size: 29px;
    color: #ff6f00;
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
  }

  .tretet-list {
    list-style: none;
    padding: 0;
    font-size: 16px;
    line-height: 2;
    color: #444;
  }

  .tretet-list li::before {
    content: "✔️ ";
    color: #ff6f00;
    margin-right: 6px;
  }

  @media (max-width: 768px) {
    .tretet-heading-center {
      font-size: 20px;
    }

    .tretet-subheading {
      font-size: 13px;
    }

    .tretet-flexbox {
      flex-direction: column;
      padding: 0 10px;
    }

    .tretet-right h3, .tretet-left p {
      text-align: center;
    }
  }





      .features-section {
      background-color: #ff7f50; /* orange */
      padding: 40px 20px;
       margin-top: 60px;
      margin-bottom: 20px;
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 30px;
      text-align: center;
      color: white;
    }

    .feature-box {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 20px;
    }

    .feature-box i {
      font-size: 40px;
      margin-bottom: 15px;
      color: white;
    }

    .feature-title {
      font-size: 20px;
      font-weight: bold;
      margin-bottom: 10px;
    }

    .feature-desc {
      font-size: 16px;
      line-height: 1.4;
      max-width: 250px;
    }

    @media (max-width: 500px) {
      .feature-title {
        font-size: 18px;
      }

      .feature-desc {
        font-size: 15px;
      }
    }





/* product  */




    
body{      background-color: #f7f7f7;
}
    .hhty-products-section {
      padding: 60px .20px;
      text-align: center;
      background-color: #f7f7f7;
    }

    .hhty-container {
      width: 80%;
      margin: 0 auto;
    }

    .hhty-section-title {
      font-size: 56px;
      color: #b94b02;
      margin-bottom: 5px;
    }

    .hhty-section-subtitle {
      color: #a04000;
      margin-bottom: 30px;
    }

    #searchInput {
      width: 80%;
      max-width: 400px;
      padding: 10px 15px;
      border: 2px solid #ffa94d;
      border-radius: 25px;
      margin-bottom: 30px;
      font-size: 16px;
      outline: none;
    }

    .hhty-products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .hhty-product-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.2s ease;
    }

    .hhty-product-card:hover {
      transform: translateY(-5px);
    }

    .hhty-product-card img {
      width: 100%;
      height: 230px;
      object-fit: cover;
      border-radius: 10px;
    }

    .hhty-product-card h3 {
      color: #e67e22;
      margin-top: 15px;
    }

    .hhty-product-card p {
      color: #6e2c00;
      font-size: 14px;
      margin: 10px 0;
    }

    .hhty-product-card button {
      background-color: #e67e22;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .hhty-product-card button:hover {
      background-color: #ca6f1e;
    }

    @media (max-width: 992px) {
      .hhty-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .hhty-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }


    
    .hhty-products-section {
      /* padding: 60px 20px; */
      text-align: center;
    }

    .hhty-container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
    }

    .hhty-section-title {
      font-size: 48px;
      color: #b94b02;
      margin-bottom: 10px;
    }

    .hhty-section-subtitle {
      color: #a04000;
      margin-bottom: 30px;
      font-size: 18px;
    }

    #searchInput {
      width: 100%;
      max-width: 400px;
      padding: 10px 15px;
      border: 2px solid #ffa94d;
      border-radius: 25px;
      margin-bottom: 30px;
      font-size: 16px;
      outline: none;
    }

    .hhty-products-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .hhty-product-card {
      background: white;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      padding: 20px;
      transition: transform 0.2s ease;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hhty-product-card:hover {
      transform: translateY(-5px);
    }

    .hhty-product-card img {
      width: 100%;
      height: auto;
      max-height: 230px;
      object-fit: cover;
      border-radius: 10px;
    }

    .hhty-product-card h3 {
      color: #e67e22;
      margin: 15px 0 10px;
      font-size: 18px;
    }

    .hhty-product-card p {
      color: #6e2c00;
      font-size: 14px;
      margin-bottom: 15px;
    }

    .hhty-product-card a {
      text-decoration: none;
    }

    .hhty-product-card button {
      background-color: #e67e22;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 25px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .hhty-product-card button:hover {
      background-color: #ca6f1e;
    }

    @media (max-width: 992px) {
      .hhty-products-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .hhty-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
      }

      .hhty-product-card {
        padding: 15px;
      }

      .hhty-section-title {
        font-size: 32px;
      }

      .hhty-section-subtitle {
        font-size: 16px;
      }

      #searchInput {
        font-size: 14px;
      }
    }















    /* Main container for reviews */
  .reviews-section {
    max-width: 100%;
    margin: 0 auto;
    margin-top: 35px;
    padding-top: 20px;
    padding: 60px;
  }

  /* Header styles */
  .header {
    text-align: center;
    margin-bottom: 20px;
  }

  .header h2 {
    font-size: 2em;
    margin: 0;
  }

  .header p {
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 8px;
  }

  /* Grid layout for reviews */
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
  }

  /* Individual review card */
  .review-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
  }

  /* Review header with image and title */
  .review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
  }

  /* Customer image styles */
  .review-header img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ddd;
  }

  /* Review title */
  .review-title {
    font-weight: 700;
    font-size: 1.1em;
  }

  /* Review text */
  .review-text {
    font-size: 1em;
    line-height: 1.4;
    color: #555;
    margin-bottom: 10px;
  }

  /* Star ratings */
  .stars {
    color: #f5c518;
    font-size: 1.2em;
  }

  /* Responsive images inside review cards */
  @media(max-width: 600px){
    .review-header img {
      width: 50px;
      height: 50px;
    }
  }

   /* Reset some default styles */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    /* Footer styling with orange theme */
    .footer {
      background-color: #FF7F50; /* Coral-orange hue */
      color: #fff;
      padding: 30px 20px;
     /* margin: -20PX; */
     margin-top: 50px;
      font-family: Arial, sans-serif;
    }

    .footer-container {
      display: flex;
      flex-wrap: wrap;
      max-width: 1200px;
      margin: auto;
      justify-content: space-around;
    }

    .footer-column {
      flex: 1 1 200px;
      margin: 15px;
    }

    .footer-column h3 {
      margin-bottom: 10px;
      font-size: 1.2em;
      border-bottom: 2px solid #fff;
      padding-bottom: 5px;
    }

    .footer-column p,
    .footer-column ul {
      font-size: 0.95em;
      line-height: 1.5;
    }

    .footer-column ul {
      list-style: none;
    }

    .footer-column ul li {
      margin-bottom: 8px;
    }

    .footer-column ul li a {
      color: #fff;
      text-decoration: none;
    }

    .footer-column ul li a:hover {
      text-decoration: underline;
    }

    .social-icons a {
      display: inline-block;
      margin-right: 10px;
      color: #fff;
      text-decoration: none;
      font-weight: bold;
    }

    .social-icons a:hover {
      text-decoration: underline;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 20px;
      font-size: 0.9em;
      border-top: 1px solid #fff;
      padding-top: 10px;
    }



    .whatsapp-chat {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 10px 15px;
    background-color: #25D366;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.3s;
    color: white;
    text-decoration: none;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.whatsapp-chat:hover {
    background-color: #1ebe5b;
    transform: scale(1.05);
}

.whatsapp-chat img {
    width: 25px;
    height: 25px;
    margin-right: 8px;
}




    /* Loading Overlay */
    #loading-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #fff8f1;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transition: opacity 0.6s ease, visibility 0.6s;
    }

    .diamond {
      width: 90px;
      height: 90px;
      background: url('https://img.icons8.com/ios-filled/100/FF6F00/diamond.png') no-repeat center;
      background-size: contain;
      animation: pulse-glow 1.8s infinite ease-in-out;
      filter: drop-shadow(0 0 12px #ff6f00b2);
    }

    .loading-text {
      color: #FF6F00;
      margin-top: 20px;
      font-size: 20px;
      font-weight: 500;
      letter-spacing: 2px;
      animation: flicker 2s infinite;
    }

    @keyframes pulse-glow {
      0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px #ff6f00b2);
      }
      50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 20px #ff6f00e8);
      }
    }

    @keyframes flicker {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.4; }
    }

    .hidden {
      opacity: 0;
      visibility: hidden;
    }

    /* Fold-in effect from left */
    #main-content {
      display: none;
      width: 100%;
      height: 100%;
      background: white;
      transform-origin: left;
      animation: foldOpenLeft 1s ease forwards;
      opacity: 0;
    }

    @keyframes foldOpenLeft {
      0% {
        transform: perspective(1000px) rotateY(-90deg);
        opacity: 0;
      }
      100% {
        transform: perspective(1000px) rotateY(0deg);
        opacity: 1;
      }
    }


