/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background-color: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('assets/bg-health.jpg') center/cover no-repeat;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.cta-btn {
  padding: 12px 24px;
  font-size: 1rem;
  background-color: #00a859;
  color: #fff;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background-color: #007d42;
}

/* Video Banner */
.video-banner {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
}

.video-banner h2 {
  margin-bottom: 20px;
  font-size: 2rem;
  color: #00a859;
}

.video-banner video {
  width: 90%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Product Grid */
.product-grid {
  padding: 60px 20px;
  text-align: center;
}

.product-grid h2 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 40px;
}

.product-card {
  display: inline-block;
  width: 280px;
  background: #fff;
  margin: 15px;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.product-card h3 {
  font-size: 1.4rem;
  color: #00a859;
  margin-bottom: 10px;
}

.product-card p {
  font-size: 1rem;
  margin-bottom: 15px;
  color: #444;
}

.learn-more-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00a859;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s ease;
}

.learn-more-btn:hover {
  background-color: #007d42;
}

/* Footer */
footer {
  background-color: #00a859;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 50px;
}

footer a {
  color: #fff;
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
  .product-card {
    width: 90%;
    margin: 20px auto;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .video-banner video {
    width: 100%;
  }
/* Navigation */
.navbar {
  background-color: #1f2937;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  position: relative;
  z-index: 100;
}

.logo {
  font-size: 20px;
  font-weight: bold;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.nav-links li a:hover {
  color: #22c55e;
}

.menu-toggle {
  font-size: 26px;
  cursor: pointer;
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 60px;
    left: 0;
    background-color: #1f2937;
    width: 100%;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}.testimonials {
  padding: 60px 20px;
  background: #f8f9fa;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333;
}

.testimonial-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  justify-content: center;
}

.testimonial-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  font-size: 1.1rem;
  color: #111;
  margin-bottom: 10px;
}

.testimonial
.explore-products {
  background: #fff;
  padding: 50px 20px;
  text-align: center;
}

.explore-products h2 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 30px;
}

.product-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.explore-btn {
  background: #198754;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.explore-btn:hover {
  background: #145f3c;
}.testimonials {
  background: #f9f9f9;
  padding: 50px 20px;
  text-align: center;
}

.testimonials h2 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 30px;
}

.testimonial-slider {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding: 20px 0;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.testimonial-slider::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.testimonial {
  flex: 0 0 80%;
  background: #fff;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.testimonial:hover {
  transform: scale(1.02);
}

.testimonial p {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #555;
}

.testimonial h4 {
  font-weight: bold;
  color: #198754;
}.neolife-connect {
  background: linear-gradient(135deg, #1e7e34, #28a745);
  color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.neolife-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.neolife-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.btn-neolife {
  background: #fff;
  color: #28a745;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-neolife:hover {
  background: #f8f9fa;
  color: #1e7e34;
}.personal-questions {
  background: #f0fdf4;
  color: #222;
  padding: 60px 20px;
  text-align: center;
  border-top: 2px solid #28a745;
}

.personal-box h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1c4532;
}

.personal-box p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.btn-questions {
  background: #28a745;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 8px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-questions:hover {
  background: #218838;
}.hero {
  background: url('assets/hero-bg.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 25px;
}

.hero-btn {
  background-color: #28a745;
  color: #fff;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #218838;
}.footer {
  background: #111;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
}

.footer-about,
.footer-links,
.footer-contact {
  flex: 1 1 250px;
  margin: 20px;
}

.footer-about h3,
.footer-links h4,
.footer-contact h4 {
  color: #28a745;
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact a {
  color: #28a745;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 10px;
  border-top: 1px solid #333;
  font-size: 0.9rem;
  color: #aaa;
}