 
/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box}
html,body{width:100%;height:100%;font-family:'Poppins'sans-serif;overflow-x:hidden}

/* ================= NAVBAR ================= */
.desktop-nav{
  position:fixed;top:0;left:0;width:100%;height:96px;
  padding:0 50px;display:flex;align-items:center;justify-content:space-between;
  background:rgba(0,0,0,.25);backdrop-filter:blur(14px);z-index:1000;
}
.logo{display:flex;align-items:center;gap:16px}
.logo img{height:72px;filter:drop-shadow(0 6px 18px rgba(0,0,0,.4))}
.logo p{font-family:'Playfair Display',serif;font-size:22px;color:#fff;line-height:1.2;}
.desktop-menu a{
  margin:0 18px;color:#fff;text-decoration:none;position:relative;font-weight:500;
}
/* .desktop-menu a::after{
  content:'';position:absolute;left:0;bottom:-8px;width:0;height:2px;background:#d4af37;transition:.3s
}
.desktop-menu a:hover::after{width:100%} */

/* WhatsApp desktop button */
.whatsapp-link{
  display:flex;align-items:center;gap:10px;padding:10px 18px;
  border-radius:30px;background:linear-gradient(135deg,#25D366,#128C7E);
  color:#fff;font-weight:600;text-decoration:none;box-shadow:0 10px 28px rgba(0,0,0,.35);
}
.whatsapp-link i{font-size:18px;color:#fff;}
.whatsapp-link span{font-size:14px;letter-spacing:.3px;}

/* ================= HERO / ABOUT ================= */
/*.slider,.slide.about{width:100vw;height:100vh}*/
.slide.about{
  background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),url("https://images.unsplash.com/photo-1519741497674-611481863552") center/cover no-repeat;
  display:flex;align-items:center;justify-content:center;padding-top:96px;
}
.about-wrap{max-width:1200px;padding:40px;color:#fff;}
.about-wrap h1{font-family:'Playfair Display',serif;font-size:54px;margin-bottom:10px;}
.about-wrap .tagline{font-size:18px;opacity:.85;margin-bottom:50px;}
.about-content{display:grid;grid-template-columns:1fr 1fr;gap:50px;align-items:center;}
.about-img img{width:100%;border-radius:24px;box-shadow:0 30px 60px rgba(0,0,0,.45);}
.about-text h3{font-family:'Playfair Display',serif;font-size:32px;margin-bottom:18px;color:#d4af37;}
.about-text p{font-size:16px;line-height:1.8;margin-bottom:16px;opacity:.95;}

/* ================= PAGE ARROWS ================= */
.next-page-btn,.back-home-btn{
  position:fixed;top:50%;transform:translateY(-50%);
  width:55px;height:55px;border-radius:50%;
  background:rgba(255,255,255,.2);backdrop-filter:blur(12px);
  display:flex;align-items:center;justify-content:center;color:#fff;font-size:22px;
  cursor:pointer;z-index:1100;transition:.3s;
}
.next-page-btn{right:25px;}
.back-home-btn{left:25px;}
.next-page-btn:hover,.back-home-btn:hover{background:#fff;color:#b76e79}

/* ================= CONTACT FLOAT BUTTON ================= */
.contact-open-btn{
  position:fixed;right:25px;bottom:25px;width:60px;height:60px;border-radius:50%;
  background:linear-gradient(135deg,#c08497,#f4c2c2);color:#fff;border:none;font-size:22px;
  cursor:pointer;z-index:1200;box-shadow:0 20px 40px rgba(0,0,0,.35)
}

/* ================= CONTACT SIDEBAR ================= */
.contact-sidebar{
  position:fixed;top:0;right:-420px;width:420px;height:100vh;
  background:rgba(255,255,255,.92);backdrop-filter:blur(18px);
  box-shadow:-25px 0 60px rgba(0,0,0,.35);padding:30px 26px 160px;z-index:1300;
  transition:.45s ease;overflow-y:auto;
}
.contact-sidebar.active{right:0;}
.close-btn{position:absolute;top:18px;right:18px;width:38px;height:38px;border-radius:50%;background:#fff;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:22px;color:black}

.contact-title{font-size:26px;color:#b76e79;margin-bottom:5px;}
.contact-sub{font-size:14px;opacity:.7;margin-bottom:25px;color:black}
.whatsapp-btn{display:flex;align-items:center;justify-content:center;gap:10px;padding:14px;border-radius:40px;background:linear-gradient(135deg,#25D366,#128C7E);color:#fff;font-weight:600;text-decoration:none;box-shadow:0 12px 30px rgba(0,0,0,.35);transition:.3s ease;}
.whatsapp-btn i{font-size:22px;}
.whatsapp-btn:hover{transform:scale(1.05);}

.social-icons{display:flex;gap:14px;margin:25px 0;}
.social-icons a{width:44px;height:44px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#b76e79;color:#fff;font-size:18px;text-decoration:none;transition:.3s ease;}
.social-icons a:hover{transform:scale(1.1);background:#000;}

.subscribe-box h4{margin-bottom:10px;font-size:16px;color:black}
.subscribe-box form{display:flex;gap:10px;}
.subscribe-box input{flex:1;padding:10px 14px;border-radius:25px;border:1px solid #ccc;outline:none;}
.subscribe-box button{padding:10px 18px;border-radius:25px;border:none;background:#b76e79;color:#fff;cursor:pointer;transition:.3s ease;}
.subscribe-box button:hover{background:#000;}

.map-box{margin-top:25px;border-radius:18px;overflow:hidden;box-shadow:0 12px 30px rgba(0,0,0,.25);}
.map-box iframe{width:100%;height:200px;border:none;}

.contact-address{position:fixed;bottom:0;right:0;width:420px;padding:18px;background:#b76e79;color:#fff;text-align:center;box-shadow:0 -10px 30px rgba(0,0,0,.35);}
.contact-address h5{margin-bottom:5px;font-size:16px;}

/* ================= FORM ================= */
.input-box{position:relative;margin-bottom:16px;}
.input-box i{position:absolute;left:14px;top:50%;transform:translateY(-50%)}
.input-box input,.input-box textarea{width:100%;padding:14px 14px 14px 40px;border-radius:10px;border:1px solid #ddd;}
.contact-form button{width:100%;padding:14px;border-radius:50px;border:none;background:#c08497;color:#fff}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .desktop-menu{display:none}
  .desktop-nav{height:80px;padding:0 16px}
  .logo img{height:52px}.logo p{font-size:16px}
  .whatsapp-link{width:42px;height:42px;border-radius:50%;justify-content:center;padding:0}
  .whatsapp-link span{display:none}
  .about-wrap h1{font-size:32px}
  .about-content{grid-template-columns:1fr}
  .contact-sidebar{width:100%;right:-100%;padding-bottom:200px}
  .contact-address{width:100%}
  .map-box iframe{height:180px}
  .social-icons{justify-content:center}
  .subscribe-box form{flex-direction:column}
  .subscribe-box button{width:100%}
}
@media(min-width:769px){
  .whatsapp-link:hover{transform:translateY(-2px) scale(1.05);box-shadow:0 15px 35px rgba(0,0,0,.45);}
}

/* ====================== CONTAINER ====================== */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 50px auto;
  font-family: 'Poppins', sans-serif;
}

/* ====================== SERVICES SECTION ====================== */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

/* ====================== SERVICE CARD ====================== */
.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
}

/* ====================== CARD IMAGE ====================== */
.service-img {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-img img {
  transform: scale(1.1);
}

/* ====================== CARD CONTENT ====================== */
.service-content {
  padding: 25px;
  background: #fff;
  text-align: center;
}
.service-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8em;
  margin-bottom: 15px;
  color: #222;
}
.service-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.service-content ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed #ddd;
  font-size: 1em;
  color: #555;
}
.service-content ul li span:first-child {
  font-weight: 500;
}
.service-content ul li span:last-child {
  font-weight: 600;
  color: #e91e63; /* premium accent */
}

/* ====================== PREMIUM RIBBON TAG ====================== */
.service-card::before {
  content: 'Premium';
  position: absolute;
  top: 15px;
  left: -45px;
  background: #e91e63;
  color: #fff;
  font-weight: bold;
  padding: 5px 60px;
  transform: rotate(-45deg);
  font-size: 0.85em;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover::before {
  opacity: 1;
}

/* ====================== FADE ANIMATION ====================== */
.fade {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s forwards;
  animation-delay: 0.2s;
}
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .services {
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .service-card::before { display: none; }
  .service-content h2 { font-size: 1.6em; }
}

@media (max-width: 480px) {
  .service-content h2 { font-size: 1.4em; }
  .service-content ul li { font-size: 0.95em; }
}


/* ====================== BODY / CONTAINER ====================== */
body {
  font-family: 'Poppins', sans-serif;
  /*background: #1a1a1a;*/
  background:
    radial-gradient(circle at top, rgba(212,175,55,0.08), transparent 60%),
    linear-gradient(180deg, #0d0d0d, #1b1b1b);
  /*background:linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.75)),url("back-image.jpg") center/cover no-repeat;*/
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}

/* ====================== SLIDER / SECTION ====================== */
.slider {
  width: 100%;
  padding: 90px 0;
  margin: 10px 0;
  /*background: linear-gradient(180deg, #1a1a1a 0%, #2c2c2c 100%);*/
}

/* ====================== GALLERY SECTION ====================== */
.slide.gallery {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 0 20px;
}

.slide.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  color: #d4af37; /* gold accent */
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.slide.gallery .gallery-subtitle {
  font-size: 1.2em;
  color: #e0e0e0;
  margin-bottom: 50px;
  opacity: 0.85;
}

/* ====================== GALLERY GRID ====================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
}

/* ====================== GALLERY ITEM ====================== */
.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

/* ====================== IMAGE ====================== */
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: brightness(0.8);
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1);
}

/* ====================== OVERLAY ====================== */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.4s ease;
  padding: 20px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ====================== OVERLAY TEXT ====================== */
.gallery-overlay h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5em;
  color: #d4af37; /* gold accent */
  margin-bottom: 8px;
}

.gallery-overlay p {
  font-size: 0.95em;
  color: #f5f5f5;
  opacity: 0.9;
}

/* ====================== PREMIUM EFFECT ====================== */
.gallery-item::before {
  content: 'Premium';
  position: absolute;
  top: 15px;
  left: -45px;
  background: #e91e63;
  color: #fff;
  font-weight: bold;
  padding: 5px 60px;
  transform: rotate(-45deg);
  font-size: 0.75em;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::before {
  opacity: 1;
}

/* ====================== RESPONSIVE ====================== */
@media (max-width: 1024px) {
  .gallery-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .slide.gallery h2 {
    font-size: 2.2em;
  }
  .gallery-overlay h4 {
    font-size: 1.2em;
  }
  .gallery-item::before {
    display: none;
  }
}

@media (max-width: 480px) {
  .slide.gallery h2 {
    font-size: 1.8em;
  }
  .slide.gallery .gallery-subtitle {
    font-size: 1em;
  }
  .gallery-overlay h4 {
    font-size: 1em;
  }
  .gallery-overlay p {
    font-size: 0.85em;
  }
}
/* new css */
/* SECTION */

.premium-gallery-section{
  padding:80px 10%;
  /* background:#0f172a; */
  /* font-family: 'Poppins', sans-serif; */
}

.premium-gallery-title{
  text-align:center;
  font-size:38px;
  font-weight:600;
  margin-bottom:60px;
  color:#fff;
  letter-spacing:1px;
}

/* GALLERY GRID */

.premium-overlay-gallery{
display: flex;
flex-wrap: wrap;
justify-content:center;
gap: 50px;
margin-bottom: 40px;
}

/* CARD */

.premium-card{
  position:relative;
  overflow:hidden;
  border-radius:50%;
  cursor:pointer;
  transition:0.4s;
}

.premium-card img{
  width:350px;
  height:350px;
  object-fit:cover;
  position: center;
  display:block;
  transition:0.6s;
}

/* OVERLAY */

.premium-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  opacity:0;
  transition:0.4s;
}

/* CONTENT */

.premium-card-content{
  position:absolute;
  bottom:0;
  left:0;
  padding:25px;
  color:#fff;
  transform:translateY(40px);
  opacity:0;
  transition:0.4s;
}

.premium-card-content h3{
  font-size:22px;
  margin-bottom:6px;
}

.premium-card-content p{
  font-size:14px;
  opacity:0.8;
}

/* HOVER EFFECT */

.premium-card:hover img{
  transform:scale(1.1);
}

.premium-card:hover::after{
  opacity:1;
}

.premium-card:hover .premium-card-content{
  transform:translateY(0);
  opacity:1;
}
/* flip sec */
  /* === STYLE 3 – FLIP CARD (3D) === */
    .flip-gallery {
      display: flex;
      justify-content: center;
      gap: 40px;
      flex-wrap: wrap;
      padding: 60px 0;
      background: transparent;
    }
    .flip-card {
      width: 280px;
      height: 350px;
      perspective: 1200px;
    }
    .flip-inner {
      position: relative;
      width: 100%;
      height: 100%;
      transition: transform 0.8s;
      transform-style: preserve-3d;
      border-radius: 24px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    }
    .flip-card:hover .flip-inner { transform: rotateY(180deg); }
    .flip-front, .flip-back {
      position: absolute;
      width: 100%;
      height: 100%;
      backface-visibility: hidden;
      border-radius: 24px;
      overflow: hidden;
    }
    .flip-front img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .flip-back {

      background: #c49b7a;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      transform: rotateY(180deg);
      padding: 20px;
      text-align: center;
    }
    .flip-back h3 { font-size: 26px; margin-bottom: 10px; }
    .flip-back p { font-size: 16px; opacity: 0.9; }


    /* perimum */
    /* SECTION */

/* body{
font-family:Poppins;
background:#f8f8f8;
margin:0;
} */

.uxg-gallery{
padding:80px 10%;
text-align:center;
}

.uxg-gallery-title{
font-size:36px;
margin-bottom:10px;
}

.uxg-gallery-subtitle{
color:#777;
margin-bottom:50px;
}

.uxg-gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.uxg-gallery-item{
position:relative;
overflow:hidden;
border-radius:15px;
cursor:pointer;
}

.uxg-gallery-item img{
width:100%;
height:100%;
object-fit:cover;
transition:.5s;
display:block;
}

.uxg-gallery-item:hover img{
transform:scale(1.1);
}

.uxg-gallery-overlay{
position:absolute;
bottom:0;
left:0;
width:100%;
padding:20px;
background:linear-gradient(transparent,rgba(0,0,0,0.8));
color:#fff;
opacity:0;
transition:.4s;
}

.uxg-gallery-item:hover .uxg-gallery-overlay{
opacity:1;
}

.uxg-gallery-overlay h4{
margin:0;
font-size:18px;
}

.uxg-gallery-overlay p{
margin:3px 0 0;
font-size:14px;
}


#galleryViewer{
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.9);
display:none;
align-items:center;
justify-content:center;
z-index:999;
}

#galleryViewer img{
max-width:80%;
max-height:80%;
border-radius:10px;
}

.closeViewer{
position:absolute;
top:30px;
right:40px;
font-size:35px;
color:white;
cursor:pointer;
}

.galleryPrev,.galleryNext{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:40px;
background:none;
border:none;
color:white;
cursor:pointer;
}

.galleryPrev{ left:40px; }
.galleryNext{ right:40px; }