/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    scroll-behavior: smooth;
}

/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

/* Header */
header {
  background-color: #ffffff;
  border-bottom: 1px solid #ddd;
  padding: 2px 0; 
  position: sticky;
  top: 0;
  z-index: 100;
}


.logo {
  font-size: 22px;
  text-decoration: none;
  color: #0d47a1;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 25px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #1976d2;
}


/* Hero Section */
#hero {
  background: url('hero.jpg') center/cover no-repeat;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 30px;
}

.btn {
  background-color: #ffca28;
  color: #333;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #ffc107;
}




/* Features Section */
.features {
  background: #fff;
  padding: 50px 0;
}

.feature-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: space-between;
}

.feature-card {
  background: #e3f2fd;
  flex: 1 1 30%;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: center;
}
.product-card {
  background: #ffffff;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  box-shadow: none;
  text-align: center;
  transition: border-color 0.3s ease;
}

.product-card:hover {
  border-color: #1976d2;
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  background-color: white;
  border-radius: 6px;
  margin-bottom: 12px;
}

.product-card h3 {
  font-size: 16px;
  color: #333;
  margin-bottom: 6px;
}

.product-card p {
  font-size: 15px;
  font-weight: 600;
  color: #2e7d32;
  margin-bottom: 10px;
}

.product-card button {
  padding: 10px 20px;
  font-size: 14px;
  border: none;
  background-color: #1976d2;
  color: white;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.product-card button:hover {
  background-color: #0d47a1;
}
.product-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  align-items: start;
}



/* Footer */
footer {
  background-color: #0d47a1;
  color: #fff;
  padding: 5px 0;
  text-align: center;
  margin-top: 60px;
}

.footer-content p {
  margin: 5px 0;
}

.footer-content a {
  color: #ffca28;
  text-decoration: none;
}


/* Responsive */
@media (max-width: 768px) {
  .hero-grid {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-image img {
    max-width: 300px;
  }
}

