*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:Arial,sans-serif;
  background:#f7f7f7;
  color:#222;
}

/* ========================= */
/* HEADER */
/* ========================= */

.lux-header{
  position:sticky;
  top:0;
  z-index:999;
  background:#fff;
  box-shadow:0 5px 25px rgba(0,0,0,.06);
}

/* TOP BAR */

.lux-topbar{
  background:linear-gradient(90deg,#ff4fa3,#ff7bc1);
  color:#fff;
  padding:12px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
  font-weight:500;
}

/* MAIN HEADER */

.lux-main-header{
  max-width:1400px;
  margin:auto;
  padding:18px 30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

/* LOGO */

.lux-logo img{
  width:110px;
  object-fit:contain;
}

/* NAVIGATION */

.lux-nav > ul{
  display:flex;
  align-items:center;
  gap:40px;
  list-style:none;
}

.lux-nav > ul > li{
  position:relative;
}

.lux-nav > ul > li > a{
  text-decoration:none;
  color:#333;
  font-size:16px;
  font-weight:600;
  transition:.3s;
  padding:10px 0;
  display:block;
}

.lux-nav > ul > li > a:hover{
  color:#ff4fa3;
}

/* DROPDOWN */

.lux-nav .dropdown > a{
  display:flex;
  align-items:center;
  gap:6px;
}

.lux-nav .dropdown > a .arrow{
  font-size:11px;
  transition:transform .3s ease;
  color:#ff4fa3;
}

.lux-nav .dropdown:hover > a .arrow{
  transform:rotate(180deg);
}

.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;
  width:220px;
  background:#fff;
  padding:8px 0;
  border-radius:12px;
  border-top:3px solid #ff4fa3;
  box-shadow:0 12px 40px rgba(0,0,0,0.13);
  opacity:0;
  visibility:hidden;
  transform:translateY(10px);
  transition:opacity .25s ease, transform .25s ease, visibility .25s;
  z-index:9999;
  list-style:none;
}

.dropdown-menu::before{
  content:'';
  position:absolute;
  top:-12px;
  left:0;
  width:100%;
  height:12px;
}

.dropdown:hover .dropdown-menu{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.dropdown-menu li{
  width:100%;
  display:block;
}

.dropdown-menu li a{
  display:block;
  padding:10px 20px;
  color:#555;
  font-size:14px;
  font-weight:500;
  transition:background .2s, color .2s, padding-left .2s;
  text-decoration: none;
}

.dropdown-menu li a:hover{
  background:#fff0f7;
  color:#ff4fa3;
  padding-left:28px;
}

.dropdown-menu li:not(:last-child){
  border-bottom:1px solid #fce4f0;
}

/* ========================= */
/* REVIEWS */
/* ========================= */

.reviews-section{
  padding:70px 0;
  overflow:hidden;
}

.container{
  max-width:1400px;
  margin:0 auto;
  padding:0 40px;
  box-sizing:border-box;
  width:100%;
}

.heading{
  text-align:center;
  margin-bottom:55px;
}

.heading h2{
  font-size:42px;
  margin-bottom:15px;
  color:#222;
}

.heading p{
  color:#666;
  font-size:17px;
}

/* GRID */

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:25px;
  width:100%;
  box-sizing:border-box;
}

/* CARD */

.review-card{
  background:#fff;
  padding:28px;
  border-radius:22px;
  box-shadow:0 10px 35px rgba(0,0,0,.07);
  transition:.3s;
  min-width:0;
  overflow:hidden;
  word-wrap:break-word;
}

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

.review-top{
  display:flex;
  align-items:center;
  gap:15px;
  margin-bottom:18px;
}

.review-top img{
  width:65px;
  height:65px;
  border-radius:50%;
  object-fit:cover;
}

.review-top h3{
  font-size:13px;
  margin-bottom:5px;
  word-break:break-all;
  display:flex;
  align-items:center;
  gap:6px;
}

.review-ig-link{
  display:inline-flex;
  align-items:center;
  color:#c13584;
  flex-shrink:0;
  transition:opacity .2s;
}

.review-ig-link:hover{
  opacity:.7;
}

.stars{
  color:#ffb800;
  font-size:15px;
}

.review-card p{
  color:#555;
  line-height:1.8;
  font-size:15px;
}


/* ========================= */
/* MOBILE */
/* ========================= */

@media(max-width:1100px){

  .reviews-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .footer-grid{
    grid-template-columns:repeat(2,1fr);
  }

}

/* HAMBURGER */

.lux-hamburger{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:38px;
  height:38px;
  background:none;
  border:none;
  cursor:pointer;
  padding:4px;
  z-index:1001;
}

.lux-hamburger span{
  display:block;
  width:100%;
  height:2.5px;
  background:#333;
  border-radius:4px;
  transition:transform .3s ease, opacity .3s ease;
  transform-origin:center;
}

/* Animate to X when active */
.lux-hamburger.active span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
.lux-hamburger.active span:nth-child(2){ opacity:0; }
.lux-hamburger.active span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }

/* ========================= */
/* MOBILE HEADER */
/* ========================= */

@media(max-width:768px){

  .lux-topbar{
    flex-direction:column;
    gap:6px;
    text-align:center;
    padding:10px 20px;
    font-size:13px;
  }

  .lux-main-header{
    padding:14px 20px;
    flex-wrap:nowrap;
    position:relative;
    justify-content:space-between;
  }

  .lux-logo img{
    width:70px;
  }

  .lux-hamburger{
    display:flex;
  }

  /* Hide desktop nav, show as slide-down on mobile */
  .lux-nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
    z-index:1000;
    border-top:2px solid #ff4fa3;
  }

  .lux-nav.open{
    display:block;
  }

  .lux-nav > ul{
    flex-direction:column;
    gap:0;
    padding:10px 0;
  }

  .lux-nav > ul > li{
    width:100%;
    border-bottom:1px solid #f5f5f5;
  }

  .lux-nav > ul > li > a{
    padding:14px 24px;
    font-size:15px;
  }

  /* Mobile dropdown */
  .dropdown-menu{
    position:static;
    opacity:1;
    visibility:hidden;
    transform:none;
    box-shadow:none;
    border:none;
    border-radius:0;
    background:#fff8fc;
    padding:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .3s ease, visibility .3s;
    width:100%;
  }

  .dropdown.open .dropdown-menu{
    visibility:visible;
    max-height:400px;
  }

  .dropdown-menu li a{
    padding:12px 36px;
    font-size:14px;
  }

  .dropdown-menu li:not(:last-child){
    border-bottom:1px solid #fce4f0;
  }

  .reviews-grid{
    grid-template-columns:1fr;
  }

  .heading h2{
    font-size:30px;
  }

}


/* ========================= */
/* VIDEO TESTIMONIALS */
/* ========================= */

.video-section{
  padding:80px 20px;
}

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

.video-card{
  min-width:280px;
  background:#fff;
  border-radius:20px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.video-card video,
.video-card iframe{
  width:100%;
  height:450px;
  object-fit:cover;
  border:0;
}

@media(max-width:767px){
  .video-card{
    min-width:100%;
  }
}


.custom-footer{
  background:
    
    url('images/footer_bg.png');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:#fff;
  position:relative;
  overflow:hidden;
  padding-top:109px;
}

/* .footer-top-shape{
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:30px;
  background:#ff4da6;
  border-radius:0 0 50% 50%;
} */

.footer-container{
  max-width:1400px;
  margin:auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:60px;
  padding:60px 44px;
}

.footer-col h3{
  font-size:20px;
  margin-bottom:25px;
  position:relative;
}

.footer-col h3::after{
  content:'';
  width:50px;
  height:3px;
  background:#fff;
  position:absolute;
  left:0;
  bottom:-10px;
}

.footer-col p{
  line-height:2;
  margin-bottom:25px;
  font-size:16px;
}

.footer-contact{
  margin-bottom:15px;
  font-size:16px;
}

.footer-contact a{
  margin-bottom:15px;
  font-size:16px;
  color: #fff;
  text-decoration: none;
}

.footer-col ul{
  list-style:none;
}

.footer-col ul li{
  margin-bottom:16px;
}

.footer-col ul li a{
  color:#fff;
  text-decoration:none;
  font-size:16px;
}

.footer-col ul li a:hover{
  opacity:.8;
}

/* ================= MOBILE ================= */

@media screen and (max-width:991px){

  .footer-container{
    grid-template-columns:repeat(2,1fr);
  }

}

@media screen and (max-width:768px){

  .top-header{
    flex-direction:column;
    gap:20px;
    text-align:center;
  }

  .main-nav ul{
    flex-wrap:wrap;
    gap:20px;
  }

  .footer-container{
    grid-template-columns:1fr;
    gap:40px;
  }

  .footer-col h3{
    font-size:24px;
  }

}

.footer-bottom {
  padding: 20px 44px;
  color: #ffffff;
  font-size: 15px ;
font-weight: 700;
} 

.footer-bottom a {
color: #ddd;
 font-size: 15px ;
font-weight: 700;
text-decoration: none;
}