@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,200..1000;1,200..1000&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Mulish', Helvetica, Arial, Lucida, sans-serif;
}

body,
html {
  background-color: #fff;
  color: #333;
  overflow-x: hidden;
  scroll-padding-top: 90px;
  /* adjust based on navbar height */
}

/* --- NAVBAR --- */
.navbar {
  transition: background-color 0.3s ease;
  background-color: #FFD700;
  padding: 1rem 2rem;
  width: 100%;
  overflow-x: hidden;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

.navbar-scrolled {
  background-color: white !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-scrolled .nav-link,
.navbar-scrolled .navbar-brand {
  color: white !important;
}

.navbar .nav-link,
.navbar .navbar-brand {
  color: white;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: white !important;
  white-space: nowrap;
}

.navbar .nav-link {
  font-weight: 600;
  font-size: 1rem;
  color: #333;
  white-space: nowrap;
  margin-left: 1.5rem;
}

.navbar .nav-link:hover {
  color: #FF6B6B;
}

/* --- HERO SECTION --- */
.hero-section {
  width: 100%;
  min-height: 100vh;
  padding: 6rem 0 3rem;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #FFD700 0%, #FFFFFF 100%);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: #FFFFFF;
}

.btn-primary {
  background-color: #FF6B6B;
  border-color: #FF6B6B;
  padding: 0.75rem 2rem;
  font-weight: 600;
}

.btn-primary:hover {
  background-color: #e05a5a;
  border-color: #e05a5a;
}

.btn-outline-primary {
  border-color: #FF6B6B;
  color: #FF6B6B;
}

.btn-outline-primary:hover {
  background-color: #FF6B6B;
  color: white;
}

.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* --- BENEFITS SECTION --- */
.benefit-card {
  border-radius: 15px;
  transition: transform 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover {
  transform: translateY(-10px);
}

.benefit-card i {
  font-size: 2rem;
  margin-bottom: 1rem;
}

/* --- PRODUCTS SECTION --- */
.product-card {
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s;
  border: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.product-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* --- TESTIMONIALS SECTION --- */
.testimonial-card {
  border-left: 4px solid #FFD700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* --- CTA SECTION --- */
.cta-section {
  background-color: #FF6B6B;
  color: white;
  padding: 4rem 0;
  border-radius: 15px;
}

/* --- FOOTER --- */
.footer {
  background-color: #333;
  color: white;
  padding: 4rem 0 2rem;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: #FFD700;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 991.98px) {
  .hero-section {
    padding-top: 5rem;
    padding-bottom: 3rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  .navbar {
    padding: 0.75rem 1rem;
  }

  .hero-section {
    padding-top: 4rem;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-img {
    margin-top: 2rem;
  }

  .btn-primary,
  .btn-outline-primary {
    width: 100%;
    margin-bottom: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hero-section {
    padding-top: 3.5rem;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .benefit-card,
  .product-card,
  .testimonial-card {
    margin-bottom: 1.5rem;
  }
}

/* --- UTILITY CLASSES --- */
.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.rounded-15 {
  border-radius: 15px;
}

.text-primary {
  color: #FFD700 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}