@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Playfair+Display&family=Great+Vibes&family=Montserrat:wght@300;400&display=swap');
    
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: 'Montserrat', sans-serif;
      font-weight: italic;
      color: #7d6f3c;
      line-height: 1.6;
    }
    
    .header {
      background-color: rgba(224, 224, 224, 0.9);
      padding: 1px 0;
      position: fixed;
      width: 100%;
      z-index: 1000;
      border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
    
    .nav-container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .logo {
      font-family: 'Great Vibes', cursive;
      font-size: 28px;
      color: #5c5438;
    }

    .logo img {
      height: 60px;
      width: auto;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
    }
    
    .nav-links li {
      margin-left: 30px;
    }
    
    .nav-links a {
      text-decoration: none;
      color: #5c5c3b;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 1px;
      transition: color 0.3s;
    }
    
    .nav-links a:hover {
      color: #5c5b38;
    }
    
    /* .hero {
      height: 100vh;
      background-image: url('background.jpg');
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
    }
    
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: rgb(238, 236, 232);
      max-width: 800px;
      padding: 0 20px;
    } */
    
    .hero {
      position: relative;
      height: 100vh;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .hero-slideshow {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
    }
    
    .hero-slideshow .slide {
      position: absolute;
      width: 100%;
      height: 100%;
      background-size: cover;
      background-position: center;
      opacity: 0;
      transition: opacity 1s ease-in-out;
      z-index: 0;
    }
    
    .hero-slideshow .slide.active {
      opacity: 1;
      z-index: 1;
    }
    
    .hero-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.4);
      z-index: 2;
    }
    
    .hero-content {
      position: relative;
      z-index: 3;
      text-align: center;
      color: rgb(238, 236, 232);
      max-width: 800px;
      padding: 0 20px;
    }

    .hero-content h1 {
      font-family: 'Times New Roman', serif;
      font-size: 39px;
      margin-bottom: 20px;
      letter-spacing: 2px;
    }
    
    .hero-content p {
      font-size: 27px;
      font-style: italic;
      font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
      margin-bottom: 30px;
    }
    
    .btn {
      display: inline-block;
      padding: 12px 30px;
      background-color: #5c5738;
      color: white;
      text-decoration: none;
      font-size: 14px;
      letter-spacing: 1px;
      transition: background-color 0.3s;
      border: none;
      cursor: pointer;
    }
    
    .btn:hover {
      background-color: #4a4830;
    }
    
    .intro-section {
      padding: 80px 0;
      text-align: center;
      background-color: #5c5738;
      color: #fff;
    }
    
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
    }
    
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: 36px;
      margin-bottom: 30px;
      letter-spacing: 5px;
    }
    
    .script-title {
      font-family: 'Great Vibes', cursive;
      font-size: 42px;
      font-weight: normal;
      margin-bottom: 15px;
    }
    
    .intro-content {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .intro-content p {
      margin-bottom: 20px;
      font-size: 16px;
      line-height: 1.8;
    }
    
    .services-section {
      padding: 80px 0;
      background-color: #f9f9f9;
    }
    
    .services-row {
      display: flex;
      justify-content: center;
      gap: 80px; 
      margin-bottom: 60px; 
      flex-wrap: wrap;
    }
    
    .service-card {
      text-align: center;
      max-width: 350px; 
      padding: 0px;     
    }
    
    .service-image {
      width: 320px; 
      height: 240px; 
      object-fit: cover;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
    }
    
    
    .service-image:hover {
      transform: scale(1.05);
    }
    
    
    .service-name {
      font-family: 'Times New Roman', Times, serif;
      font-style: italic;
      font-weight: 600;
      font-size: 25px;
      margin: 15px 0;
    }
  
    /* .service-image {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 5px;
    } */

    /* Custom services row layout */
    /* .custom-services-layout {
      display: flex;
      flex-direction: column;
      gap: 40px;
      align-items: center;
    }

    .services-row {
      display: flex;
      justify-content: center;
      gap: 70px;
      flex-wrap: wrap;
    } */
    
    .packages-section {
      padding: 80px 0;
    }
    
    .packages-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
    }
    
    .package-card {
      background-color: #5c5c39;
      color: white;
      padding: 40px;
      text-align: center;
    }
    
    .package-title {
      font-family: Verdana, Geneva, Tahoma, sans-serif;
      font-size: 25px;
      font-style: italic;
      font-weight: 500;
      margin-bottom: 10px;
    }
    
    .package-price {
      font-family:'times new roman','Times New Roman', Times, serif;
      font-size: 26px;
      font-weight: bold;
      margin-bottom: 20px;
    }
    
    .package-features {
      list-style: none;
      margin-bottom: 30px;
      text-align: left;
    }
    
    .package-features li {
      margin-bottom: 10px;
      padding-left: 20px;
      position: relative;
    }
    
    .package-features li:before {
      content: "•";
      position: absolute;
      left: 0;
    }
    
    .gallery-section {
      padding: 80px 0;
      background-color: #f9f9f9;
    }
    
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      margin-top: 50px;
    }
    
    .gallery-item {
      width: 300px;         /* Fixed width */
      height: 200px;        /* Optional: adjust based on aspect ratio */
      background-color: #000; /* Optional: to fill background if video doesn't fill box */
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .gallery-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .gallery_video {
      width: 100%;
      height: 100%;
      object-fit: contain; /* Ensures full video is visible without cropping */
      display: block;
    }
    
    .gallery-image:hover {
      transform: scale(1.05);
    }

    /* Make gallery scrollable */
    .scrollable-gallery {
      max-height: 500px; /* or any desired fixed height */
      overflow-y: auto;
      padding-right: 10px; /* space for scrollbar */
    }

    /* Optional: Customize scrollbar for Webkit browsers */
    .scrollable-gallery::-webkit-scrollbar {
      width: 8px;
    }

    .scrollable-gallery::-webkit-scrollbar-track {
      background: #f1f1f1;
    }

    .scrollable-gallery::-webkit-scrollbar-thumb {
      background-color: #c2b8a3;
      border-radius: 6px;
    }

    
    .testimonials-section {
      padding: 80px 0;
    }
    
    .testimonials-container {
      max-width: 800px;
      margin: 0 auto;
    }
    
    .testimonial {
      text-align: center;
      padding: 30px;
    }
    
    .testimonial-text {
      font-style: italic;
      font-size: 18px;
      margin-bottom: 20px;
    }
    
    .testimonial-author {
      font-weight: bold;
    }
    
    .contact-section {
      padding: 80px 0;
      background-color: #5c5738;
      color: white;
      text-align: center;
    }
    
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
      margin-top: 50px;
      text-align: left;
    }
    
    .contact-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      margin-bottom: 20px;
    }
    
    .contact-info p {
      margin-bottom: 10px;
    }
    
    .contact-form {
      display: grid;
      gap: 15px;
    }
    
    .form-input,
    .form-textarea {
      padding: 12px;
      border: none;
    }
    
    .social-icons {
      display: flex;
      gap: 15px;
      margin-top: 20px;
    }
    
    .social-icons a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 40px;
      height: 40px;
      background-color: white;
      color: #5c5738;
      border-radius: 50%;
      transition: background-color 0.3s;
      text-decoration: none;
    }
    
    .social-icons a:hover {
      background-color: #f0f0f0;
    }

    .social-icons a img {
      border-radius: 8px;
      transition: transform 0.3s ease;
    }
    
    .social-icons a img:hover {
      transform: scale(1.1);
    }
    
    
    .footer {
      background-color: #333;
      color: white;
      text-align: center;
      padding: 30px 0;
    }
    
    .footer-logo {
      font-family: 'Great Vibes', cursive;
      font-size: 28px;
      margin-bottom: 20px;
    }
    
    .footer-links {
      display: flex;
      justify-content: center;
      list-style: none;
      margin-bottom: 20px;
    }
    
    .footer-links li {
      margin: 0 15px;
    }
    
    .footer-links a {
      color: white;
      text-decoration: none;
    }
    
    .payment-methods {
      margin-bottom: 20px;
    }
    
    .payment-icon {
      margin: 0 5px;
      width: 40px;
      height: auto;
    }
    
    .copyright {
      font-size: 14px;
    }
    /* Global styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9f9f9;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header and nav */
.header {
  background: #d1cbcb;
  color: white;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.nav {
  margin-top: 10px;
}

.nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

.nav a:hover {
  text-decoration: underline;
}

/* Sections */
.section {
  background: white;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Footer */
.footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 40px;
}

