/* Global Styles */
body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  background-color: #f6fbf5;
  color: #1a1a1a;
}

h1 {
  color: #ffffff;
  text-align: center;

}

h2 {
  margin-top: 30px;
  color: #000000;
  text-align: center;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Header Section */
.whatsapp-banner {
  background-color: #2cb84a;
  color: white;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;


  display: flex;
  justify-content: space-between; /* pushes text left, button right */
  align-items: center;
  flex-wrap: wrap;
}

.hero {
  background: url('images/bck_gnd.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 100px 20px 60px;
}

.hero h1 {
  font-size: 80px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn-primary {
  background-color: #2cb84a;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: bold;
}

/* Intro Section */
.intro {
  padding: 40px 20px;
  max-width: 900px;
  margin: 0 auto;
}

.intro-content p {
  margin-bottom: 15px;
}

/* How It Works */
.how-it-works {
  background-color: #f2fff2;
  padding: 40px 20px;
}

.steps {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.step {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 0 5px rgba(0,0,0,0.05);
}

/* Activities Section */
.activities-section {
  background-color: #e6f9e7;
  padding: 50px 20px;
  text-align: center;
}

.activities-section h2 {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 30px;
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
}

@media (max-width: 992px) {
  .activities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .activities-grid {
    grid-template-columns: 1fr;
  }
}

.activity-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.activity-card:hover {
  transform: translateY(-5px);
}

.activity-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.activity-info {
  padding: 20px;
  text-align: left;
}

.activity-info h3 {
  font-size: 18px;
  margin-bottom: 8px;
  margin-top: 2px;
  font-weight: 600;
}

.activity-info p {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Benefits Section */
.benefits-section {
  background-color: #f1fcef;
  padding: 60px 20px;
  text-align: center;
}

.benefits-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #0b1d03;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  background-color: #ffffff;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 36px;
  color: #4caf50;
  margin-bottom: 15px;
  display: block;
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0b1d03;
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 1rem;
  color: #333;
  line-height: 1.5;
}

/* Responsive Layout */
@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

/* Location Section */
.location {
  padding: 40px 20px;
  text-align: center;
}

.location-container {
  display: flex;
  justify-content: space-between; /* Align them side by side */
  gap: 20px; /* Space between the two elements */
  flex-wrap: wrap; /* Allow items to wrap on smaller screens */
}

.contact-details {
  flex: 1 1 48%; /* Allow it to take up 48% of the space (flex-grow, flex-shrink, flex-basis) */
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
}

.contact-details h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #0b1d03;
}

.contact-details h4 {
  font-size: 18px;
  margin-top: 20px;
  font-weight: 600;
}

.contact-details p {
  font-size: 16px;
  margin-top: 8px;
  color: #333;
}

.map-container {
  flex: 1 1 48%; /* Allow it to take up 48% of the space (flex-grow, flex-shrink, flex-basis) */
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Responsive Layout for Smaller Screens */
@media (max-width: 768px) {
  .location-container {
    flex-direction: column; /* Stack elements vertically on smaller screens */
    align-items: center; /* Center the content */
  }

  .contact-details, .map-container {
    max-width: 100%; /* Allow full width on smaller screens */
  }
}


/* Newsletter Section */
.newsletter {
  background-color: #2cb84a;
  color: white;
  text-align: center;
  padding: 40px 20px;
}

.newsletter form {
  margin: 20px auto;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.newsletter input[type="email"] {
  padding: 10px;
  border: none;
  border-radius: 5px;
  width: 250px;
}

.newsletter button {
  padding: 10px 20px;
  background: #ffa500;
  color: black;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 10px;
  color: white;
  border: 1px solid white;
  padding: 8px 16px;
  border-radius: 5px;
}

/* Footer */
footer {
  background-color: #0b0b23;
  color: white;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  line-height: 1.6;
}

footer .socials a {
  color: white;
  margin: 0 10px;
}

footer .socials a:hover {
  text-decoration: underline;
}
.socials a {
  margin: 0 10px;
  font-size: 24px;
  color: #333;
  text-decoration: none;
}
.socials a:hover {
  color: #555;
}

footer small {
  font-size: 12px;
  color: #aaa;
  margin-top: 10px;
}

@media (min-width: 768px) {
  footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    padding: 0 40px;
  }

  .footer-section {
    flex: 1;
  }

  .footer-links {
    justify-content: center;
  }
}
.map-contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 40px 20px;
}

.map-contact-container .contact-details,
.map-contact-container .map-container {
  flex: 1 1 48%;
  box-sizing: border-box;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: 0;
}

/* Responsive fallback for smaller screens */
@media (max-width: 768px) {
  .map-contact-container {
    flex-direction: column;
  }

  .map-contact-container .contact-details,
  .map-contact-container .map-container {
    width: 100%;
  }
}



/* Modal Background */
.modal {
  display: none;
  position: fixed;
  z-index: 999; /* make sure it stays on top */
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);

}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 100px auto;
  padding: 30px;
  border-radius: 10px;
  max-width: 500px;
  position: relative;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  animation: fadeIn 0.4s ease;
  text-align: center;
  

}

/* Fade In Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Close Button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Form Inputs */
.modal-content input {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 5px;
  align-items: center;
  box-sizing: border-box; /* ensures padding doesn't mess up width */
}


/* Submit Button */
.modal-content button {
  padding: 10px 20px;
  background-color: #2cb84a;
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  width: 100%;
  align-items: center;
}

.modal-content button:hover {
  background-color: #239c3e;
}
