body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #96c4f0;
  color: #111;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1em 2em;
  background: #111;
  color: white;
}

.navbar a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3em 2em;
  background: linear-gradient(#fffef5, #ec4629);
}

.hero-text {
  max-width: 50%;
}

.hero-text h1 {
  font-size: 2.5em;
  margin-bottom: 0.5em;
}

.hero-text p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
}

.hero-image img {
  width: 500px;
  max-width: 100%;
  border-radius: 10px;
}

.btn {
  background: red;
  color: black;
  padding: 0.7em 1.5em;
  border: none;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

.about, .contact, .product-section {
  padding: 2em;
  text-align: center;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5em;
  padding: 2em;
}

.product-card {
  background: white;
  padding: 1em;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.product-card img {
  width: 100%;
  border-radius: 10px;
}

.product-card h3 {
  margin: 0.5em 0;
}





.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: white;
  max-width: 500px;
  background: rgba(0, 0, 0, 0.5); /* optional for contrast */
  padding: 20px;
  border-radius: 10px;
}

.btn {
  display: inline-block;
  padding: 10px 20px;
  background: rgb(49, 168, 236);
  color: white;
  text-decoration: none;
  margin-top: 10px;
  border-radius: 5px;
}
.about-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 10%;
  gap: 40px;
  flex-wrap: wrap;
}

.about-text {
  flex: 1;
  min-width: 300px;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.about-image {
  flex: 1;
  min-width: 300px;
}

.about-image img {
  width: 80%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
