
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: white;
    color: black;
}
header {
    background-color: #5C4033;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 2px solid #ccc;
}
.logo {
    height: 50px;
}

nav {
  display: flex;
  align-items: center;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 3px;
  margin: 0;
  padding: 0;
}


/* === UNIFIED BUTTON STYLE for NAV and CTA === */
nav a,
.action-button {
  padding: 4px 14px;
  min-width: 90px;
  background-color: #f0b400;
  color: white;
  border: 2px solid white;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  font-size: 0.95rem;
  text-align: center;
  cursor: pointer;
  margin: 6px 6px;
  position: relative;
  overflow: hidden;
  display: inline-block;
  transition: transform 0.35s ease, box-shadow 0.3s ease;
}

nav a:hover,
.action-button:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.4);
  background-image: linear-gradient(120deg, #f0b400 0%, #ffe066 50%, #f0b400 100%);
  background-size: 200% 100%;
  background-position: left;
  animation: shimmer 0.8s linear forwards;
}

/* Reuse your exact shimmer keyframe */
@keyframes shimmer {
  100% {
    background-position: right;
  }
}


.mission-box {
    background-color: #003366;
    color: white;
    padding: 30px;
    margin: 20px;
    text-align: center;
	border-radius: 10px;
}

.mission-box p {
  line-height: 1.7;
}

.image-gallery {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    padding: 20px;
}
.image-box {
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}
.image-box img {
    width: 100%;
    display: block;
}
.image-box:hover {
    transform: scale(1.05);
}
.buttons {
    text-align: center;
    margin: 30px 0;
}

.cta-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* This is the ONLY space between them */
  flex-wrap: wrap;
  max-width: 500px; /* Prevents huge stretch */
  margin: 0 auto;   /* Centers the whole block */
}

.cta-container .action-button {
  width: auto;
  min-width: 140px;
  max-width: 220px;
  display: inline-block;
  text-align: center;
}

  .image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
  }

  .action-button {
    width: 100%;
    margin: 10px auto;
    display: block;
  }

  .mission-box p {
    padding: 0 10px;
    font-size: 1rem;
    text-align: center;
  }
}

@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav a {
    width: 90%;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    align-items: center;
  }

  .action-button {
    width: 90%;
    margin: 10px auto;
  }
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float img {
  width: 50px;
  height: 50px;
}

footer {
    background-color: #5C4033;
    color: white;
    text-align: center;
    padding: 20px;
}
