  * { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Montserrat', sans-serif;
      background: #fffaf8;
      color: #333;
      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;
    }

}

    header {
      background-image: url('Assets/gallery/contact.jpg');
      background-size:cover;
      background-attachment: fixed;
      background-position: center;
      height: 90vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding: 30px;
    }
  @media screen and (max-width: 768px) {
  .hero{
    background-position: center;
  }
 
}


    header h1 {
      position: relative;
      font-family: 'Playfair Display', serif;
      font-size: 4.2rem;
      background: #ffffff;
      background-size: 800% 800%;
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      text-shadow: 0 0 30px rgba(255,255,255,0.3);
    }

    .contact-section {
      padding: 100px 20px;
      max-width: 1200px;
      margin: auto;
    }
    .contact-section h2 {
      font-family: 'Playfair Display';
      font-size: 2.8rem;
      color: #c78b3f;
      text-align: center;
      margin-bottom: 60px;
      position: relative;
    }
    .contact-section h2::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: linear-gradient(to right, #c78b3f, #f39c12);
      margin: 10px auto 0;
      border-radius: 5px;
    }
    .contact-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 40px;
      justify-content: center;
      align-items: flex-start;
    }
    form {
      flex: 1 1 400px;
      background: linear-gradient(to bottom right, #fff, #f8ecf4);
      padding: 35px;
      border-radius: 20px;
      box-shadow: 0 15px 45px rgba(0,0,0,0.1);
      animation: slideInLeft 1.5s ease;
    }
    form input, form textarea {
      width: 100%;
      padding: 15px;
      margin-bottom: 20px;
      border: 1px solid #ccc;
      border-radius: 12px;
      font-size: 1rem;
      transition: all 0.3s ease;
    }
    form input:focus, form textarea:focus {
      border-color: #c78b3f;
      box-shadow: 0 0 10px rgba(138,43,226,0.2);
      outline: none;
    }
    form button {
      padding: 12px 30px;
      background: linear-gradient(to right, #ffb351, #f39c12);
      color: #fff;
      border: none;
      font-weight: bold;
      font-size: 1rem;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.3s ease;
    }
    form button:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(138, 43, 226, 0.4);
    }
    iframe {
      flex: 1 1 500px;
      border: none;
      height: 450px;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.1);
      animation: slideInRight 1.5s ease;
    }
    @keyframes slideInLeft {
      from { opacity: 0; transform: translateX(-50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    @keyframes slideInRight {
      from { opacity: 0; transform: translateX(50px); }
      to { opacity: 1; transform: translateX(0); }
    }
    footer {
      background:#4a025c;
      color: #fff;
      padding: 50px 20px;
      text-align: center;
    }
    footer .footer-content {
      max-width: 1000px;
      margin: auto;
    }
    footer h3 {
      font-family: 'Playfair Display';
      font-size: 1.8rem;
      margin-bottom: 15px;
    }
    footer p {
      margin-bottom: 10px;
      font-size: 1rem;
    }
    footer a {
      margin: 0 10px;
      color: #fff;
      text-decoration: none;
    }
    footer small {
      font-size: 0.9rem;
      color: #e0c4f3;
    }