/* Reset & base styling */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

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

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 8%;
  background-color: #111;
  color: white;
}

.logo {
  font-size: 1.5rem;
  font-weight: 600;
}

.navbar nav a {
  color: #ccc;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}

.navbar nav a:hover,
.navbar nav a.active {
  color: #ffb703;
}

/* Hero Section */
.hero {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: white;
  text-align: center;
  padding: 100px 20px;
}

.hero h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

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

.btn {
  background-color: #ffb703;
  color: #111;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.btn:hover {
  background-color: #ffa41b;
}

/* Product Section */
.product-section {
  padding: 60px 8%;
  text-align: center;
}

.section-title {
  font-size: 1.8rem;
  margin-bottom: 30px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.product-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  transition: 0.3s;
}

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

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

.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.product-card p {
  margin-bottom: 10px;
  color: #555;
}

/* Footer */
footer {
  background-color: #111;
  color: white;
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

html {
  scroll-behavior: smooth;
}


/* Responsive */
@media (max-width: 768px) {
  .hero h2 {
    font-size: 1.6rem;
  }
  .navbar nav a {
    margin-left: 10px;
  }
}
