* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
   
    }


body {
  font-family: 'Montserrat', sans-serif;
  background: #fff9f5;
  color: #333;
  line-height: 1.7;
  overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #000000;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
  position: sticky;
  top: 0;
}

.logo img {
  width: 180px;
}

/* Navigation Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: #e0c4f3;
}

/* Hamburger Menu Icon */
.menu-toggle {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    background-color: #000000;
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    display: none;
    text-align: center;
    padding-bottom: 10px;
  }

  .nav-links li {
    padding: 15px 0;
  }

  .nav-links.active {
    display: flex;
  }
    nav ul {
      list-style: none;
      display: flex;
      gap: 30px;
    }
    nav ul li a {
      text-decoration: none;
      font-weight: 600;
      color: #444;
      transition: color 0.3s;
    }
    nav ul li a:hover {
      color: #c78b3f;
    }

}


    body {
      font-family: 'Montserrat', sans-serif;
      background-color: #fffaf7;
      color: #333;
      scroll-behavior: smooth;
         overflow-x: hidden;
    }
    header {
      background-image: url(./Assets/gallery/ChatGPT\ Image\ Jul\ 9\,\ 2025\,\ 01_59_14\ PM.png);
    background-size: cover;
    background-repeat: no-repeat;
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      text-align: center;
      color:#704000;
      font-family: 'Playfair Display', serif;
      position: relative;
    }
    header h1 {
      font-size: 4rem;
      margin-bottom: 20px;
      animation: fadeInDown 1.5s ease;
    }
    header p {
      font-size: 1.3rem;
      max-width: 600px;
      margin-bottom: 30px;
      animation: fadeInUp 2s ease;
    }
    .hero-btn {
      padding: 14px 30px;
      background: #fff;
      color: #c78b3f;
      border: none;
      font-weight: bold;
      font-size: 1rem;
      border-radius: 30px;
      cursor: pointer;
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
      transition: all 0.3s ease;
    }
    .hero-btn:hover {
      background: #f8e1ff;
      transform: translateY(-3px);
    }

    @keyframes fadeInDown {
      from { transform: translateY(-40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }
    @keyframes fadeInUp {
      from { transform: translateY(40px); opacity: 0; }
      to { transform: translateY(0); opacity: 1; }
    }

    


    .categories {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 60px 20px;
  background-color: #FFF085;
}

.category-box {
  position: relative;
  width: 260px;
  height: 180px;
  border-radius: 15px;
  overflow: hidden;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  text-align: center;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.category-box:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

/* Specific backgrounds */


.category-box.cotton {
  background-image: url('Assets/gallery/cotton.jpg');
}

.category-box.designer {
  background-image: url('Assets/gallery/design.jpg');
}

.category-box.wedding {
  background-image: url('Assets/gallery/marriage.webp');
}

/* Optional: dark overlay for readability */
.category-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 0;
}

.category-box h3 {
  position: relative;
  z-index: 1;
}


.parallax-image-section {
  position: relative;
  height: 500px;
  background-image: url('Assets/gallery/pexels-manjeet-singh-yadav-462762-1162983.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* Ensure text is visible */
  overflow: hidden;
}

/* Black overlay */
.parallax-image-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.493); /* adjust opacity */
  z-index: 1;
}

/* Content inside the section */
.parallax-image-section > * {
  position: relative;
  z-index: 2;
}
    .features-section {
      background-color: #FFF085;
      padding: 100px 20px;
      text-align: center;
    }
    .features-section h2 {
      font-family: 'Playfair Display';
      font-size: 2.8rem;
      color: #c78b3f;
      margin-bottom: 60px;
      animation: fadeInDown 1s ease;
    }
    .features-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 30px;
      justify-content: center;
      max-width: 1100px;
      margin: auto;
    }
    .feature-box {
      background: white;
      padding: 30px;
      border-radius: 15px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      flex: 1 1 300px;
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      animation: fadeInUp 1.5s ease forwards;
    }
    .feature-box:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    .feature-box i {
      font-size: 2.5rem;
      color: #c78b3f;
      margin-bottom: 15px;
    }
    .feature-box h4 {
      font-size: 1.3rem;
      margin-bottom: 10px;
    }
    .feature-box p {
      font-size: 1rem;
      color: #555;
    }


.parallax-image-section {
  position: relative;
  height: 500px;
  background-image: url('Assets/gallery/pexels-manjeet-singh-yadav-462762-1162983.jpg');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white; /* Ensure text is visible */
  overflow: hidden;
}

/* Black overlay */
.parallax-image-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5); /* adjust opacity */
  z-index: 1;
}

/* Content inside the section */
.parallax-image-section > * {
  position: relative;
  z-index: 2;
}

    .parallax-image-section h2 {
      font-size: 3rem;
      font-family: 'Playfair Display';
      color: rgb(255, 255, 255);
      animation: zoomPulse 5s ease-in-out infinite, gradientText 10s ease infinite;
      background: linear-gradient(90deg, #885b00, #ffe3ac, #855800);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-size: 200% 200%;
      background-clip: text;

      
    }
   
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fadeInDown {
      from { opacity: 0; transform: translateY(-30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes zoomPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.1); }
    }
    @keyframes gradientText {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }


    .footer {
      background: rgb(29, 28, 28);
      color: white;
      text-align: center;
      padding: 40px 20px;
      font-size: 0.9rem;
    }
    .footer a {
      color: #fce4ff;
      text-decoration: none;
      margin: 0 10px;
    }
    .footer a:hover {
      text-decoration: underline;
    }