/* RESET */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:'Poppins', sans-serif;
}

body{
  background:#0a0a0a;
  color:#fff;
  scroll-behavior:smooth;
}

/* NAVBAR */
.navbar{
  position:fixed;
  width:100%;
  top:0;
  z-index:1000;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(10px);
  padding:15px 0;
}

.nav-flex{
  display:flex;
  justify-content:space-between;
  align-items:center;
  width:90%;
  margin:auto;
}

.logo{
  height:50px;
}

nav a{
  color:#fff;
  margin:0 15px;
  text-decoration:none;
  font-weight:400;
  transition:0.3s;
}

nav a:hover,
nav a.active{
  color:#f5c542;
}

/* MOBILE MENU */
.menu-toggle{
  display:none;
  font-size:28px;
  cursor:pointer;
}

/* HERO */
.hero{
  height:100vh;
  background:url('../images/hero1.jpg') center/cover no-repeat;
  display:flex;
  justify-content:center;
  align-items:center;
  text-align:center;
  position:relative;
}
.hero img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero{
  height:100vh;
  animation:heroSlider 15s infinite;
  background-size:cover;
  background-position:center;
}
.hero {
  overflow: hidden;
}

@keyframes heroSlider{
  0%{background-image:url('../images/hero1.jpg');}
  33%{background-image:url('../images/about1.jpg');}
  66%{background-image:url('../images/gallery1.jpg');}
  100%{background-image:url('../images/hero1.jpg');}
}

.overlay{
  position:absolute;
  width:100%;
  height:100%;
  z-index:1;
  background:linear-gradient(to top, #000, rgba(0,0,0,0.4));
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero h1{
  font-size:60px;
  margin-bottom:10px;
}

.hero p{
  font-size:20px;
  margin-bottom:20px;
}

/* BUTTON */
.btn{
  background:#f5c542;
  color:#000;
  padding:12px 25px;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:0.3s;
}

.btn:hover{
  transform:scale(1.1);
  box-shadow:0 0 20px #f5c542;
}

/* SECTIONS */
.section{
  padding:80px 10%;
  text-align:center;
}

.section h2{
  font-size:40px;
  margin-bottom:20px;
}

/* GRID */
.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:40px;
}

.card{
  background:rgba(255,255,255,0.05);
  backdrop-filter:blur(10px);
  border:1px solid rgba(255,255,255,0.1);
  background:#111;
  border-radius:15px;
  overflow:hidden;
  transition:0.4s;
}

.card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.card h3{
  padding:15px;
}

.card:hover{
  transform:translateY(-10px) scale(1.05);
  box-shadow:0 0 25px rgba(245,197,66,0.6);
}

/* COUNTER */
.counter{
  display:flex;
  justify-content:space-around;
  padding:60px;
  background:#111;
}

.counter h2{
  font-size:50px;
  color:#f5c542;
}

/* CTA */
.cta{
  text-align:center;
  padding:80px;
  background:linear-gradient(45deg,#000,#222);
}

/* FOOTER */
footer{
  text-align:center;
  padding:30px;
  background:#000;
  font-size:14px;
}
.float-btn {
  position: fixed;
  right: 20px;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  z-index: 99999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* Positions */
.whatsapp { bottom: 260px; background: #25D366; }
.call { bottom: 200px; background: #ff9800; }
.insta { bottom: 140px; background: #E1306C; }
.facebook { bottom: 80px; background: #1877F2; }
.google { bottom: 20px; background: #DB4437; }

/* Hover */
.float-btn:hover {
  transform: scale(1.1);
}
/* RESPONSIVE */
@media(max-width:768px){

  nav{
    position:absolute;
    top:70px;
    right:0;
    background:#000;
    width:200px;
    display:none;
    flex-direction:column;
    text-align:center;
  }

  nav a{
    display:block;
    margin:15px 0;
  }

  .menu-toggle{
    display:block;
  }

  .hero h1{
    font-size:35px;
  }

  .counter{
    flex-direction:column;
    gap:20px;
  }

}

/* FADE IN */
.fade-in{
  opacity:0;
  transform:translateY(20px);
  animation:fadeIn 1s forwards;
}

.fade-in.delay{
  animation-delay:0.5s;
}

@keyframes fadeIn{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* SCROLL REVEAL */
.reveal{
  opacity:0;
  transform:translateY(50px);
  transition:1s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* GLOW BUTTON */
.glow{
  animation:glowPulse 2s infinite;
}

@keyframes glowPulse{
  0%{box-shadow:0 0 5px #f5c542;}
  50%{box-shadow:0 0 20px #f5c542;}
  100%{box-shadow:0 0 5px #f5c542;}
}
/* COLLAGE */
.collage{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:10px;
}

.collage img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
  transition:0.4s;
}

.collage img:hover{
  transform:scale(1.1);
}

/* TEAM */
.team{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
  gap:20px;
  margin-top:30px;
}

.member{
  text-align:center;
  background:#111;
  padding:20px;
  border-radius:15px;
  transition:0.3s;
}

.member img{
  width:100%;
  border-radius:10px;
}

.member:hover{
  transform:translateY(-10px);
  box-shadow:0 0 20px #f5c542;
}
/* SERVICES PAGE */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
  gap:30px;
  margin-top:40px;
}

.service-card{
  position:relative;
  overflow:hidden;
  border-radius:15px;
  cursor:pointer;
}

.service-card img{
  width:100%;
  height:300px;
  object-fit:cover;
  transition:0.5s;
}

.service-card .content{
  position:absolute;
  bottom:0;
  background:rgba(0,0,0,0.7);
  width:100%;
  padding:20px;
  transform:translateY(100%);
  transition:0.5s;
}

.service-card:hover img{
  transform:scale(1.1);
}

.service-card:hover .content{
  transform:translateY(0);
}
/* GALLERY GRID */
.gallery-grid{
  column-count:3;
  column-gap:15px;
  margin-top:40px;
}

.gallery-grid img{
  width:100%;
  margin-bottom:15px;
  border-radius:10px;
  cursor:pointer;
  transition:0.4s;
}

.gallery-grid img:hover{
  transform:scale(1.05);
  box-shadow:0 0 20px #f5c542;
}

/* LIGHTBOX */
#lightbox{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.9);
  display:none;
  justify-content:center;
  align-items:center;
}

#lightbox img{
  max-width:90%;
  max-height:90%;
}

/* RESPONSIVE */
@media(max-width:768px){
  .gallery-grid{
    column-count:1;
  }
}

/* CONTACT */
.contact-container{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
}

form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

form input, form select, form textarea{
  padding:12px;
  border:none;
  border-radius:8px;
  background:#111;
  color:#fff;
}

form textarea{
  height:100px;
}

.contact-info{
  background:#111;
  padding:20px;
  border-radius:10px;
}

.map iframe{
  width:100%;
  height:300px;
  border:none;
}

/* MOBILE */
@media(max-width:768px){
  .contact-container{
    grid-template-columns:1fr;
  }
}

/* LOADER */
#loader{
  position:fixed;
  width:100%;
  height:100%;
  background:#000;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:9999;
}

#loader h1{
  color:#f5c542;
  font-size:30px;
  animation:pulse 1.5s infinite;
}

@keyframes pulse{
  0%{opacity:0.5;}
  50%{opacity:1;}
  100%{opacity:0.5;}
}

#progressBar{
  position:fixed;
  top:0;
  left:0;
  height:4px;
  background:#f5c542;
  width:0%;
  z-index:9999;
}

img:hover{
  filter:brightness(1.1);
}

h1, h2{
  background:linear-gradient(45deg,#f5c542,#fff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.insta-btn{
  display:inline-block;
  margin-top:10px;
  color:#fff;
  text-decoration:none;
  font-size:14px;
  transition:0.3s;
}

.insta-btn:hover{
  color:#f5c542;
}

.call-btn{
  position:fixed;
  bottom:80px;
  right:20px;
  background:#f5c542;
  color:#000;
  padding:15px;
  border-radius:50%;
  font-size:20px;
}

.reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  text-align: center;
  color: #fff;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 50px;
}

.reviews-container {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.review-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 25px;
  width: 300px;
  transition: 0.4s;
}

.review-card:hover {
  transform: translateY(-10px);
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.stars {
  color: gold;
  margin: 10px 0;
  font-size: 18px;
}
.reviews-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #141e30, #243b55);
  color: white;
  text-align: center;
}

.review-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px;
}

.review-slider::-webkit-scrollbar {
  display: none;
}

.review-card {
  min-width: 280px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 20px;
  flex: 0 0 auto;
}

.client-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 3px solid gold;
}

.star {
  color: #555;
}

.star.filled {
  color: gold;
}

.cta-btn {
  background-color: #ff4b2b; /* your color */
  color: white;
}

.cta-btn:hover {
  background-color: #ff1e00;
}

.services {
  padding: 60px 20px;
  background: linear-gradient(135deg, #0f0f0f, #1c1c1c);
  color: #fff;
  text-align: center;
}

.services h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.intro {
  max-width: 750px;
  margin: auto;
  font-size: 16px;
  opacity: 0.85;
  margin-bottom: 40px;
}

.service-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.service-item {
  background: rgba(255,255,255,0.05);
  padding: 25px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.service-item h3 {
  color: #ffcc00;
  margin-bottom: 10px;
}

.service-item p {
  font-size: 14px;
  opacity: 0.85;
}

details {
  background: linear-gradient(135deg, #111, #1a1a1a);
  border: 1px solid #333;
  transition: 0.3s;
}

details[open] {
  box-shadow: 0 0 20px rgba(0,255,255,0.2);
}

.highlight {
  color: #ff4d6d; /* your custom color */
}

.logo-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.popup-box {
  background: #111;
  padding: 30px;
  border-radius: 15px;
  text-align: center;
  color: #fff;
  width: 300px;
  animation: popupFade 0.5s ease;
}

.popup-box img {
  width: 80px;
  margin-bottom: 10px;
}

.close-popup {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 22px;
  cursor: pointer;
}

@keyframes popupFade {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}



.
@keyframes fadeEffect {
  from { opacity: 0; }
  to { opacity: 1; }
}

#logoPopup {
  transition: 0.2s;
}
.google {
  background: #fff;
  color: #DB4437;
}
.

/* common slide style */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  text-decoration: none;
}

/* image */
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* title */
.slide h3 {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  font-size: 18px;
  background: rgba(0,0,0,0.5);
  padding: 5px;
}

/* animation */
.slide1 {
  animation: fade1 6s infinite;
}

.slide2 {
  animation: fade2 6s infinite;
}

/* keyframes */
@keyframes fade1 {
  0% { opacity: 1; }
  40% { opacity: 1; }
  50% { opacity: 0; }
  100% { opacity: 0; }
}

@keyframes fade2 {
  0% { opacity: 0; }
  50% { opacity: 0; }
  60% { opacity: 1; }
  100% { opacity: 1; }
}
.ceremony-slider {
  position: relative;
  width: 100%;
  height: 200px;
}

.ceremony-img {
  position: absolute;
  top: 0;
  left: 0; /* ✅ ensures no shifting */
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.ceremony-img.active {
  opacity: 1;
}

.ceremony-title {
  text-align: center;
  margin-top: 10px;
}
/* SLIDER */
.dec-slider{
  position:relative;
  max-width:900px;
  margin:40px auto;
  overflow:hidden;
  border-radius:15px;
}

.dec-slides{
  display:flex;
  width:100%;
  transition:transform 0.5s ease-in-out;
}

.dec-slides img{
  width:100%;
  height:auto;
  display:block;
}
/* BUTTONS */
.dec-prev, .dec-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:rgba(0,0,0,0.6);
  color:#fff;
  border:none;
  padding:10px 15px;
  cursor:pointer;
  font-size:20px;
  border-radius:50%;
}

.dec-prev{ left:10px; }
.dec-next{ right:10px; }

.video-card {
  position: relative;
  width: 300px;
  aspect-ratio: 16/9;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
}

.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Play button */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
  color: white;
  background: rgba(0,0,0,0.6);
  padding: 10px 18px;
  border-radius: 50%;
}

/* Hover effect (optional) */
.video-card:hover {
  transform: scale(1.03);
  transition: 0.3s;
}

html {
    scroll-behavior: smooth;
    }
}
.anchor-row-simple {
  display: flex;
  gap: 15px;
}

.anchor-item {
  flex: 1;
}

.anchor-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}