/* Base reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  width: 100%;
  overflow-x: hidden;
  font-family: 'Poppins', sans-serif;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 15px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: static; /* NOT fixed or sticky */
  border-bottom: 1px solid #eee;
  z-index: 1;
}

/* Logo */
.logo {
  font-size: 1.4rem;
  font-weight: bold;
  color: #b28b53;
  font-family: 'Playfair Display', serif;
  white-space: nowrap;
}

/* Nav links default (desktop) */
nav {
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 6px;
  transition: all 0.2s ease;
}
nav a:hover {
  background-color: #f5f5f5;
  color: #b28b53;
}

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Responsive - Mobile View */
@media (max-width: 850px) {
  .logo {
    font-size: 1rem;      /* Smaller font */
    max-width: 100%;
    text-align: center;
    white-space: normal;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    flex-direction: column;
    align-items: center;
    transition: max-height 0.3s ease;
    border-bottom: 1px solid #eee;
  }

  nav.active {
    max-height: 400px;
  }

  nav a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .hamburger {
    display: flex;
  }
}





@media (max-width: 300px) {
  header {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
  }

  .swiper {
    height: 250px;
  }

  section {
    padding: 1.5rem 1rem;
    margin: 1rem;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-us-grid {
    grid-template-columns: 1fr;
  }

  .faq-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .faq-avatar {
    width: 50px;
    height: 50px;
  }

  .faq-name {
    font-size: 14px;
  }

  .faq-question,
  .faq-answer {
    font-size: 14px;
  }

  .contact-buttons {
    flex-direction: column;
    gap: 10px;
  }

  footer p {
    font-size: 14px;
    line-height: 1.6;
  }

  .back-to-top {
    bottom: 70px; /* to avoid clash with WhatsApp button */
  }

  .trusted-banner h1 {
    font-size: 1.1rem;
    padding: 0 10px;
  }
}

        :root {
            --primary: #D4AF37;
            --dark: #333;
            --light: #f9f9f9;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            --whatsapp: #25D366;
            --whatsapp-hover: #128C7E;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Noto Serif', serif;
            background-color: #f9f4f0; /* Slightly warmer background */
            color: var(--dark);
            scroll-behavior: smooth;
            position: relative; /* For the floating WhatsApp button */
        }

        header {
            background-color: white;
            box-shadow: var(--shadow);
            padding: 1rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo {
            font-family: 'Playfair Display', serif;
            font-size: 1.8rem;
            color: var(--primary);
        }

        

        .swiper {
            width: 100%;
            height: 500px;
        }

        .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        section {
            padding: 3rem 2rem;
            max-width: 1200px;
            margin: 2rem auto; /* Added top margin for better spacing */
            background-color: white;
            border-radius: 12px;
            box-shadow: var(--shadow);
            animation: fadeIn 0.8s ease-in;
        }

        h2 {
            font-family: 'Playfair Display', serif;
            color: var(--primary);
            text-align: center;
            margin-bottom: 1.5rem;
        }

        .map-container iframe {
            width: 100%;
            height: 300px;
            border: none;
            border-radius: 8px;
        }

        .collections-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 1.5rem;
        }

        .collection-item {
            transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out; /* Hover effect */
        }

        .collection-item:hover {
            transform: scale(1.03);
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
        }

        .collection-item img {
            width: 100%;
            border-radius: 6px;
            margin-bottom: 0.5rem;
        }

        .contact-form, .contact-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .contact-form input, .contact-form textarea {
            padding: 0.8rem;
            border-radius: 6px;
            border: 1px solid #ccc;
        }

        .contact-button {
            background-color: var(--primary);
            border: none;
            color: white;
            padding: 0.8rem;
            border-radius: 6px;
            font-weight: bold;
            cursor: pointer;
            transition: background-color 0.3s ease;
            text-align: center;
            text-decoration: none;
        }

        .contact-button:hover {
            background-color: #c49b31;
        }

        footer {
            text-align: center;
            background-color: var(--dark);
            color: white;
            padding: 2rem;
            margin-top: 2rem;
        }

        footer a {
            color: var(--primary);
            text-decoration: underline;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Floating WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background-color: var(--whatsapp); /* Using the defined color */
            color: white;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            text-align: center;
            line-height: 60px;
            font-size: 2rem;
            box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); /* More prominent shadow */
            z-index: 1001;
            /* Animation Options - Choose one or combine */
            animation: pulse-premium 1.5s infinite alternate; /* New premium pulse */
            /* animation: bounce-in-out 0.8s infinite alternate; /* Another subtle animation */
        }

        .whatsapp-float i {
            line-height: inherit; /* Vertically center the icon */
        }

        .whatsapp-float:hover {
            background-color: var(--whatsapp-hover); /* Using the defined hover color */
        }

        @keyframes pulse {
            from {
                transform: scale(1);
            }
            to {
                transform: scale(1.1);
            }
        }

        @keyframes pulse-premium {
            from {
                transform: scale(1);
                box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
            }
            to {
                transform: scale(1.1) translateY(-5px); /* Slight vertical lift */
                box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
            }
        }

        @keyframes bounce-in-out {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        /* Why Choose Us Section */
        .why-choose-us-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .why-choose-item {
            padding: 1.5rem;
            border-radius: 8px;
            border: 1px solid #eee;
            background-color: #fefefe;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        .why-choose-item h3 {
            color: var(--primary);
            margin-bottom: 0.5rem;
            font-family: 'Playfair Display', serif;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 20px;
            left: 20px;
            background-color: var(--dark);
            color: white;
            border: none;
            border-radius: 5px;
            padding: 0.7rem 1rem;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
            z-index: 1001;
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
        }
        
.contact-form {
  margin-bottom: 20px; /* for space before "Call Now" button */
}
.contact-form button {
  background-color: #d4af37; /* Golden color */
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  margin-top: 10px;
}

.contact-form button:hover {
  background-color: #b9962e; /* Darker golden on hover */
  transform: scale(1.05);
}
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  margin-top: 20px;
}

.styled-button {
  background-color: #d4af37;
  color: white;
  border: none;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  text-decoration: none;
  text-align: center;
}

.styled-button:hover {
  background-color: #b9962e;
  transform: scale(1.05);
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-size: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  background-color: #1ebf59;
}
.contact-form textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical; /* Sirf upar neeche badhega */
  padding: 10px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ccc;
  box-sizing: border-box;
  font-family: inherit;
}
.trusted-banner {
  background-color: #fef3c7; /* Light gold background */
  color: #b45309; /* Dark gold text */
  text-align: center;
  padding: 20px 10px;
  font-family: 'Georgia', serif;
  font-size: 1.4rem;
  font-weight: bold;
  border-top: 2px solid #facc15;
  border-bottom: 2px solid #facc15;
}

.bis-certified {
  display: flex;
  align-items: center;
   margin-top: 30px;
  gap: 8px; /* text aur logo ke beech ka gap */
  font-weight: 600;
  font-size: 20px;
  color: #222;
}

.bis-icon {
  width: 64px;       /* Approx 4×4 cm (depends on screen size) */
  height: 64px;
  object-fit: contain;
  filter: drop-shadow(0 0 5px gold);
  animation: shine 2s infinite ease-in-out;
}

@keyframes shine {
  0% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
  100% { opacity: 0.8; transform: scale(1); }
}
 

    h2 {
      text-align: center;
      font-size: 32px;
      margin-bottom: 40px;
      color: #b88a44;
    }

    .faq-container {
      max-width: 900px;
      margin: auto;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .faq-item {
      display: flex;
      gap: 20px;
      background: #ffffff;
      border-left: 6px solid #b88a44;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
      align-items: flex-start;
    }

    .faq-avatar {
      width: 60px;
      height: 60px;
      border-radius: 50%;
      overflow: hidden;
      flex-shrink: 0;
    }

    .faq-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .faq-content {
      flex: 1;
    }

    .faq-name {
      font-weight: 600;
      margin-bottom: 6px;
      color: #b88a44;
      font-size: 15px;
    }

    .faq-question {
      font-size: 16px;
      color: #333;
      margin-bottom: 4px;
      font-style: italic;
    }

    .faq-answer {
      font-size: 15px;
      color: #555;
    }

    .show-more-btn {
      display: block;
      margin: 30px auto 0;
      padding: 12px 28px;
      background-color: #b88a44;
      color: white;
      border: none;
      border-radius: 30px;
      font-size: 16px;
      cursor: pointer;
      transition: background 0.3s ease;
    }

    .show-more-btn:hover {
      background-color: #a07530;
    }
/* PRELOADER OVERLAY */
#preloader {
  position: fixed;
  inset: 0;
  backdrop-filter: blur(15px); /* Blur background */
  background: rgba(255, 255, 255, 0.05); /* Light transparent glass effect */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}

/* LOGO STYLING */
.logo-loader {
  width: 140px;
  animation: glow 1.5s infinite ease-in-out;
  filter: drop-shadow(0 0 15px gold);
}

@keyframes glow {
  0%   { transform: scale(1); opacity: 0.6; }
  50%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1); opacity: 0.6; }
}

/* MAIN CONTENT HIDDEN INITIALLY */
#main-content {
  visibility: hidden;
}
.logo-loader {
  width: 30vw; /* viewport width */
  max-width: 150px;
}
@media (max-width: 768px) {
  .logo-loader {
    width: 40vw;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1rem;
    padding: 0 1rem;
  }
}
button, .back-to-top {
  padding: 12px 16px;
  font-size: 1rem;
  border-radius: 8px;
}
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.collection-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;

  margin-top: 10px;  /* adjust upward */
  margin-bottom: 600px; /* enough space below */
  transform: translateY(-70px); /* lift upward slightly */
}

.collection-buttons .blink-button {
  margin: 0 30px 30px 30px; /* ⬅️➡️ horizontal gap = 40px total, bottom gap */
}



.collection-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
 
  margin-top: 10px;  /* adjust upward */
  margin-bottom: 600px; /* enough space below */
  transform: translateY(-70px); /* lift upward slightly */
}


.blink-button {
  background: linear-gradient(to right, #ffe135, #ffd700);
  border: none;
  border-radius: 30px;
  padding: 12px 22px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  animation: blink 1.5s infinite;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blink-button:hover {
  transform: translateY(-2px);
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}



.collection-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
  margin-bottom: 60px;
}

.blink-button {
  background: linear-gradient(to right, #ffe135, #ffd700);
  border: none;
  border-radius: 30px;
  padding: 12px 20px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  animation: blink 1.5s infinite;
  cursor: pointer;
  transition: transform 0.2s ease-in-out;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.blink-button:hover {
  transform: translateY(-2px);
}

@keyframes blink {
  0% { opacity: 1; }
  50% { opacity: 0.6; }
  100% { opacity: 1; }
}

.whatsapp-float {
  position: fixed;
  bottom: 100px; /* 👈 contact section ke thoda upar (adjustable) */
  right: 20px;
  z-index: 9999;
  background-color: #25D366;
  color: white;
  border-radius: 50%;
  padding: 15px;
  font-size: 24px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}


/* 🌗 Dark Mode Enabled Styles */
body.dark-mode {
  background-color: #121212;
  color: #ffffff;
}

/* Sections ka background fix */
body.dark-mode section,
body.dark-mode .collection-item,
body.dark-mode .bis-certified,
body.dark-mode .blink-button {
  background-color: #1a1a1a !important;
  color: #fff !important;
}

/* Contact section fix */
body.dark-mode #contact {
  background-color: #1a1a1a !important;
  color: #fff !important;
}

/* Input fields and textareas fix */
body.dark-mode input,
body.dark-mode textarea {
  background-color: #333 !important;
  color: #fff !important;
  border: 1px solid #555 !important;
}

/* WhatsApp chat menu dark */
body.dark-mode .chat-popup-menu {
  background-color: #222 !important;
  color: #fff !important;
  border: 1px solid #444;
}

/* Dark Mode Toggle Button (Fixed position - screen ke corner par) */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 9999;
  background-color: #333;
  color: #fff;
  padding: 10px 15px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s ease;
}

.dark-mode-toggle:hover {
  background-color: #555;
}

/* Smooth transition for luxury feel */
body,
section,
button,
.collection-item,
#contact,
input,
textarea {
  transition: background-color 0.5s ease, color 0.5s ease;
}
/* Loader CSS */
#loader {
  position: fixed;
  z-index: 9999;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.1); /* transparent blurred bg */
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

#loader .logo {
  width: 150px;
  animation: fadeInUp 1.5s ease-out forwards;
}

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

.sparkles::after {
  content: "✨";
  font-size: 2rem;
  animation: sparkle 1s infinite ease-in-out;
  margin-top: 20px;
}

@keyframes sparkle {
  0%, 100% { opacity: 0.2; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.3) rotate(10deg); }
}

/* Hide loader after load */
body.loaded #loader {
  opacity: 0;
  visibility: hidden;
}
.logo {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeLogo 1.6s ease-out forwards;
  animation-delay: 4.2s; /* wait till preloader ends */
  font-size: 2.4rem;
  font-weight: bold;
  color: #bfa76f;
  text-align: center;
  font-family: 'Cinzel', serif;
  letter-spacing: 1px;
text-shadow: 2px 2px 5px rgba(191, 167, 111, 0.3);
}

@keyframes fadeLogo {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
