@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Playfair+Display&display=swap');

#page-loader {
  position: fixed;
  z-index: 9999;
  background: linear-gradient(135deg, #0e0e0e, #1b1b1b);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: 'Cinzel', serif;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  overflow: hidden;
  color: #fff;
}

.ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 8px solid transparent;
  border-top: 8px solid gold;
  border-left: 8px solid #d4af37;
  animation: spin 1.8s linear infinite;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 60px rgba(255, 215, 0, 0.2);
  margin-bottom: 30px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.name {
  font-size: 2.8rem;
  color: gold;
  letter-spacing: 2px;
  animation: shimmer 2s ease-in-out infinite alternate;
  text-align: center;
}

@keyframes shimmer {
  from { text-shadow: 0 0 10px #ffd700, 0 0 20px gold; }
  to   { text-shadow: 0 0 20px #fff, 0 0 40px gold, 0 0 50px #ffcc00; }
}

.message {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: #cccccc;
  margin-top: 10px;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}

@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

.bokeh {
  position: absolute;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.circle {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,215,0,0.3) 0%, rgba(255,215,0,0) 80%);
  animation: floatUp 10s linear infinite;
  opacity: 0.4;
}

@keyframes floatUp {
  from { transform: translateY(100vh); }
  to { transform: translateY(-10vh); }
}

.circle:nth-child(1) { left: 10%; width: 80px; height: 80px; animation-delay: 0s; }
.circle:nth-child(2) { left: 25%; width: 40px; height: 40px; animation-delay: 2s; }
.circle:nth-child(3) { left: 60%; width: 60px; height: 60px; animation-delay: 4s; }
.circle:nth-child(4) { left: 80%; width: 30px; height: 30px; animation-delay: 1s; }
.circle:nth-child(5) { left: 50%; width: 50px; height: 50px; animation-delay: 3s; }

@media screen and (max-width: 600px) {
  .ring {
    width: 90px;
    height: 90px;
  }

  .name {
    font-size: 2rem;
  }

  .message {
    font-size: 1rem;
  }
}


/* Base Styling */
body, html {
  margin: 0;
  padding: 0;
  font-family: 'Cinzel', serif;
  scroll-behavior: smooth;
  background-color: #000;
  color: white;
}

body::selection {
  background: #000;
  color: #ffffff;
}

/* Navbar */
.navbar {
  background-color: transparent;
  padding: 1rem 2rem;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 9999;
  transition: transform 0.4s ease-in-out, background-color 0.3s ease-in-out;
}

.navbar.scrolled {
  background-color: black;
  box-shadow: 0 2px 10px rgba(0,0,0,0.7);
}

/* Brand name */
.navbar .brand-name {
  font-size: 2.2rem;
  color: #e5b415;
  letter-spacing: 1.3px;
  transition: color 0.3s ease;
  white-space: nowrap;
  font-weight: 500;
  font-family: 'Italianno', cursive;
}

.navbar.scrolled .brand-name {
  color: #d4af37;
}

/* Logo */
.logo {
  height: 50px;
  margin-top: -10px;
  width: auto;
  transition: height 0.3s ease;
}

/* NavLinks - Desktop */
/* Hide Navbar on scroll down */
.navbar.hide-navbar {
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}

.navbar-nav .nav-link {
  color: white;
  margin: 0 4px;
  padding: 0.4rem 0.6rem;
  border-radius: 6px;
  position: relative;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  font-family: sans-serif;
}


.navbar-nav .nav-link:hover {
  color: white;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.7);
  background-color: rgba(255,255,255,0.05);
  text-decoration: none;
}


.navbar-nav .nav-link:hover::after {
  left: 0;
  width: 100%;
}

/* Active navlink style */
.navbar-nav .nav-link.active {
  color: #d4af37;
  box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.8);
  background-color: rgba(212, 175, 55, 0.15);
}

/* Active hover stays glowing */
.navbar-nav .nav-link.active:hover {
  box-shadow: 0 0 15px 5px rgba(212, 175, 55, 1);
  background-color: rgba(212, 175, 55, 0.3);
}

/* Mobile Nav Styling */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 50vw;
  max-width: 320px;
  height: 100vh;
  background-color: black;
  padding: 3rem 2rem 2rem 2rem;
  transition: left 0.4s ease-in-out;
  z-index: 10500;
  overflow-y: auto;
}

.mobile-nav.open {
  left: 0;
}

.close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2.4rem;
  position: absolute;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
}

/* Mobile Nav Links */
.mobile-nav .nav-link {
  font-size: 20px;
  color: #d4af37;
  margin-bottom: 1.5rem;
  font-weight: 600;
  border-radius: 6px;
  padding: 0.3rem 0.6rem;
  transition: color 0.3s ease, box-shadow 0.3s ease;
  background-color: transparent;
}

.mobile-nav .nav-link:hover {
  color: white;
  box-shadow: 0 0 12px 3px rgba(255, 255, 255, 0.7);
  background-color: rgba(255,255,255,0.05);
}

/* Active link in mobile nav */
.mobile-nav .nav-link.active {
  color: white;
  box-shadow: 0 0 10px 3px rgba(212, 175, 55, 0.8);
  background-color: rgba(212, 175, 55, 0.15);
}

/* Hero Section */
.hero {
  height: 100vh;
  background-image: url('Images/1st-img.webp'); /* Replace with your actual image path */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.543); /* Overlay for readability */
  z-index: 0;
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 90%;
  padding: 0 1rem;
  text-shadow: 0 0 15px rgba(0, 0, 0, 0.85);
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  color: #cd9e04;
  font-weight: 600;
  font-family: 'Great Vibes', cursive;
  text-shadow: 0 0 12px #e5b415;
  margin-bottom: 0.3rem;
  word-spacing: 10px;
  text-shadow:
  1px 1px 2px black,
 -1px -1px 2px black,
  1px -1px 2px black,
 -1px 1px 2px black;
}
.lead {
  width: 60vw;
  color: white;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', serif;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .logo {
    height: 50px;
  }
  .navbar-toggler {
    font-size: 1.8rem;
    color: #d4af37;
  }
  .navbar-nav .nav-link {
    font-size: 1rem;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-content p {
    width: 80vw;
  }
}

@media (max-width: 540px) {
  .logo {
    height: 40px;
  }
  .navbar .brand-name {
    font-size: 28px;
  }
  .logo {
    margin-top: -10px;
    margin-left: -30px;
  }
  .navbar-toggler {
    font-size: 1.6rem;
    margin-right: -20px;
  }
  .hero-content h1 {
    font-size: 2.3rem;
  }
  .hero-content p {
    font-size: 0.9rem;
    width: 70vw;
  }
}
.services-preview {
  background-color: #ffffff;
  color: #333;
  font-family: 'Cinzel', serif;
}

.services-title {
  font-family: 'Playfair Display', cursive;
  font-size: 2.8rem;
  color: #b08500;
  word-spacing: 2px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  padding: 2rem 1.5rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid #eee;
  height: 100%;
  margin-top: 35px;
}

.service-card {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(176, 133, 0, 0.3);
}

.service-card:hover {
  border-color: #d4af37;
}

.emoji {
  font-size: 2.8rem;
  margin-bottom: 0.8rem;
  transition: transform 0.3s ease;
}

.service-card:hover .emoji {
  transform: scale(1.2);
}

.service-card h5 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #a78102;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
  margin-bottom: 1rem;
}

.mini-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.mini-list li {
  font-size: 0.88rem;
  color: #666;
  margin-bottom: 0.3rem;
}

.btn-gold {
  background-color: transparent;
  border: 2px solid #d4af37;
  color: #d4af37;
  padding: 0.6rem 1.5rem;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-bottom: 30px;
  margin-top: 20px;
}

.btn-gold:hover {
  background-color: #d4af37;
  color: #000;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

@media (max-width: 500px){
  .services-title {
    font-size: 30px;
  }
}
.hr {
    margin: 2px;
    border: 0;
}
.special-moments-section {
  background: linear-gradient(to bottom, #ffffff, #fff0c2f6); /* Soft beige gradient */
  color: #333;
  font-family: 'Cinzel', serif;
  padding: 5rem 1rem;
}

.special-moments-section .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: #ba8b00;
  margin-bottom: 3rem;
}

.box {
  border: 2px solid #e6b824; /* Gold border */
  padding: 2rem;
  border-radius: 15px;
  background-color: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.box:hover {
    box-shadow: 0 2px 4px 4px rgba(255, 255, 255, 0.607);
}

.box p {
  font-size: 1.1rem;
  color: #444;
  line-height: 1.6;
}

/* Full width for the first and third items */
.col-12 {
  flex: 0 0 90%; /* Full width */
}

/* For second and fourth items, use offset to shift them */
.offset-1 {
  margin-left: 8.33%; /* Offset for alignment */
}

/* For mobile responsiveness, stack vertically */
@media (max-width: 768px) {
  .col-12 {
    flex: 0 0 100%;
  }

  .offset-1 {
    margin-left: 0; /* No offset on small screens */
  }
  .special-moments-section .section-title {
    font-size: 32px;
  }
}
/* Base Styling for Section */
.ideal-celebration {
  padding: 4rem 2rem;
  background: #000;
}

.ideal-celebration .container {
  max-width: 1200px;
}

.ideal-celebration h2 {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color: #e5b415;
  margin-bottom: 1.5rem;
}

.ideal-celebration p {
  font-size: 1.1rem;
  color: #f0f0f0;
  line-height: 1.6;
}

/* Decorative Image Styling */
.decorative-image {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
  border: 5px solid #e5b415; /* Gold border */
}

.decorative-image::before {
  content: "";
  position: absolute;
  top: -10%;
  left: -5%;
  width: 120%;
  height: 120%;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.decorative-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 15px;
}

/* Make image container responsive */
@media (max-width: 768px) {
  .decorative-image {
    width: auto;
    height: 20vh; /* Adjust height for smaller screens */
    margin-top: -20px;
  }
  .ideal-celebration h2 {
    font-size: 24px;
    margin-top: 30px;
  }
  .ideal-celebration p {
    font-size: 15px;
  }
}

/* Desktop Version - Image Size Adjustments */
@media (min-width: 992px) {
  .decorative-image {
    width: 100%;
    height: 300px; /* Adjust image size for larger screens */
  }
}
/* General Section Styles */
section {
  padding: 6rem 2rem;
  font-family: 'Cinzel', serif;
  color: #333;
}

/* Why Choose Us Section */
.why-choose-us {
  background: linear-gradient(135deg, #f6f6f6, #b6b06b); /* Elegant Gradient from light blue to soft pink */
  padding: 5rem 0;
}

.why-choose-us .section-title {
  font-size: 2.8rem;
  color: #352a65; /* Elegant purple accent */
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.why-choose-us .section-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 3rem;
  font-family: 'Lucida Sans', serif;
  margin: 30px 40px;
}

.feature-box {
  background-color: rgba(255, 255, 255, 0.85); /* Soft white with transparency */
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1); /* Elegant shadow */
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.feature-box h3 {
  color: #4b3d8a; /* Purple for headings */
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.feature-box p {
  font-size: 1rem;
  color: #555;
}

.feature-box:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

@media (max-width: 550px) {
  .why-choose-us .section-title {
    font-size: 35px;
  }
}

/* Creating Lifelong Celebrations Section */
.lifelong-celebrations {
  position: relative;
  background: url('Images/Dummy-img-2.webp') no-repeat center center fixed; /* Fixed background image */
  background-size: cover;
  color: #fff;
  padding: 6rem 2rem;
}

/* Overlay */
.lifelong-celebrations::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.616); /* Dark overlay for text contrast */
  z-index: 1;
}

.lifelong-celebrations .container {
  position: relative;
  z-index: 2;
}

.lifelong-celebrations .section-title {
  font-size: 2.8rem;
  color: #f1c40f; /* Gold color for elegance */
  text-align: center;
  margin-bottom: 1.5rem;
  font-family: 'Playfair Display', serif;
  letter-spacing: 2px;
}

.lifelong-celebrations .section-subtitle {
  font-size: 1.2rem;
  color: #ddd;
  margin-bottom: 3rem;
  font-family: 'Lucida Sans', serif;
}

.celebration-box {
  background: rgba(0, 0, 0, 0.76); /* Semi-transparent black background for text contrast */
  border-radius: 15px;
  padding: 2.5rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3); /* Stronger shadow for image section */
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.celebration-box h3 {
  color: #f1c40f; /* Gold for headings */
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-family: 'Playfair Display', serif;
}

.celebration-box p {
  font-size: 1rem;
  color: #ffffff;
}

.celebration-box:hover {
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.4);
  transform: translateY(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .lifelong-celebrations .section-title {
    font-size: 24px;
  }
  .section-title {
    font-size: 2.2rem;
  }

  .feature-box, .celebration-box {
    padding: 1.8rem;
  }

  .feature-box h3, .celebration-box h3 {
    font-size: 18px;
  }

  .feature-box p, .celebration-box p {
    font-size: 14px;
  }
}
/* Testimonials Section Styling */
.testimonials {
  background: linear-gradient(to right, #f2f2f2, #d1d1d1); /* Elegant light gradient background */
  color: #333;
  padding: 5rem 0;
}

/* Section Title */
.testimonials .section-title {
  font-size: 2.5rem;
  font-family: 'Cinzel', serif;
  color: #1f2d3d; /* Deep dark color for title */
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  text-transform: uppercase;
}

/* Testimonial Box */
.testimonial-box {
  background-color: #ffffff; /* White background for each testimonial */
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
  transition: transform 0.3s ease-in-out;
  margin-bottom: 2rem;
  max-width: 600px; /* Narrower box width */
}

.testimonial-box:hover {
  transform: translateY(-10px); /* Hover effect */
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2); /* Deeper shadow on hover */
}

.testimonial-box.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Testimonial Content */
.testimonial-content p {
  font-size: 1.2rem;
  font-style: italic;
  color: #555;
  margin-bottom: 1.5rem;
}

/* Testimonial Author */
.testimonial-author {
  text-align: center;
}

.testimonial-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
}

.testimonial-role {
  font-size: 1rem;
  color: #888;
  margin-top: 0.3rem;
}

/* Testimonial Icon */
.testimonial-icon {
  font-size: 2.9rem;
  color: #f39c12; /* Golden color */
  text-align: center;
  margin-bottom: 1rem;
}

/* Carousel Controls Hidden */
.carousel-control-prev-icon, .carousel-control-next-icon {
  display: none; /* Hides prev/next buttons */
}

/* Carousel Indicators */
.carousel-indicators li {
  background-color: #f1c40f; /* Golden color for the indicators */
}

.carousel-indicators .active {
  background-color: #e67e22; /* Highlighted color for active indicator */
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .testimonial-box {
    padding: 1.5rem;
  }
  .testimonial-name {
    font-size: 1.3rem;
  }
  .testimonials .section-title {
    font-size: 30px;
  }
}
/* Footer Styles */
.footer-section {
  background: linear-gradient(to right, #1c1c1c, #333333);
  color: white;
  padding: 30px 0;
}

.footer-title {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.footer-about p,
.footer-contact p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links ul li {
  margin: 8px 0;
}

.footer-links ul li a {
  color: white;
  font-size: 1rem;
}

.footer-links ul li a:hover {
  color: #d4af37;
}

.footer-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 10px;
}

.footer-contact div {
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.social-media-links a {
  text-decoration: none;
  color: white;
  display: inline-block;
  transition: all 0.3s ease;
  font-family: arial;
}

.social-media-links a:hover {
  color: #d4af37;
}

.social-img {
  width: 35px;
  height: 35px;
  margin-right: 10px;
}

.footer-line {
  border: 1px solid #555;
  width: 80%;
  margin: 20px auto;
  background-color: #d4af37;
}

.mb-4 {
  margin-bottom: 20px !important;
}

.py-5 {
    padding-top: 2rem !important;
    padding-bottom: 0rem !important;
}
@media (max-width: 768px) {
  .footer-about, .footer-links, .footer-contact {
    text-align: center;
    margin-bottom: 20px;
  }

  .social-media-links {
    justify-content: center;
    gap: 15px;
  }

  .footer-line {
    width: 80%;
  }

  .footer-title {
    font-size: 1.3rem;
  }

  .footer-about p,
  .footer-contact p {
    font-size: 0.8rem;
  }

  .social-img {
    width: 40px;
    height: 40px;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float-btn {
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
  color: white;
  font-size: 16px;
  width: 55px; /* Increase width to fit icon perfectly */
  height: 55px; /* Match height to make the button round */
  animation: glow 1.5s infinite; /* Continuous glowing effect */
}

/* WhatsApp Icon */
.whatsapp-float-btn img {
  width: 65px;  /* Size of the icon */
  height: 65px; /* Ensure the icon fits perfectly inside the button */
}

/* Glowing Animation */
@keyframes glow {
  0% {
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.744);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 255, 0, 0.765); /* Glowing effect */
  }
  100% {
    box-shadow: 0 0 5px rgba(0, 255, 0, 0.5);
  }
}