body, html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  font-family: "Poppins", sans-serif;
  color: white;
  overflow-y: auto;
  background-color: #0e3d2b;
}

/* === Carousel === */
.carousel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.carousel img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.carousel img.active { opacity: 1; }

/* === Overlay === */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.55);
  z-index: 1;
}

/* === Main === */
main {
  position: relative;
  z-index: 5;
  text-align: center;
  padding: 3vh 2vw;
}
.logo {
  width: clamp(240px, 28vw, 420px);  /* dynamically scales with screen width */
  max-width: 90vw;
  margin-bottom: 15px;
  filter: drop-shadow(0 0 15px rgba(0,0,0,0.6)); /* soft glow for contrast */
}


/* === Headings & Buttons === */
h1 {
  font-size: clamp(4vw, 4vw, 64px);   /* responsive dynamic size */
  color: #f1d67a;                      /* goldish tone */
  text-shadow: 5px 5px 20px rgba(14, 61, 43, 0.9); /* soft dark glow for contrast */
  margin-bottom: 20px;
  font-weight: 600;
  letter-spacing: 1px;  
}

/* Ensure vertical stacking */
.cta-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

#whoWeAreBtn {
  padding: 12px 25px;
  border: 2px solid #f1d67a;
  
  background: #0e3d2b;
  color: #f1d67a;
  font-size: 1.2em;
  cursor: pointer;
  transition: all 0.3s ease;
}
#whoWeAreBtn:hover {
  background: transparent;
  color: #f1d67a;
}

/* === Drawer === */
.drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.92);
  color: white;
  overflow-y: auto;
  z-index: 20;
  animation: slideDown 0.5s ease;
}
@keyframes slideDown {
  from {transform: translateY(-100%);}
  to {transform: translateY(0);}
}
.drawer-content {
  max-width: 900px;
  margin: 60px auto;
  padding: 25px;
  background: rgba(14,61,43,0.15);
  border: 3px solid #0e3d2b;
  border-radius: 4px;
}
.drawer-content h2 {
  color: #0e3d2b;
  text-align: center;
}
.drawer-content p {
  line-height: 1.6;
  text-align: justify;
}
#closeDrawer {
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 2em;
  cursor: pointer;
  color: #0e3d2b;
}

/* === Icon Grid === */
.icon-grid-bg {
  background: rgba(14, 61, 43, 0.55);
  display: inline-block;
  padding: 25px 30px;
  border-radius: 6px;
}
.icon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 150px));
  gap: 22px;
  justify-content: center;
}
.icon-box {
  width: 150px;
  height: 150px;
  border: 3px solid white;   /* white border */
  background: rgba(0,0,0,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  overflow: hidden;
}
.icon-box img {
  opacity: 80%;
  max-width: 70%;
  max-height: 70%;
  object-fit: contain;
  transition: all 0.3s ease;
}
.icon-box:hover {
  box-shadow: 0 0 20px 5px rgba(241,214,122,0.8); /* goldish glow */
  transform: scale(1.03);
}
.icon-box:hover img { opacity: 1;           /* full visible on hover */
  filter: brightness(1.2); }

/* === Responsive === */
@media (max-width: 768px) {
  h1 { font-size: 3em; }
  .icon-grid { gap: 18px; }
  .icon-box { width: 130px; height: 130px; }
}
@media (max-width: 480px) {
  .icon-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .icon-box { width: 110px; height: 110px; }
  #whoWeAreBtn { font-size: 1em; }
}
