* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  color: #333;
  line-height: 1.6;
}
/* HEADER & BACKGROUND */
header {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
              url("./images/images/bg.jpg") center/cover no-repeat;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

/* NAVIGATION BAR */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: relative;
  z-index: 2; /* keeps nav above background and hero text */
}

/* LOGO */
.logo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffb6c1;
}

/* NAV LINKS */
.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #f79aa8;
}

/* HERO CONTENT (centered text) */
.hero-content {
  text-align: center;
  margin-top: auto;
  margin-bottom: 120px; /* pushes text upward slightly */
  z-index: 1;
}

.hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto 25px auto;
}

.btn {
  background-color: #ff69b4; /* deep pink by default */
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ffb6c1; /* light pink on hover/click */
}



section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}

h2 {
  text-align: center;
  margin-bottom: 30px;
  color: #ff5ca1;
}

.about {
  text-align: center;
  max-width: 800px;
  margin: auto;
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service {
  background: #fff0f7;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.service:hover {
  transform: translateY(-5px);
}

.service img {
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
  margin-bottom: 15px;
}




.contact {
  text-align: center;
}

.contact p {
  margin-bottom: 15px;
}

/* Social Media Icons */
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: white;
  font-size: 20px;
  transition: transform 0.3s;
}

.social-btn:hover {
  transform: scale(1.1);
}

.whatsapp { background: #25d366; }
.instagram { background: #E4405F; }

footer {
  text-align: center;
  background: #ff5ca1;
  color: white;
  padding: 15px;
  margin-top: 40px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 25px;
  right: 25px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 2px 2px 3px #999;
  z-index: 100;
}

.whatsapp-float i {
  margin-top: 13px;
}
/* SCROLLABLE IMAGE SECTIONS */
section {
  padding: 60px 40px;
  text-align: center;
  background-color: #fff;
}

section:nth-child(even) {
  background-color: #f9f9f9;
}

section h2 {
  font-size: 2rem;
  color: #ff69b4;
  margin-bottom: 10px;
}

section p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 20px;
}

/* HORIZONTAL SCROLL GALLERY */
.scroll-gallery {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px 0;
  scroll-behavior: smooth;
}

.scroll-gallery img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.scroll-gallery img:hover {
  transform: scale(1.05);
}

.scroll-gallery::-webkit-scrollbar {
  display: none; /* hide scrollbar for clean design */
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 28px;
  color: white;
  cursor: pointer;
}

/* MOBILE NAVIGATION STYLES */
@media (max-width: 768px) {
  nav {
    flex-wrap: wrap;
  }

  .hamburger {
    display: block;
    z-index: 10;
  }

  .nav-links {
  position: absolute;
  top: 80px;
  right: 0;
  background: rgba(255, 182, 193, 0.95);
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-height: 0;
  overflow-y: auto; /* allows scrolling */
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.4s ease-in-out;
  border-radius: 0 0 20px 20px;
  scrollbar-width: thin;
  scrollbar-color: #ff69b4 #ffd6e9; /* For Firefox */
}

/* Optional: Style the scrollbar for WebKit browsers (Chrome, Safari) */
.nav-links::-webkit-scrollbar {
  width: 6px;
}

.nav-links::-webkit-scrollbar-thumb {
  background-color: #ff69b4;
  border-radius: 4px;
}

.nav-links::-webkit-scrollbar-track {
  background-color: #ffd6e9;
}

.nav-links.active {
  max-height: 70vh; /* allows drop-down to occupy up to 70% of viewport height */
  opacity: 1;
  padding-top: 20px;
  transform: translateY(0);
}
.nav-links {
  transition: all 0.4s ease-in-out, opacity 0.4s ease-in-out;
}


/* Fade-in each link one after another */
.nav-links li {
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.nav-links.active li {
  opacity: 1;
  transform: translateY(0);
}

.nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
.nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
.nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
.nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
.nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
.nav-links.active li:nth-child(6) { transition-delay: 0.6s; }


  .nav-links a {
    color: white;
    font-size: 18px;
  }

  @keyframes slideDown {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Hamburger icon animation (X shape when open) */
  .hamburger.open i::before {
    content: "\f00d"; /* FontAwesome times icon */
  }
}


@media (max-width: 768px)
{
  header h1 {
    font-size: 2.3rem;
  }
  header p {
    font-size: 1rem;
  }
}
/* =========================
   REVIEWS / TESTIMONIALS SECTION
========================= */
#reviews {
  background-color: #fff0f7;
  padding: 60px 20px;
  text-align: center;
}

#reviews h2 {
  color: #ff5ca1;
  font-size: 2rem;
  margin-bottom: 30px;
}

.reviews-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 25px 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.review-text {
  font-style: italic;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.5;
}

.reviewer h3 {
  margin-bottom: 5px;
  font-size: 1.1rem;
  color: #333;
}

.stars {
  color: #ffb6c1;
  font-size: 1.2rem;
}

/* MOBILE RESPONSIVENESS */
@media (max-width: 768px) {
  #reviews h2 {
    font-size: 1.6rem;
  }
  .review-card {
    padding: 20px;
  }
}
