
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#fff;
  color:#222;
  overflow-x:hidden;
}

/* ========================= */
/* NAVBAR */
/* ========================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  padding:18px 6%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(0,0,0,0.6);
  backdrop-filter:blur(12px);
  z-index:1000;
}

.logo{
  color:white;
  font-size:1.3rem;
  font-weight:700;
}

/* MENU BUTTON */

.menu-btn{
  background:linear-gradient(135deg,#ff3f7f,#ff7aa2);
  color:white;
  border:none;
  padding:10px 18px;
  border-radius:30px;
  font-size:0.95rem;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.menu-btn:hover{
  transform:scale(1.05);
}

/* ========================= */
/* CENTER NAV OVERLAY */
/* ========================= */

.nav-overlay{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100vh;

  background:rgba(0,0,0,0.85);
  display:none;
  align-items:center;
  justify-content:center;

  z-index:2000;
}

.nav-overlay.active{
  display:flex;
  animation:fadeIn 0.3s ease;
}

/* CENTER LINKS */

.nav-center{
  display:flex;
  flex-direction:column;
  gap:22px;
  text-align:center;
}

.nav-center a{
  color:white;
  text-decoration:none;
  font-size:1.6rem;
  font-weight:600;
  transition:0.3s ease;
}

.nav-center a:hover{
  color:#ff7aa2;
  transform:scale(1.1);
}

/* CLOSE BUTTON */

.close-btn{
  margin-top:25px;
  background:white;
  color:#111;
  border:none;
  padding:10px 18px;
  border-radius:25px;
  font-weight:600;
  cursor:pointer;
  transition:0.3s ease;
}

.close-btn:hover{
  background:#ff3f7f;
  color:white;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero{
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  padding:140px 20px 80px;

  background:
  linear-gradient(rgba(0,0,0,0.55),
  rgba(0,0,0,0.55)),
  url('WhatsApp\ Image\ 2026-05-08\ at\ 21.52.47.jpeg');

  background-size:cover;
  background-position:center;
}

.hero-content{
  max-width:850px;
  color:white;
}

.hero-content h1{
  font-size:clamp(2.2rem,6vw,4.5rem);
  margin-bottom:20px;
}

.hero-content p{
  font-size:clamp(0.95rem,2vw,1.15rem);
  line-height:1.8;
  margin-bottom:35px;
}

/* BUTTONS */

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.btn{
  padding:14px 34px;
  border-radius:50px;
  text-decoration:none;
  font-weight:600;
  transition:0.4s ease;
  min-width:160px;
}

.primary-btn{
  background:linear-gradient(135deg,#ff3f7f,#ff7aa2);
  color:white;
  box-shadow:0 10px 30px rgba(255,63,127,0.3);
}

.secondary-btn{
  border:2px solid white;
  color:white;
}

.btn:hover{
  transform:translateY(-6px) scale(1.05);
}

/* ========================= */
/* RATINGS */
/* ========================= */

.ratings-section{
  padding:100px 6%;
  background:#fff5f8;
  text-align:center;
}

.ratings-section h2{
  font-size:clamp(2rem,5vw,3rem);
  margin-bottom:60px;
}

.ratings-container{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.rating-card{
  background:white;
  padding:40px 25px;
  border-radius:22px;
  box-shadow:0 12px 35px rgba(0,0,0,0.08);
  transition:0.4s ease;
}

.rating-card:hover{
  transform:translateY(-10px);
}

.stars{
  color:gold;
  font-size:1.5rem;
  margin-bottom:15px;
}

/* ========================= */
/* FEATURES */
/* ========================= */

.features{
  padding:100px 6%;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.feature-box{
  background:#111;
  color:white;
  padding:40px;
  border-radius:22px;
  transition:0.4s ease;
}

.feature-box:hover{
  background:#ff4f81;
  transform:translateY(-8px);
}

/* ========================= */
/* FOOTER */
/* ========================= */

footer{
  background:#000;
  color:white;
  text-align:center;
  padding:30px 20px;
}

/* ========================= */
/* ANIMATION */
/* ========================= */

@keyframes fadeIn{
  from{
    opacity:0;
  }
  to{
    opacity:1;
  }
}

/* ========================= */
/* MOBILE RESPONSIVE */
/* ========================= */

@media(max-width:768px){

  .hero{
    min-height:80vh;
  }

  .nav-center a{
    font-size:1.4rem;
  }

}

@media(max-width:480px){

  .hero-content h1{
    font-size:2.2rem;
  }

  .btn{
    width:100%;
    max-width:280px;
  }
}