
  body { font-family: 'Poppins', sans-serif; }

.main-header {
  padding: 15px 0;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}
.logo span { color: #c18b2d; }

.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
}
.nav-menu li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.hero {
  background: #f8f3ea;
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 700;
}

.design-card {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,.1);
}
.design-card img {
  width: 100%;
}
.design-card h6 {
  padding: 10px;
  text-align: center;
}

.booking {
  background: #ffd84d;
  padding: 70px 0;
}

.instagram img {
  width: 100%;
  border-radius: 10px;
}

.footer {
  background: #111;
  color: #fff;
  padding: 20px;
}



.hero{
  padding:90px 0;
}

.hero-slide{
  background-size:cover;
  background-position:center;
  padding:60px 40px;
  border-radius:20px;
}

.hero-text h1{
  font-size:48px;
  font-weight:700;
  animation: slideUp .8s ease-in-out;
}

.hero-text p{
  font-size:18px;
  margin:15px 0;
  animation: fadeIn 1s ease-in-out;
}

.hero-img{
  max-height:420px;
  animation: fadeInRight 1s ease;
}

/* Arrows */
.hero-carousel .owl-nav button{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:#000 !important;
  color:#fff !important;
  width:45px;
  height:45px;
  border-radius:50%;
}

.hero-carousel .owl-nav .owl-prev{ left:-20px; }
.hero-carousel .owl-nav .owl-next{ right:-20px; }

/* Mobile image change */
@media(max-width:768px){
  .hero-img{
    content:url("img/hero-mobile.jpg");
  }
  .hero-text h1{
    font-size:32px;
  }
}

/* Animations */
@keyframes slideUp{
  from{transform:translateY(30px);opacity:0;}
  to{transform:translateY(0);opacity:1;}
}
@keyframes fadeIn{
  from{opacity:0;}
  to{opacity:1;}
}
@keyframes fadeInRight{
  from{transform:translateX(40px);opacity:0;}
  to{transform:translateX(0);opacity:1;}                          
}


.categories{
  padding:80px 0;
  background:#fff;
}

.section-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:60px;
}

.category-row{
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
  padding:40px 0;
}

.category-item{
  border-right:1px solid #eee;
  padding:30px 15px;
}

.category-item:last-child{
  border-right:none;
}

.category-video{
  width:180px;
  height:180px;
  margin:0 auto 20px;
  border-radius:50%;
  overflow:hidden;
  border:3px solid #000;
}

.category-video video{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Hover effect */
.category-item:hover .category-video{
  transform:scale(1.05);
  transition:0.3s ease;
}

/* Mobile */
@media(max-width:768px){
  .category-video{
    width:140px;
    height:140px;
  }
  .category-item{
    border-right:none;
  }
}



.designs{
  padding:80px 0;
}

.design-tabs{
  display:flex;
  justify-content:center;
  gap:30px;
  list-style:none;
  margin-bottom:50px;
  padding:0;
}

.design-tabs li{
  cursor:pointer;
  font-weight:600;
  color:#999;
  padding:8px 20px;
  border-radius:30px;
}

.design-tabs li.active{
  color:#000;
  border:1px dashed #000;
}

/* Rows */
.design-row{
  display:none;
}

.design-row.active{
  display:block;
}

/* Cards */
.design-card{
  position:relative;
  overflow:hidden;
  border-radius:14px;
}

.design-card img{
  width:100%;
  height:320px;
  object-fit:cover;
}

.design-hover{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.5);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.3s;
}

.design-card:hover .design-hover{
  opacity:1;
}

.design-row h6 {
    margin-top: 12px;
    font-weight: 600;
    text-align: center;
}





.gallery{
  padding:80px 0;
}

.section-title{
  font-size:32px;
  font-weight:700;
  margin-bottom:30px;
}

/* Filters */
.gallery-filters{
  display:flex;
  justify-content:center;
  gap:25px;
  list-style:none;
  padding:0;
  margin-bottom:50px;
}

.gallery-filters li{
  cursor:pointer;
  font-weight:600;
  color:#888;
  padding:8px 20px;
  border-radius:30px;
}

.gallery-filters li.active{
  color:#000;
  border:1px dashed #000;
}

/* Images */
.gallery-item{
  overflow:hidden;
  border-radius:16px;
}

.gallery-item img{
  width:100%;
  height:260px;
  object-fit:cover;
  transition:.4s;
}

.gallery-item:hover img{
  transform:scale(1.08);
}

/* Mobile */
@media(max-width:768px){
  .gallery-item img{
    height:220px;
  }
}





.site-footer{
  background:#fff;
  border-top:1px solid #eee;
  margin-top:80px;
}

/* Feature boxes */
.footer-features{
  padding:40px 0;
}

.feature-box{
  border:1px solid #eee;
  padding:25px;
  border-radius:10px;
}

.feature-box i{
  font-size:26px;
  color:#aaa;
  margin-bottom:10px;
}

.feature-box h6{
  font-weight:700;
  margin-bottom:5px;
}

.feature-box p{
  font-size:14px;
  color:#777;
}

/* Main footer */
.footer-main{
  padding:60px 0 30px;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    height: 110px;
}

.footer-desc{
  max-width:850px;
  margin:0 auto 25px;
  color:#555;
  font-size:15px;
  line-height:1.7;
}

/* App buttons */
.app-buttons img{
  height:40px;
  margin:10px;
}

/* Social */
.footer-social{
  margin:25px 0;
}

.footer-social span{
  display:block;
  margin-bottom:10px;
  font-weight:600;
}

.footer-social a{
  color:#333;
  margin:0 8px;
  font-size:18px;
}

/* Links */
.footer-links{
  list-style:none;
  padding:0;
  margin:30px 0 20px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:20px;
}

.footer-links a{
  text-decoration:none;
  color:#333;
  font-size:14px;
}

/* Bottom */
.footer-bottom{
  font-size:14px;
  color:#666;
}
.footer-bottom a{
  font-weight:600;
  color:#000;
}



.main-header{
  background:#fff;
  border-bottom:1px solid #eee;
  position:sticky;
  top:0;
  z-index:999;
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 0;
}

.logo img{
  height:50px;
}

/* Menu */
.nav-menu{
  list-style:none;
  display:flex;
  gap:30px;
  margin:0;
  padding:0;
}

.nav-menu li a{
  text-decoration:none;
  font-weight:600;
  color:#000;
}

/* Toggle button */
.menu-toggle{
  display:none;
  flex-direction:column;
  gap:6px;
  cursor:pointer;
}

.menu-toggle span{
  width:26px;
  height:3px;
  background:#000;
  border-radius:3px;
}

/* Mobile styles */
@media(max-width:991px){

  .menu-toggle{
    display:flex;
  }

  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;
    background:#fff;
    padding:80px 20px;
    transition:.4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
  }

  nav.active{
    right:0;
  }

  .nav-menu{
    flex-direction:column;
    gap:20px;
  }

  .desktop-btn{
    display:none;
  }

  .mobile-btn{
    margin-top:20px;
  }
}


/* Overlay */
.menu-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,0.5);
  opacity:0;
  visibility:hidden;
  transition:.3s;
  z-index:998;
}

.menu-overlay.active{
  opacity:1;
  visibility:visible;
}

/* Nav */
nav{
  z-index:999;
}

/* Close Button */
.menu-close{
  position:absolute;
  top:20px;
  right:20px;
  font-size:22px;
  cursor:pointer;
}

/* Mobile only */
@media(max-width:991px){
  nav{
    position:fixed;
    top:0;
    right:-100%;
    width:260px;
    height:100vh;
    background:#fff;
    padding:80px 20px;
    transition:.4s ease;
    box-shadow:-10px 0 30px rgba(0,0,0,.1);
  }

  nav.active{
    right:0;
  }
}



.gallery-filters{
  list-style:none;
  display:flex;
  justify-content:center;
  gap:20px;
  padding:0;
  margin:40px 0;
  flex-wrap:wrap;
}

/* Tab */
.gallery-filters li{
  cursor:pointer;
  font-weight:600;
  padding:8px 22px;
  border-radius:30px;
  border:1px dashed transparent;
  color:#777;
  white-space:nowrap;
  transition:.3s;
}

/* Active */
.gallery-filters li.active{
  color:#000;
  border-color:#000;
}

/* Hover */
.gallery-filters li:hover{
  color:#000;
}

/* 📱 Mobile */
@media(max-width:768px){

.gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        /* white-space: nowrap; */
        padding-bottom: 10px;
        gap: 12px;
        display: flex;
        flex-wrap: unset;
    }

  .gallery-filters::-webkit-scrollbar{
    display:none;
  }

  .gallery-filters li{
    flex:0 0 auto;
    font-size:14px;
    padding:6px 16px;
  }

  .design-tabs{
    justify-content: flex-start;
        overflow-x: auto;
        /* white-space: nowrap; */
        padding-bottom: 10px;
        gap: 12px;
        display: flex;
        flex-wrap: unset;

  }

  .hero {
   
    padding: 0px !important;
}

li.mobile-btn a {
    color: #fff;
}

li.mobile-btn {
    display: block !important;
}

.menu-close {
    display: block !important;
}
}


li.mobile-btn {
    display: none;
}


.menu-close {
    display: none;
}




.dual-photo{
  display:flex;
  gap:6px;
  height:280px;
}

.dual-photo a{
  width:50%;
  height:100%;
  border-radius:12px;
  overflow:hidden;
}

.dual-photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.3s;
}

.dual-photo img:hover{
  transform:scale(1.06);
}

/* Mobile */
@media(max-width:768px){
  .dual-photo{
    height:220px;
  }
}




/* MOBILE GALLERY FIX */
@media(max-width:768px){

  .dual-photo{
    flex-direction:column;
    height:auto;
  }

  .dual-photo a{
    width:100%;
    height:auto;
  }

  .dual-photo img{
    width:100%;
    height:auto;
    border-radius:18px;
    margin-bottom:12px;
  }

  .col-md-3.col-sm-6.gallery-item{
    width:100%;
    flex:0 0 100%;
  }

  .row.g-4{
    row-gap:25px !important;
  }
}



@media(max-width:768px){
  .dual-photo img{
    border:1px solid #eee;
    box-shadow:0 2px 8px rgba(0,0,0,.1);
  }
}


.about-hero{
  background:#f8f3ea;
  padding:80px 0;
  text-align:center;
}

.about-hero h1{
  font-size:42px;
  font-weight:700;
}

.about-hero p{
  margin-top:10px;
  font-size:18px;
}

.about-content{
  padding:80px 0;
}

.about-content h2{
  font-weight:700;
  margin-bottom:20px;
}

.about-content p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}

.about-img{
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.about-values{
  background:#fff;
  padding:70px 0;
}

.value-box{
  padding:30px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  height:100%;
}

.value-box h4{
  font-weight:700;
  margin-bottom:15px;
}

.value-box p{
  font-size:15px;
  color:#555;
}

.about-cta{
  background:#000;
  color:#fff;
  padding:70px 0;
}

.about-cta h2 {
    font-weight: 700;
    margin-bottom: 10px;
    color: #fff;
}

.about-cta p{
  margin-bottom:25px;
}



/* Sub menu base */
.has-submenu{
  position:relative;
}

.has-submenu .arrow{
  font-size:12px;
  margin-left:4px;
}

/* Desktop */
.sub-menu{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:200px;
  list-style:none;
  padding:10px 0;
  margin:0;
  border-radius:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:.3s;
  z-index:999;
}

.sub-menu li a{
  display:block;
  padding:10px 20px;
  color:#000;
  text-decoration:none;
  font-weight:500;
}

.sub-menu li a:hover{
  background:#f8f3ea;
}

/* Show on hover (Desktop) */
@media(min-width:992px){
  .has-submenu:hover .sub-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
  }
}

/* 📱 Mobile */
@media(max-width:991px){

  .sub-menu{
    position:static;
    box-shadow:none;
    opacity:1;
    visibility:visible;
    transform:none;
    display:none;
    padding-left:15px;
  }

  .has-submenu.active .sub-menu{
    display:block;
  }

}


/* Same service CSS – reuse */
.service-hero{
  background:#f8f3ea;
  padding:90px 0;
}

.service-hero h1{
  font-size:42px;
  font-weight:700;
}

.service-hero p{
  font-size:18px;
  margin-top:10px;
}

.service-about{
  padding:80px 0;
}

.service-about h2{
  font-weight:700;
  margin-bottom:20px;
}

.service-about p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}

.service-img{
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.service-features{
  background:#fff;
  padding:70px 0;
}

.feature-box{
  padding:30px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
  height:100%;
}

.feature-box h4{
  font-weight:700;
  margin-bottom:15px;
}

.feature-box p{
  font-size:15px;
  color:#555;
}

.service-why{
  background:#fafafa;
  padding:70px 0;
}

.service-why h2{
  font-weight:700;
  margin-bottom:30px;
}

.why-list{
  max-width:700px;
  margin:0 auto;
  list-style:none;
  padding:0;
}

.why-list li{
  font-size:16px;
  margin-bottom:12px;
}

.service-cta{
  background:#000;
  color:#fff;
  padding:70px 0;
}

.service-cta h2{
  font-weight:700;
  margin-bottom:10px;
}


.engagement-hero{
  background:#f8f3ea;
  padding:90px 0;
}
.engagement-hero h1{
  font-size:44px;
  font-weight:700;
}
.engagement-hero p{
  font-size:18px;
  margin-top:10px;
}


.service-about{
  padding:80px 0;
}
.service-about h2{
  font-weight:700;
  margin-bottom:20px;
}
.service-about p{
  font-size:16px;
  line-height:1.7;
  color:#555;
}
.service-img{
  border-radius:20px;
  box-shadow:0 10px 30px rgba(0,0,0,.15);
}
.service-features{
  background:#fff;
  padding:70px 0;
}
.feature-box{
  padding:30px;
  border-radius:16px;
  box-shadow:0 5px 20px rgba(0,0,0,.08);
  height:100%;
}
.feature-box h4{
  font-weight:700;
  margin-bottom:12px;
}


.service-process{
  background:#fafafa;
  padding:70px 0;
}
.process-box span{
  font-size:28px;
  font-weight:700;
  color:#c18b2d;
}
.process-box h5{
  margin-top:10px;
  font-weight:600;
}
.process-box p{
  font-size:14px;
  color:#555;
}



.service-cta{
  background:#000;
  color:#fff;
  padding:70px 0;
}
.service-cta h2{
  font-weight:700;
  margin-bottom:10px;
}


.baby-hero{
  background:#fff3f7;
}



/* ===============================
   SITE GALLERY GRID
================================ */

.site-gallery-page{
  padding:80px 0;
}

.site-gallery-page .section-title{
  font-size:42px;
  font-weight:700;
}

.gallery-card{
  border-radius:18px;
  overflow:hidden;
  background:#f5f5f5;
  box-shadow:0 8px 25px rgba(0,0,0,0.12);
  transition:0.3s ease;
}

.gallery-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  transition:0.4s ease;
}

/* Hover effect (desktop only) */
@media(min-width:992px){
  .gallery-card:hover img{
    transform:scale(1.06);
  }
}

/* Mobile optimization */
@media(max-width:768px){
  .gallery-card img{
    height:220px;
  }
}


.gallery-card img{
  width:100%;
  height:280px;        /* SAME HEIGHT FOR ALL */
  object-fit:cover;   /* Crop image properly */
  display:block;
}

@media(max-width:768px){
  .gallery-card img{
    height:220px;
  }
  
  .category-row {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    justify-content: left !important;
}

}



/* ================= MOBILE DESIGN ONLY ================= */
@media (max-width: 768px){

  .designs .col-md-3{
    width:50%;
    padding:6px;
  }

  .mehndi-card{
    margin-bottom:10px;
  }

  .mehndi-img{
    border-radius:16px;
  }

  .mehndi-img img{
    height:240px;
    border-radius:16px;
  }

  /* heart icon */
  .wishlist{
    width:30px;
    height:30px;
    top:8px;
    right:8px;
  }

  .wishlist i{
    font-size:14px;
  }

  /* hover icon (mobile friendly always visible) */
  .hover-actions{
    opacity:1;
    transform:scale(1);
    bottom:8px;
    right:8px;
    width:30px;
    height:30px;
  }

  .hover-actions i{
    font-size:13px;
  }

  /* title text */
  .mehndi-title{
    font-size:13px;
    line-height:1.35;
    height:36px;
    margin-top:6px;
  }
}



