/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #ffffff;
    color: black; /* Updated font color for readability on white background */
}

/* Header */
.header {
    background-color: rgb(17, 102, 28);
    color: white;
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
}

.logo {
    width: 100px;
}

.header-text {
    flex-grow: 1;
    margin-left: 20px;
}

.title {
    font-size: 1.8rem;
    font-weight: bold;
}

.subtitle {
    font-size: 0.9rem;
}

.subtitle a {
    color: #fff;
    text-decoration: underline;
}

.header-buttons {
    display: flex;
    gap: 10px;
}

.btn-outline {
    text-decoration: none;
    padding: 10px 20px;
    color: white;
    border: 2px solid white;
    border-radius: 5px;
    font-size: 0.9rem;
    text-align: center;
}

.btn-outline:hover {
    background-color: #fff;
    color: black;
}

.btn-highlight {
    text-decoration: none;
    padding: 10px 20px;
    background-color: yellow;
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
}

.btn-highlight:hover {
    background-color: #f1c40f;
}

/* General Navbar Styles */
.navbar {
  background-color: #836539;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap; /* Allow wrapping for small screens */
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  margin: 0 10px;
  padding: 5px 10px;
}

.nav-link.active {
  background-color: white;
  color: black;
  border-radius: 20px;
}

.nav-link:hover {
  text-decoration: underline;
}

.social-icon img {
  width: 24px;
  height: 24px;
}

/* Dropdown Styles */
.dropdown {
  position: relative;
  display: inline-block;
  z-index: 1000; /* Ensure it appears above the hero section */
}

.dropdown-btn {
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  min-width: 200px;
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.dropdown-content a {
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  display: block;
  text-align: left;
}

.dropdown-content a:hover {
  background-color: #575757;
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* Membership Benefits Section */
.membership-benefits {
  text-align: center;
  padding: 50px 20px;
  background-color: #f4f4f4;
}

.membership-benefits h2 {
  font-size: 2rem;
  color: black;
  margin-bottom: 20px;
}

.membership-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.6;
}

.membership-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.membership-content li {
  margin-bottom: 8px;
}

.membership-content .btn-highlight {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: yellow;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.membership-content .btn-highlight:hover {
  background-color: #f1c40f;
}

/* Membership Benefits Section */
.membership-benefits {
  text-align: center;
  padding: 50px 20px;
  background-color: #f4f4f4;
}

.membership-benefits h2 {
  font-size: 2rem;
  color: black;
  margin-bottom: 20px;
}

.membership-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.6;
}

.membership-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.membership-content li {
  margin-bottom: 8px;
}

/* Membership Terms Link */
.membership-terms {
  text-align: center;
  margin-top: 15px;
}

.membership-terms a {
  font-size: 0.9rem;
  color: rgb(19, 90, 197);
  text-decoration: none;
}

.membership-terms a:hover {
  text-decoration: underline;
}

/* Membership Button */
.membership-content .btn-highlight {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 20px;
  background-color: yellow;
  color: black;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
}

.membership-content .btn-highlight:hover {
  background-color: #f1c40f;
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
  .dropdown-content {
      display: block;
      position: static;
      background-color: transparent;
      box-shadow: none;
  }

  .dropdown-btn {
      display: none;
  }
}



.social-icon img {
    width: 24px;
    height: 24px;
}

/* Main Sections */


/* Hero Section */
.hero-section {
    position: relative;
    width: 100%; /* Stretch across the screen */
    height: 500px; /* Adjust as needed for image height */
    overflow: hidden;
  }
  
  .hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 0;
  }
  
  .hero-slide.active {
    opacity: 1;
    z-index: 1;
  }
  
  .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
  }
  
  .hero-text h2 {
    font-size: 2rem;
    background-color: yellow;
    color: black;
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 10px;
  }
  
  .hero-text h3 {
    font-size: 1.5rem;
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent grey background */
    padding: 10px 20px;
    display: inline-block; /* Ensure the background only covers the text */
    border-radius: 5px; /* Optional: Rounded corners for a polished look */
  }
  
  /* Icon Flow Section */
  .icon-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 30px 0;
    gap: 20px;
  }
  
  .step {
    text-align: center;
    flex: 1; /* Ensure equal spacing */
  }
  
  .step img.icon {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 1rem;
    margin: 0;
  }
  
  .arrow {
    font-size: 2rem;
    font-weight: bold;
    color: black;
    flex-shrink: 0; /* Prevent arrows from shrinking */
  }
  
  /* Mobile Message */
  .mobile-message {
    display: none; /* Hide by default */
    text-align: center;
    margin: 30px 0;
  }
  
  .mobile-message p {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .download-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
  }
  
  .download-buttons .btn-highlight {
    text-decoration: none;
    padding: 10px 20px;
    background-color: rgb(5, 134, 16);
    color: black;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
  }
  
  .download-buttons .btn-highlight:hover {
    background-color: #0ca024;
  }
  
  /* Iframe */
  .iframe-placeholder {
    width: 100%;
    height: 900px;
    margin: 20px auto;
    border: 1px solid #ccc;
  }
  
  
/* Info Section */
.info-section {
    text-align: center;
    padding: 40px 20px;
    color: black;
  }
  
  .info-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .info-stats {
    display: flex;
    justify-content: center;
    gap: 30px; /* Adjusted gap for larger stats */
    flex-wrap: wrap;
  }
  
  .stat {
    text-align: center;
    border: 2px solid yellow; /* Match the yellow border style */
    padding: 30px; /* Increased padding */
    border-radius: 10px;
    width: 325px; /* Increased width to scale up by ~30% */
    position: relative;
  }
  
  .stat-icon {
    width: 52px; /* Increased size by ~30% */
    height: 52px; /* Increased size by ~30% */
    margin-bottom: 15px; /* Slightly increased spacing */
  }
  
  .stat-number {
    font-size: 2.6rem; /* Scaled up from 2rem */
    color: black;
    font-weight: bold;
    margin-bottom: 10px; /* Slightly increased margin */
  }
  
  .stat-label {
    font-size: 1.3rem; /* Scaled up from 1rem */
    color: black;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .info-stats {
      gap: 15px; /* Adjusted for smaller screens */
    }
  
    .stat {
      width: 100%; /* Full width on smaller screens */
    }
  
    .stat-icon {
      width: 45px; /* Slightly smaller icons for mobile */
      height: 45px;
    }
  
    .stat-number {
      font-size: 2rem; /* Adjusted size for mobile */
    }
  
    .stat-label {
      font-size: 1.1rem; /* Adjusted size for mobile */
    }
  }
  
  
/* Sponsors Section */
.sponsors-section {
    text-align: center;
    padding: 40px 20px;
    color: black;
  }
  
  .sponsors-section h2 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    font-weight: bold;
  }
  
  .sponsor-logos {
    display: grid; /* Use CSS Grid for layout */
    grid-template-columns: repeat(6, 1fr); /* 6 logos per row */
    gap: 20px; /* Add spacing between logos */
    width: 75%; /* Constrain section to middle 75% of the screen */
    margin: 0 auto; /* Center the section horizontally */
  }
  
  .sponsor-logos img {
    width: 100%; /* Let the logo take up the available grid space */
    max-width: 120px; /* Limit logo size */
    height: auto; /* Maintain aspect ratio */
    margin: 0 auto; /* Center images within their grid cells */
  }
  
  

  .footer {
    background-color: black;
    color: white;
    text-align: center;
    padding: 20px 40px;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-text {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.footer-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-sitemap {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    width: 100%;
    max-width: 800px;
    text-align: left;
}

.footer-sitemap ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-sitemap ul li {
    margin-bottom: 5px;
}

.footer-sitemap ul li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-sitemap ul li a:hover {
    text-decoration: underline;
}

.footer-copyright {
    font-size: 0.9rem;
    margin-top: 20px;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-sitemap {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }
}

@media (max-width: 480px) {
    .footer-sitemap {
        grid-template-columns: 1fr;
    }

    .footer-sitemap ul {
        text-align: center;
    }
}

  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-content {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-text {
      text-align: center;
    }
  
    .footer-buttons {
      justify-content: center;
      flex-wrap: wrap;
    }
  }
  

/* Responsive Design */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column; /* Stack logo, text, and buttons vertically */
        align-items: center;
        text-align: center;
    }

    .header-buttons {
      flex-wrap: wrap; /* Allow buttons to wrap onto the next line if needed */
      justify-content: center; /* Center the buttons in the available space */
      gap: 10px; /* Add space between buttons */
    }

    .navbar {
        flex-direction: column; /* Stack navigation items vertically */
        align-items: flex-start; /* Align items to the left */

        padding: 10px;
    }

    .nav-link {
        font-size: 1.2rem; /* Reduce font size slightly */
        margin: 5px 0;
    }

    .iframe-placeholder {
        display: none; /* Hide iframe on mobile */
      }
    
      .mobile-message {
        display: block; /* Show mobile message on small screens */
      }
      .icon-flow {
        flex-direction: column; /* Stack the steps vertically on smaller screens */
        gap: 10px;
      }
    
      .arrow {
        display: none; /* Hide arrows on small screens */
      }
    }

@media (max-width: 480px) {
    .title {
        font-size: 1.5rem; /* Reduce title font size on very small screens */
    }

    .logo {
        width: 80px; /* Scale down logo */
    }

    .nav-link {
        font-size: 1rem; /* Further reduce font size for very small screens */
    }
}

/* Popup Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 1000;
}

/* Popup Box */
.popup {
    position: relative;
    background: white;
    padding: 30px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
}

.popup h3 {
    font-size: 1.5rem;
    color: #036308;
    margin-bottom: 15px;
}

.popup p {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.popup a {
    color: #036308;
    font-weight: bold;
    text-decoration: underline;
}

.popup a:hover {
    text-decoration: none;
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    line-height: 1;
}

.popup-close:hover {
    color: #333;
}

.form-group {
    margin-bottom: 15px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.checkbox-container {
    margin: 15px 0;
}

.checkbox-container input {
    margin-right: 8px;
}