/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #06c2db;
  color: #fff;
  padding: 1rem 2rem;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links li a {
  color: #fff;
  text-decoration: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  height: 90vh;
  background-size: cover;
  display: flex;
  background-position: center;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.hero-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0px;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.24);
  color:white;
}
.hero-content h1 {
  font-size: 3rem;
  color: white;
  text-shadow: 2px 2px 2px rgba(0,0,0,.1);
}
.hero-container{width: 100%; height:90vh; position: relative; text-align: center;}
.hero-banner{width: 100%; height:100%;}
.btn {
  display: inline-block;
  margin-top: 1rem;
  background: #00b894;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

.btn:hover {
  background: #019875;
}

/* Features */
.features {
  padding: 4rem 2rem;
  background: #f9f9f9;
  text-align: center;
}

.feature-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.feature-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
}

/* Products */
.products {
  padding: 4rem 2rem;
  text-align: center;
}

.product-grid {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.product-card {
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  width: 300px;
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  font-size: 1.25rem !important;
}
/* Testimonials */
.testimonials {
  background: #eee;
  padding: 4rem 2rem;
  text-align: center;
}

.testimonial-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.testimonial-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  max-width: 300px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

/* Contact CTA */
.contact-cta {
  padding: 4rem 2rem;
  background: #00b894;
  color: #fff;
  text-align: center;
}

/* Footer */
footer {
  background: #111;
  color: #ccc;
  text-align: center;
  padding: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    background: #111;
    position: absolute;
    top: 60px;
    right: 0;
    width: 200px;
    padding: 1rem;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
.hero-container{width: 100%; height:50vh;}
  .feature-grid, .product-grid, .testimonial-grid {
    flex-direction: column;
    align-items: center;
  }
  .hero-content h1 {
  font-size: 2rem;
  
}
}
