body {
  font-family: "Segoe UI", sans-serif;
  background: #f9f9f9;
}

/* Navbar Hover Effect */
.navbar .nav-link {
  position: relative;
  color: #333;
  transition: color 0.3s;
  margin-left: 50px;
}
.navbar .nav-link:hover {
  color: #f97316;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #f97316;
  transition: width 0.3s;
}
.navbar .nav-link:hover::after {
  width: 100%;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .image-label {
    font-size: 0.8rem;
    padding: 8px 12px;
    gap: 6px;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #28a745, #218838);
  padding: 50px 15px;
  color: white;
  text-align: center;
}
.hero h1 {
  font-size: 3rem;
  font-weight: bold;
}

/* Section Titles */
.section-title {
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #218838;
}

/* Section Cards */
.info-card {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0px 6px 18px rgba(0, 0, 0, 0.1);
  height: 100%;
}

/* Product Images */
.fixed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s;
}
.fixed-img:hover {
  transform: scale(1.05);
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}

/* Founder */
.founder img {
  border-radius: 10px;
  width: 180px;
  height: 250px;
  object-fit: cover;
  box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
}
