/* Global */
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(to bottom right, #fff7f9, #ffeef4, #fff);
  color: #1a1a1a;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Announcement Bar */
.announcement-bar {
  background: #ffe4ec; /* soft pink */
  color: #7a1d3d;
  text-align: center;
  padding: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
  border-bottom: 1px solid #f9c6d4;
  animation: fadeIn 1.2s ease-in;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
  animation: fadeUp 1.2s ease-out;
}
.hero-banner .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(4px);
}
.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #e11d48; /* rose pink */
  animation: slideInDown 1s ease-out;
}
.hero-subtitle {
  margin-top: 1.2rem;
  font-size: 1.2rem;
  color: #444;
  animation: fadeIn 1.6s ease-in;
}
.hero-btn {
  margin-top: 2rem;
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 1rem;
  background: linear-gradient(90deg, #e91e63, #fbbf24);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: all 0.3s ease;
  animation: fadeUp 1.8s ease-out;
}
.hero-btn:hover {
  background: linear-gradient(90deg, #d81b60, #f59e0b);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

/* Section Title */
.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #e91e63;
  text-align: center;
  animation: fadeIn 1s ease-in;
}

/* Product Cards */
.product-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1.2s ease-out;
}
.product-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 0.75rem;
  transition: transform 0.4s ease;
}
.product-card h3 {
  margin-top: 0.8rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c2c2c;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
.product-card:hover img {
  transform: scale(1.08) rotate(1deg);
}

/* How It Works + Services + Why Choose Us */
.step, .services div, .why-choose div {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 1.3s ease-out;
}
.step:hover, .services div:hover, .why-choose div:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Footer */
footer {
  animation: fadeIn 2s ease-in;
}

/* WhatsApp Floating Button */
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: white;
  padding: 0.9rem 1.8rem;
  border-radius: 9999px;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
  transition: 0.3s;
  animation: pulse 2s infinite;
}
.whatsapp-btn:hover {
  background: #1ebc59;
  transform: translateY(-3px) scale(1.05);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-50px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 10px rgba(37,211,102,0.6); }
  50% { box-shadow: 0 0 25px rgba(37,211,102,0.9); }
}


.product-card:hover::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  box-shadow: 0 0 50px rgba(233, 30, 99, 0.3);
  opacity: 0;
  animation: glow 0.6s forwards;
}
@keyframes glow {
  from { opacity: 0; }
  to { opacity: 1; }
}

