* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
  background-color: #072016; /* dark green like your screenshot */
}

a
{
    text-decoration: none;
}

/* Layout container */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 1.2rem;
  padding: 1rem;
}

/* Logo */
.logo {
  width: 500px;
  height: auto;
  margin-bottom: 0.2rem;
  transform: translateY(-10%);
}

/* Banner container */
.banners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
  width: 100%;
  max-width: 850px; /* match screenshot width */
  opacity: 0.9;
}

/* Banner styling */
.banner {
  position: relative;
  width: 100%;
  height: 150px;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 1.6s ease forwards;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* Create an overlay layer for the hover effect */
.banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0); /* transparent by default */
  transition: background 0.4s ease;
  z-index: 1;
}

.banner:hover::after {
  background: rgba(0, 0, 0, 0.4); /* slight dark overlay on hover */
}

.banner:hover {
  transform: scale(1.02); /* gentle zoom */
  filter: brightness(0.9); /* makes image slightly dimmer */
}

/* Make sure text stays above overlay */
.text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  opacity: 0;
  animation: textFade 1.6s ease forwards;
  animation-delay: 0.1s;
}

.text h2 {
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.text p {
  font-size: clamp(0.8rem, 1.8vw, 1rem);
  font-weight: 400;
}

/* Animations */
@keyframes fadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes textFade {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

/* Responsive tweaks */
@media (max-width: 1024px) {
  .banners {
    max-width: 90%;
  }
  .banner {
    height: 130px;
    border-radius: 20px;
  }
}

@media (max-width: 768px) {
  .banner {
    height: 110px;
    border-radius: 18px;
  }
  .text h2 {
    font-size: 1rem;
  }
  .text p {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .banners {
    max-width: 92%;
  }
  .banner {
    height: 95px;
    border-radius: 16px;
  }
  .text h2 {
    font-size: 0.9rem;
  }
  .text p {
    font-size: 0.75rem;
  }
}
