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

    body,html {
      font-family: 'Poppins', sans-serif;
      background: #fcf8f5;
      color: #333;
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* --------- HEADER TOP BAR --------- */
    .top-bar {
      background: #6b2334;
      display: flex;
      gap:8px;
      align-items: end;
      justify-content: space-between;
      padding: 12px 6%;
      flex-wrap: nowrap;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      z-index: 1000;     /* make sure it stays above other elements */
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    /* Logo */
    .logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: #fff;
      min-width: 70px;
      z-index: 11;
    }
    
    .logo-img {
      width: 45px;
      height: 45px;
      background: linear-gradient(135deg, #d4a017 0%, #f4d27e 100%);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 5px;
      font-weight: bold;
      font-size: 18px;
      color: #6b2334;
    }
    
    .logo span {
      font-size: 18px;
      font-weight: bold;
      letter-spacing: 1px;
      font-family: 'Playfair Display', serif;
    }
    
    .logo small {
      font-size: 11px;
      opacity: 0.9;
    }

    /* Search */
    .search-box {
      flex: 1;
      margin: 0 40px;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, 0.4);
      max-width: 500px;
      transition: all 0.3s ease;
    }
    
    .search-box:focus-within {
      border-bottom: 1px solid #d4a017;
      transform: scale(1.02);
    }
    
    .search-box input {
      flex: 1;
      background: transparent;
      border: none;
      outline: none;
      color: #fff;
      padding: 8px;
      font-size: 14px;
    }
    
    .search-box input::placeholder {
      color: rgba(255, 255, 255, 0.7);
    }
    
    .search-box i {
      color: #fff;
      font-size: 16px;
      cursor: pointer;
      margin-left: -25px;
      transition: color 0.3s;
    }
    
    .search-box:hover i {
      color: #d4a017;
    }

    /* Gold Button */
    .gold-btn {
      background: #d4a017;
      color: #fff;
      border: none;
      padding: 10px 28px;
      cursor: pointer;
      font-weight: 600;
      font-size: 14px;
      border-radius: 4px;
      white-space: nowrap;
      transition: all 0.3s ease;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .gold-btn:hover {
      background: #e5b126;
      transform: translateY(-2px);
      box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    }
    
    .gold-btn:active {
      transform: translateY(0);
    }

    /* --------- NAV --------- */
    /* ===== Navigation Bar ===== */
/* ===== Navigation Bar ===== */
nav {
  background: #fff;
  border-bottom: 1px solid #eee;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 100px;   /* adjust if top-bar exists */
  left: 0;
  width: 100%;
  z-index: 999;
}

/* ===== Navigation Links ===== */
nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  transform-origin: top;
  margin: 0;
  padding: 0;
}

nav ul li {
  margin: 0 18px;
  position: relative;
}

nav ul li a {
  text-decoration: none;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 21px;
  position: relative;
  padding: 18px 0;
  display: inline-block;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #6b2334;
}

nav ul li a.active {
  color: #6b2334;
  font-weight: 500;
}

nav ul li a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #d4a017, #6b2334);
  border-radius: 2px;
  animation: lineGrow 0.4s ease-out;
}

/* ===== Dropdown Container ===== */
nav ul li.dropdown {
  position: relative;
  
}

nav ul li .dropdown-container {
  position: fixed;        /* instead of absolute */
  top: 157px;             /* same as your nav height / offset */
  left: 0;                /* stick to very left */
  width: 100vw; 
  background: #fff;
  border-radius: 0;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  padding: 30px 60px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 0.3s ease;
  z-index: 9999;

}



/* Inner dropdown list */
nav ul li .dropdown-container ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav ul li .dropdown-container ul li {
  margin: 0;
}

nav ul li .dropdown-container ul li a {
  display: block;
  font-size: 14px;
  color: #333;
  padding: 8px 12px;
  border-radius: 5px;
  transition: 0.3s;
}

nav ul li .dropdown-container ul li a:hover {
  background: linear-gradient(to right, #d4a017, #6b2334);
  color: #fff;
}

/* Show dropdown on hover */
nav ul li.dropdown:hover .dropdown-container {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

@media (max-width: 992px) {
  nav ul li .dropdown-container {
    display: none !important; /* force override */
    background-color: #d4a017;
  }
}










    @keyframes lineGrow {
      from { width: 0; }
      to { width: 100%; }
    }

    /* Toggle Button */
    .menu-toggle {
      display: none;
      font-size: 26px;
      cursor: pointer;
      color: white;
      margin-left: 15px;
      background: #d4a017;
      width: 40px;
      height: 40px;

      border-radius: 50%;
      justify-content: center;
      align-items: center;
      transition: all 0.3s ease;
      z-index: 12;
    }
    
    .menu-toggle:hover {
      transform: rotate(90deg);
      background: #e5b126;
    }
    
    .menu-toggle i {
      transition: transform 0.4s ease;
    }

    /* Gold Rate Dropdown */
    .gold-rate-dropdown {
      display: none;
      position: absolute;
      top: 100%;
      right: 6%;
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
      z-index: 100;
      min-width: 250px;
      transform-origin: top right;
      animation: dropdownAppear 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) forwards;
    }
    
    @keyframes dropdownAppear {
      0% {
        opacity: 0;
        transform: scale(0.8) translateY(-10px);
      }
      100% {
        opacity: 1;
        transform: scale(1) translateY(0);
      }
    }
    
    .gold-rate-dropdown.show {
      display: block;
    }
    
    .gold-rate-dropdown h3 {
      color: #6b2334;
      margin-bottom: 15px;
      font-size: 18px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }
    
    .rate-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 12px;
    }
    
    .rate-type {
      font-weight: 500;
    }
    
    .rate-value {
      color: #d4a017;
      font-weight: 600;
    }

    /* --------- RESPONSIVE --------- */
    @media (max-width: 992px) {
      .top-bar {
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 12px 5%;

      }
      
      .search-box {
        order: 25;
        margin: 15px 0 10px;
        width: 100%;
        max-width: none;
      }
      nav {
        background: #fff;
        /* border-bottom: 1px solid #eee; */
        box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
        position: fixed;   /* fixed at top */
        top: 99px;         /* push below .top-bar (assumed height 60px) */
        left: 0;
        width: 100%;
        z-index: 999;
    }
      
      .gold-btn {
        order: 2;
      }
      
      .menu-toggle {
        display: flex;
        order: 4;
        margin-top: 0;
      }
      
nav ul {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 70px;               /* adjust based on your navbar height */
  left: -300px;            /* hide off screen */
  width: 300px;            /* sidebar width */
  height: calc(100vh - 60px); /* full screen minus navbar */
  background: #ffffff;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1); /* subtle shadow */
  pointer-events: none;    /* prevent clicks when hidden */
  transition: left 0.4s ease-in-out, opacity 0.3s ease-in-out;
  z-index: 1000;
}

nav ul.show {
  left: 0;                /* slide in */
  pointer-events: auto;
}


      
      nav ul li {
        margin: 12px 0;
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.4s ease;
      }
      
      nav ul.show li {
        opacity: 1;
        transform: translateY(0);
      }
      
      nav ul li:nth-child(1) { transition-delay: 0.1s; }
      nav ul li:nth-child(2) { transition-delay: 0.15s; }
      nav ul li:nth-child(3) { transition-delay: 0.2s; }
      nav ul li:nth-child(4) { transition-delay: 0.25s; }
      nav ul li:nth-child(5) { transition-delay: 0.3s; }
      nav ul li:nth-child(6) { transition-delay: 0.35s; }
      nav ul li:nth-child(7) { transition-delay: 0.4s; }
      nav ul li:nth-child(8) { transition-delay: 0.45s; }
      
      nav ul li a {
        padding: 12px 0;
        width: 100%;
        display: block;
      }
      
      .gold-rate-dropdown {
        right: 5%;
        width: 90%;
        left: 5%;
      }
    }

    @media (max-width: 430px) {
      .logo span {
        font-size: 16px;
      }
      
      .logo small {
        font-size: 10px;
      }
      
      .gold-btn {
        padding: 8px 12px;
        font-size: 13px;
      }
      
      .menu-toggle {
        width: 36px;
        height: 36px;
        font-size: 22px;
      }
      nav{
        top: 80px;
      }
    }

    /* Content for demo */
    .content {
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      text-align: center;
    }
    
    .content h1 {
      color: #6b2334;
      margin-bottom: 20px;
      font-family: 'Playfair Display', serif;
    }
    
    .content p {
      color: #666;
      margin-bottom: 30px;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
    }
    
    .jewelry-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 25px;
      margin-top: 40px;
    }
    
    .jewelry-item {
      background: white;
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s ease;
    }
    
    .jewelry-item:hover {
      transform: translateY(-5px);
    }
    
    .jewelry-img {
      height: 200px;
      background: linear-gradient(45deg, #f4d27e, #d4a017);
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 40px;
    }
    
    .jewelry-info {
      padding: 15px;
    }
    
    .jewelry-info h3 {
      color: #6b2334;
      margin-bottom: 10px;
    }
    
    .jewelry-info p {
      color: #d4a017;
      font-weight: 600;
      margin-bottom: 0;
    }


    .whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 20px;   /* distance from bottom */
  right: 40px;    /* distance from right */
  background-color: #00000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(255, 255, 255, 0);
  z-index: 1000;
}

.whatsapp-float img {
  width: 35px;
  height: 35px;
}




    footer {
      background: #6a1d2f; /* maroon shade */
      color: #fff;
      padding: 40px 20px 20px;
    }

    .footer-container {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
      gap: 40px;
      max-width: 1200px;
      margin: auto;
    }

    .footer-logo img {
      width: 80px;
      margin-bottom: 10px;
    }

    .footer-logo p {
      font-size: 14px;
      line-height: 1.6;
      color: #ddd;
    }

    .footer-column h4 {
      margin-bottom: 15px;
      font-size: 15px;
      font-weight: bold;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      text-decoration: none;
      color: #ddd;
      font-size: 14px;
      transition: color 0.3s;
    }

    .footer-column ul li a:hover {
      color: #fff;
    }

    .social-icons li {
      display: block;
      align-items: center;
      gap: 8px;

    }

    .app-buttons img {
      width: 140px;
      margin-bottom: 10px;
      display: block;
      margin: auto;
    }

    /* Bottom */
    .footer-bottom {
      text-align: center;
      border-top: 1px solid rgba(255,255,255,0.2);
      margin-top: 30px;
      padding-top: 15px;
      font-size: 13px;
      color: #FFFFFF;
    }

    /* Responsive */
    @media (max-width: 992px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        text-align: center;
      }
    }

    @media (max-width: 600px) {
      .footer-container {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      .search-box { display: none; }
    }