/* Banner Styles */
.banner-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.banner-container img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay for better text visibility */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
}

.banner-overlay h1 {
  color: #fff;
  font-size: 1.4rem;
  max-width: 700px;
  margin-bottom: 15px;
  font-weight:300;
}

.banner-overlay .cta-button {
  background-color: #04ce47;
  color: #fff;
  padding: 12px 24px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.banner-overlay .cta-button:hover {
  background-color: #e65c00;
}

/* Responsive Text Size */
@media (min-width: 768px) {
  .banner-overlay h1 {
    font-size: 2.2rem;
  }

  .banner-overlay .cta-button {
    font-size: 1.1rem;
  }
}

.product-section {
  background: #f5f5f5;
  padding: 40px 0;
}

.product-section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
}

.product-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  margin-bottom: 30px;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-card img {
  width: 100%;
  height: auto;
  display: block;
}

.product-content {
  padding: 20px;
  text-align: center;
}

.product-content h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
  color: #333;
}

.product-content p {
  color: #555;
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.product-btn {
  background-color: #ff6600;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  transition: background 0.3s ease;
}

.product-btn:hover {
  background-color: #e65c00;
}

  h1 { color: #e82231; font-size: 2.3em; margin-bottom: 10px; }
    h2 { margin-top: 36px; margin-bottom: 8px; }
    ul { margin-left: 24px; }
    .cta { background: #e82231; color: #fff; padding: 18px; border-radius: 8px; margin-bottom: 24px; margin-top: 36px; text-align: center;}
    .cta strong { font-size: 1.2em; }
    .contact { margin-top: 28px; font-size: 1.07em; }
    @media (max-width: 600px) {
      .container { padding: 2px; }
      .banner-overlay h1 { font-size: 1.2em; margin-bottom:5px}
    }

.navbar, nav.navbar{z-index:1000}
