* {
  box-sizing: border-box;
  margin;0;
  padding:0;
}
body{
  font-family:'Poppins' , sans-serif;
}
html{
  scroll-behavior:smooth;
}
section {
  width: 100%;
  scroll-margin-top: 100px;
}
@media (max-width: 768px) {
  section {
    padding-left: 20px;
    padding-right: 20px;
  }
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  z-index: 2000;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: #111;
}

.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
  z-index: 2000;
}

.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #0d6efd;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-btn {
  padding: 10px 22px;
  background: #0d6efd;
  color: #fff !important;
  border-radius: 20px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}



/* Mobile */
@media (max-width: 768px) {
  .hamburger {
    display: block;
}
  
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 100%;
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }
}
.hero {
  display: flex;
  align-items: center;
  padding: 60px 40px;
  background-image: url('White.jpeg'); /* product image as background */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh; /* fill viewport height */
  color: #ffffff; /* text color white for contrast */
  justify-content: flex-start;
}

.hero-content {
  max-width: 500px;
  /* optional: add background overlay for readability */
  background: rgba(0,0,0,.35);
  padding: 30px;
  border-radius: 15px;
  margin-left: 20px;
  backdrop-filter: blur(6px);
  padding-top: 120px;
  z-index: 1000;
}

.hero-content h1 {
  font-size: 48px;
  line-height:1.2;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
  line-height:1.6;
}

.btn {
  padding: 15px 35px;
  background-color: #0d6efd;
  color: #ffffff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  display:inline-block;
}

.btn:hover {
  background-color: #0d6efd;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transform: translateY(-2px);
}

/* Mobile adjustments */
@media screen and (max-width: 768px) {
  .hero {
    justify-content: flex-start; /* keep text to left */
    padding: 40px 20px;
    min-height: 70vh;
  }

  .hero-content {
    padding: 20px;
    max-width: 70%;
    bottom: 20px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-content p {
    font-size: 20px;
  }
}
/* Features Section */
.features {
  padding: 80px 40px;
  background-color: #f8f9fa;
}

.section-title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 50px;
  color: #111;
}

.features-container {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  flex: 1;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0d6efd;
}

.feature-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .features {
    padding: 60px 20px;
  }

  .features-container {
    flex-direction: column;
  }

  .section-title {
    font-size: 28px;
  }
}
/* Gallery Section */
.gallery {
  padding: 80px 40px;
  background: #ffffff;
}

.gallery-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.product-card {
  background: #f8f9fa;
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: all 0.3s ease;
}

.product-card img {
  width: 100%;
  max-height: 220px;
  object-fit: contain;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  product-card:hover img{
    transition: scale(1.05);
  }
}

.product-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: #111;
}

.product-card p {
  font-size: 18px;
  font-weight: 600;
  color: #0d6efd;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Mobile */
@media (max-width: 768px) {
  .gallery {
    padding: 60px 20px;
  }

  .gallery-container {
    grid-template-columns: 1fr;
  }
}
/* CTA Section */
.cta {
  padding: 80px 20px;
  text-align: center;
  background: #0d6efd;
  color: #fff;
}

.cta h2 {
  font-size: 40px;
  margin-bottom: 15px;
}

.cta p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #fff;
  color: #0d6efd;
  font-size: 18px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f1f1f1;
  transform: translateY(-3px);
}

/* Mobile */
@media (max-width: 768px) {
  .cta h2 {
    font-size: 28px;
  }

  .cta p {
    font-size: 16px;
  }
}
/* Footer */
.footer {
  background: #111;
  color: #ffffff;
  padding: 60px 20px 30px;
}

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

.footer-col h3,
.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
  font-size: 14px;
  color: #bbb;
  text-decoration: none;
  display: block;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 13px;
  color: #777;
}

/* Mobile */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}