* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter' sans-serif;
}

body {
  font-family: 'Inter', sans-serif;
  transition: filter 0.3s ease;
  display: flex;
  flex-direction: column;
}

/* body.blur {
  filter: blur(5px); 
} */

body.no-scroll {
  overflow: hidden;
  height: 100vh;
}


/*  */
.overlay {
    position: fixed;
    top: 0; /* inside mainContent */
    left: 0;
    width: 100%;
    min-height: 100vh;

    background: rgba(0,0,0,0.3);
    backdrop-filter: blur(5px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Popup */
.overlay-content {
    background: white;
    margin-top: 110px;
    padding: 25px 35px;
    border-radius: 12px;
    width: 1000px;
    max-height: 80vh;
    text-align: left;
    color: black;
    position: relative;
    overflow-y: auto;          /* makes ONLY content scroll */
    scrollbar-width: thin; 
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 12px;
    font-weight: bold;
}

input, textarea, select {
    padding: 10px;
    margin-top: 5px;
    border-radius: 8px;
    border: 1px solid #ccc;
}

.submit-btn {
    margin-top: 20px;
    padding: 12px;
    background: black;
    color: white;
    border-radius: 8px;
    cursor: pointer;
}

.closeOverlay {
    /* margin-top: 15px; */
    /* padding: 10px; */
    /* width: 100%; */
    top: 12px;
    right: 12px;
    border: none;
    /* background: #ccc; */
    border-radius: 50%;
    cursor: pointer;
    position: absolute;
    color: black;
    width: 32px;
    height: 32px;
}

.overlay-content h2 {
  margin-top: 40px;
}







/*  */

















html{
  scroll-behavior: smooth;
}

header {
  width: 100%;
  padding: 15px 40px;
  background: lightblue;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);  
  position: fixed; /* fix it at the top */
  top: 0;
  left: 0;
  z-index: 1000; /* make sure it's above other content */
}
.logo {
  font-size: 1.5rem;
  font-weight: bold;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 40px;
}
.nav-links li a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: 0.3s;
}
.nav-links li a:hover {
  color: whitesmoke;
}
.hamburger{
  display: block;
}
.join-btn {
  background: #16a34a;
  color: black;
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  transition: 0.3s;
}
.join-btn:hover {
  background: #15803d;
}
.hamburger{
  display: flexbox;
  
}
.menu-icon {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}
.hero {
  width: 100%;
  height: 90vh;
  background-image: url('images/Carest.jpg');  
  background-size: cover;       
  background-position: center;  
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.4);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 700px;
}
.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}
.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}
.hero-buttons .btn {
  margin: 0 10px;
  padding: 12px 25px;
  font-size: 1rem;
  cursor: pointer;
}
.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}
.btn {
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s ease;
}
.primary-btn {
  background: lightgreen;
  color: black;
}
.secondary-btn {
  background: lightblue;
  color: black;
}
.primary-btn:hover {
  background: #15803d;
  transform: translateY(-3px);
}
.secondary-btn:hover {
  background: #1e40af;
  transform: translateY(-3px);
}
.about-section {
  width: 100%;
  padding: 6rem;
  text-align: center;
  background: #f7f7f7;
  
}
.about-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #111;
}
.about-section p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;

  /* ensures text wraps cleanly */
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.mv-container {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}
.mission-box, .vision-box {
    flex: 1;
    background: #f7f7f7;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.mission-box h3, .vision-box h3 {
    margin-bottom: 10px;
}
.popup {
    display: flex; /* hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(3px);
    justify-content: center;
    align-items: flex-start; /* start from top */
    z-index: 9999;
    overflow-y: auto; /* allow scrolling */
    padding: 20px;
}

/* Popup box */
.popup-content {
    background: lightblue;
    width: 100%;
    max-width: 500px;
    padding: 40px 20px 20px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    box-sizing: border-box;
}

/* Form title */
#formTitle {
    color: white;
    font-size: 24px;
    margin-top: 30px;
    text-align: center;
}

/* Close button */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    z-index: 10000;
}

/* Submit button */
.submit-btn {
    padding: 10px 20px;
    margin-top: 15px;
    background-color: darkblue;
    color: white;
    border: none;
    border-radius: 6px;
    cursor: pointer;
}

/* Make form inputs full width */
#dynamicForm input,
#dynamicForm textarea,
#dynamicForm select {
    width: 100%;
    padding: 8px 10px;
    margin-bottom: 15px;
    border-radius: 6px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}
/* Questions and input */
#questionsContainer label {
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

#questionsContainer input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

/* Submit button */
.submit-btn {
    width: 100%;
    padding: 12px;
    margin-top: 20px;
    background: blue;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

.submit-btn:hover {
    background: darkblue;
}
.thankyou-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.thankyou-box {
    background: #fff;
    padding: 30px;
    width: 90%;
    max-width: 350px;
    text-align: center;
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
}

.thankyou-box h2 {
    margin-bottom: 10px;
    color: #2d89ef;
}
.date-range {
    display: flex;
    gap: 10px;
}

.date-range input {
    flex: 1;
}

.thankyou-box button {
    margin-top: 15px;
    padding: 10px 25px;
    border: none;
    background: #2d89ef;
    color: white;
    border-radius: 6px;
    cursor: pointer;
}

@keyframes popIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}
.services-section {
  width: 100%;
  padding: 70px 20px;
  text-align: center;
  background: lightblue;
}
.services-p{
    position: relative;
    bottom: 1rem;
    font-size: 1.4rem;
}
.services-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 40px;
}
.services-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap; 
}   
.service-card {
  width: 300px;
  background: #f8f8f8;
  border-radius: 10px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 3px 12px rgba(0,0,0,0.1);
  transition: 0.3s;
}
.service-card:hover {
  transform: translateY(-5px);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 15px;
}
.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: bold;
}
.line {
  width: 40px;
  height: 3px;
  background: #2563eb;
  margin: 10px auto 20px auto;
  border-radius: 10px;
}
.service-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}
.service-img{
  height: 4rem;
  width: 5rem;
}
.why-section {
  width: 100%;
  padding: 70px 20px;
  text-align: center;
  background: #f7f7f7;
}
.why-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.why-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto 40px auto;
}
.why-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1100px;
  margin: 0 auto;
}
.why-card {
  background: white;
  padding: 25px 20px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  transition: 0.3s ease;
}
.why-card:hover {
  transform: translateY(-5px);
}
.why-icon {
  font-size: 2.7rem;
  margin-bottom: 15px;
}
.why-card h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.why-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.5;
}
.how-works-section {
  width: 100%;
  padding: 70px 20px;
  background: #d3e9ff; 
  text-align: center;
}
.how-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.how-subtext {
  font-size: 1.1rem;
  color: #444;
  margin-bottom: 40px;
}
.how-steps {
  max-width: 700px;
  margin: 0 auto 50px auto;
  text-align: center;
}
.how-step {
  background: white;
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  margin-bottom: 20px;
}
.how-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 10px;
}
.how-step h3 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 8px;
}
.how-step p {
  font-size: 1rem;
  color: #555;
}
.community-section {
  width: 100%;
  padding: 70px 20px;
  background: white;
  text-align: center;
}
.community-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.community-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}
.community-card {
  background: #d3e9ff; 
  padding: 25px 20px;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.1);
  text-align: center;
}
.community-card p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 15px;
  line-height: 1.5;
}
.community-card span {
  font-weight: bold;
  color: #2563eb;
  font-size: 0.95rem;
}
.contact-section {
  width: 100%;
  padding: 80px 20px;
  background: aliceblue;
  text-align: center;
}
.contact-title {
  font-size: 2.3rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.contact-subtext {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
.contact-container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 50px;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.contact-info {
  flex: 1;
  min-width: 280px;
  text-align: left;
}
.contact-info h3 {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 25px;
}
.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 15px;
}
.info-icon {
  font-size: 2rem;
  color: #2563eb;
}
.info-item p:first-child {
  font-weight: bold;
  margin: 0;
}
.info-item p:last-child {
  margin: 2px 0 0 0;
  color: #333;
}
.contact-form {
  flex: 1;
  min-width: 280px;
  text-align: left;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}
.contact-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background: #2563eb;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  width: 98%;
  transition: 0.3s;
}
.contact-form button:hover {
  background: #1e40af;
}
.footer {
  width: 100%;
  background: lightblue; 
  color: black;
  padding: 50px 20px 20px 20px;
}
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto 20px auto;
  gap: 30px;
}
.footer-col {
  flex: 1;
  min-width: 200px;
  color: black;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-col p {
  font-size: 0.95rem;
  color: black;
  margin: 3px 0;
}
.footer-socials {
  margin-top: 10px;
  display: flex;
  gap: 15px;
}
.footer-socials .social-icon {
  font-size: 2rem;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.footer-socials .social-icon:hover {
  color: #2563eb;
}
.footer-col h3 {
  font-size: 1.2rem;
  margin-bottom: 15px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  color: black;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  text-decoration: none;
  color: black;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: #2563eb;
}
.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: black;
}
/* Hide mobile menu by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #f5f5f5;
  position: absolute;
  top: 60px; /* adjust depending on nav height */
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu li a {
  text-decoration: none;
  color: #333;
  font-size: 18px;
}
/* ================== 240px SCREEN RESPONSIVE ================== */
@media screen and (max-width: 240px) {
  header {
    padding: 10px 12px;
  }

  .logo {
    font-size: 1rem;
  }


  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: lightblue;
    gap: 15px;
    padding: 15px 0;

    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 0.85rem;
  }

  .join-btn {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  /* ----------------- Hero ----------------- */
  .hero {
    height: 60vh;
    padding: 10px;
  }
  .hero-content h1 {
    font-size: 1.4rem;
  }
  .hero-content p {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }
  .hero-buttons .btn {
    padding: 8px 12px;
    font-size: 0.7rem;
  }

  /* ----------------- About Section ----------------- */
  .about-section {
    padding: 30px 10px;
  }
  .about-section h2 {
    font-size: 1rem;
  }
  .about-section p {
    font-size: 0.7rem;
  }
  .mv-container {
    flex-direction: column;
    gap: 10px;
  }
  .mission-box, .vision-box {
    padding: 10px;
  }
  .mission-box h3, .vision-box h3 {
    font-size: 0.8rem;
  }

  /* ----------------- Overlay/Popup Forms ----------------- */
  .overlay-content {
    width: 95%;
    margin-top: 50px;
    padding: 15px;
  }
  .overlay-content h2 {
    margin-top: 15px;
    font-size: 1rem;
  }
  label {
    font-size: 0.7rem;
  }
  input, textarea, select {
    font-size: 0.7rem;
    padding: 5px;
  }
  .submit-btn {
    font-size: 0.7rem;
    padding: 8px;
  }
  .closeOverlay {
    width: 25px;
    height: 25px;
    top: 8px;
    right: 8px;
    font-size: 0.7rem;
  }

  /* ----------------- Services Section ----------------- */
  .services-section {
    padding: 30px 10px;
  }
  .services-title {
    font-size: 1rem;
  }
  .services-p {
    font-size: 0.7rem;
  }
  .services-container {
    flex-direction: column;
    gap: 10px;
  }
  .service-card {
    width: 100%;
    padding: 15px 10px;
  }
  .service-card h3 {
    font-size: 0.8rem;
  }
  .service-card p {
    font-size: 0.65rem;
  }
  .service-img {
    height: 2.5rem;
    width: 3rem;
  }

  /* ----------------- Why Section ----------------- */
  .why-section {
    padding: 30px 10px;
  }
  .why-title {
    font-size: 1rem;
  }
  .why-subtitle {
    font-size: 0.7rem;
  }
  .why-container {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .why-card h3 {
    font-size: 0.75rem;
  }
  .why-card p {
    font-size: 0.6rem;
  }

  /* ----------------- How It Works Section ----------------- */
  .how-works-section {
    padding: 30px 10px;
  }
  .how-title {
    font-size: 1rem;
  }
  .how-subtext {
    font-size: 0.7rem;
  }
  .how-step {
    padding: 15px 10px;
  }
  .how-step h3 {
    font-size: 0.75rem;
  }
  .how-step p {
    font-size: 0.6rem;
  }

  /* ----------------- Community Section ----------------- */
  .community-section {
    padding: 30px 10px;
  }
  .community-title {
    font-size: 1rem;
  }
  .community-subtext {
    font-size: 0.7rem;
  }
  .community-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .community-card p {
    font-size: 0.6rem;
  }
  .community-card span {
    font-size: 0.6rem;
  }

  /* ----------------- Contact Section ----------------- */
  .contact-section {
    padding: 30px 10px;
  }
  .contact-title {
    font-size: 1rem;
  }
  .contact-subtext {
    font-size: 0.7rem;
  }
  .contact-container {
    flex-direction: column;
    gap: 15px;
  }
  .contact-info h3 {
    font-size: 0.75rem;
  }
  .info-item p {
    font-size: 0.65rem;
  }
  .contact-form input, 
  .contact-form textarea, 
  .contact-form button {
    font-size: 0.65rem;
    padding: 6px;
  }

  /* ----------------- Footer ----------------- */
  .footer {
    padding: 20px 10px;
  }
  .footer-logo {
    font-size: 1rem;
  }
  .footer-col h3 {
    font-size: 0.75rem;
  }
  .footer-col p, 
  .footer-col ul li a {
    font-size: 0.6rem;
  }
  .footer-bottom {
    font-size: 0.55rem;
  }
  .footer-socials {
    gap: 5px;
  }
}
/* ================== 480px SCREEN RESPONSIVE ================== */
@media screen and (min-width: 241px) and (max-width: 480px) {

  /* ----------------- Header ----------------- */
  header {
    padding: 12px 16px;
  }

  .logo {
    font-size: 1.2rem;
  }

  .menu-icon {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: lightblue;
    flex-direction: column;
    gap: 18px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li a {
    font-size: 0.95rem;
  }

  .join-btn {
    font-size: 0.9rem;
    padding: 8px 16px;
  }


  /* ----------------- Hero ----------------- */
  .hero {
    height: 70vh;
    padding: 15px;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }
  .hero-buttons .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* ----------------- About Section ----------------- */
  .about-section {
    padding: 40px 15px;
  }
  .about-section h2 {
    font-size: 1.5rem;
  }
  .about-section p {
    font-size: 0.9rem;
  }
  .mv-container {
    flex-direction: column;
    gap: 15px;
  }
  .mission-box, .vision-box {
    padding: 15px;
  }
  .mission-box h3, .vision-box h3 {
    font-size: 1rem;
  }

  /* ----------------- Overlay/Popup Forms ----------------- */
  .overlay-content {
    width: 90%;
    margin-top: 60px;
    padding: 20px;
  }
  .overlay-content h2 {
    margin-top: 20px;
    font-size: 1.2rem;
  }
  label {
    font-size: 0.85rem;
  }
  input, textarea, select {
    font-size: 0.85rem;
    padding: 8px;
  }
  .submit-btn {
    font-size: 0.85rem;
    padding: 10px;
  }
  .closeOverlay {
    width: 28px;
    height: 28px;
    top: 10px;
    right: 10px;
    font-size: 0.85rem;
  }

  /* ----------------- Services Section ----------------- */
  .services-section {
    padding: 50px 15px;
  }
  .services-title {
    font-size: 1.8rem;
  }
  .services-p {
    font-size: 1rem;
  }
  .services-container {
    flex-direction: column;
    gap: 15px;
  }
  .service-card {
    width: 100%;
    padding: 20px;
  }
  .service-card h3 {
    font-size: 1rem;
  }
  .service-card p {
    font-size: 0.85rem;
  }
  .service-img {
    height: 3rem;
    width: 4rem;
  }

  /* ----------------- Why Section ----------------- */
  .why-section {
    padding: 50px 15px;
  }
  .why-title {
    font-size: 1.8rem;
  }
  .why-subtitle {
    font-size: 0.95rem;
  }
  .why-container {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .why-card h3 {
    font-size: 1rem;
  }
  .why-card p {
    font-size: 0.8rem;
  }

  /* ----------------- How It Works Section ----------------- */
  .how-works-section {
    padding: 50px 15px;
  }
  .how-title {
    font-size: 1.8rem;
  }
  .how-subtext {
    font-size: 0.95rem;
  }
  .how-step {
    padding: 20px 15px;
  }
  .how-step h3 {
    font-size: 1rem;
  }
  .how-step p {
    font-size: 0.85rem;
  }

  /* ----------------- Community Section ----------------- */
  .community-section {
    padding: 50px 15px;
  }
  .community-title {
    font-size: 1.8rem;
  }
  .community-subtext {
    font-size: 0.95rem;
  }
  .community-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .community-card p {
    font-size: 0.85rem;
  }
  .community-card span {
    font-size: 0.8rem;
  }

  /* ----------------- Contact Section ----------------- */
  .contact-section {
    padding: 50px 15px;
  }
  .contact-title {
    font-size: 1.8rem;
  }
  .contact-subtext {
    font-size: 0.95rem;
  }
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }
  .contact-info h3 {
    font-size: 1rem;
  }
  .info-item p {
    font-size: 0.85rem;
  }
  .contact-form input, 
  .contact-form textarea, 
  .contact-form button {
    font-size: 0.85rem;
    padding: 8px;
  }

  /* ----------------- Footer ----------------- */
  .footer {
    padding: 30px 15px;
  }
  .footer-logo {
    font-size: 1.2rem;
  }
  .footer-col h3 {
    font-size: 1rem;
  }
  .footer-col p, 
  .footer-col ul li a {
    font-size: 0.8rem;
  }
  .footer-bottom {
    font-size: 0.75rem;
  }
  .footer-socials {
    gap: 10px;
  }
}
/* ================== 768px SCREEN RESPONSIVE ================== */
@media screen and (min-width: 481px) and (max-width: 768px) {

  /* ----------------- Header ----------------- */
  header {
    display: grid;
    grid-template-rows: auto auto ;
    row-gap: 12px;

    justify-items: center;
    text-align: center;
                                                         
    padding: 20px;
  }
  .hamburger{
    display: block;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: lightblue;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 16px 0;
    box-shadow: rgba(0, 0, 0, 0.15);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25 ease transform 0.25s ease;
  }

  .nav-links.nav-active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu-icon{
    display: block;
    
  }

  .join-btn {
    width: 100%;
    max-width: 200px;
  }


  /* ----------------- Hero ----------------- */
  .hero {
    height: 80vh;
    padding: 20px;
  }
  .hero-content h1 {
    font-size: 2.5rem;
  }
  .hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
  }
  .hero-buttons {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }
  .hero-buttons .btn {
    padding: 11px 22px;
    font-size: 0.95rem;
  }

  /* ----------------- About Section ----------------- */
  .about-section {
    padding: 50px 20px;
  }
  .about-section h2 {
    font-size: 1.8rem;
  }
  .about-section p {
    font-size: 1rem;
  }
  .mv-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
  }
  .mission-box, .vision-box {
    flex: 1 1 45%;
    padding: 18px;
  }
  .mission-box h3, .vision-box h3 {
    font-size: 1.1rem;
  }

  /* ----------------- Overlay/Popup Forms ----------------- */
  .overlay-content {
    width: 85%;
    margin-top: 70px;
    padding: 25px;
  }
  .overlay-content h2 {
    margin-top: 25px;
    font-size: 1.3rem;
  }
  label {
    font-size: 0.9rem;
  }
  input, textarea, select {
    font-size: 0.9rem;
    padding: 9px;
  }
  .submit-btn {
    font-size: 0.9rem;
    padding: 11px;
  }
  .closeOverlay {
    width: 30px;
    height: 30px;
    top: 11px;
    right: 11px;
  }

  /* ----------------- Services Section ----------------- */
  .services-section {
    padding: 60px 20px;
  }
  .services-title {
    font-size: 2rem;
  }
  .services-p {
    font-size: 1.2rem;
  }
  .services-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    justify-content: center;
  }
  .service-card {
    width: 45%;
    padding: 25px;
  }
  .service-card h3 {
    font-size: 1.2rem;
  }
  .service-card p {
    font-size: 0.95rem;
  }
  .service-img {
    height: 3.5rem;
    width: 4.5rem;
  }

  /* ----------------- Why Section ----------------- */
  .why-section {
    padding: 60px 20px;
  }
  .why-title {
    font-size: 2rem;
  }
  .why-subtitle {
    font-size: 1rem;
  }
  .why-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .why-card h3 {
    font-size: 1.1rem;
  }
  .why-card p {
    font-size: 0.9rem;
  }

  /* ----------------- How It Works Section ----------------- */
  .how-works-section {
    padding: 60px 20px;
  }
  .how-title {
    font-size: 2rem;
  }
  .how-subtext {
    font-size: 1rem;
  }
  .how-step {
    padding: 22px 18px;
  }
  .how-step h3 {
    font-size: 1.1rem;
  }
  .how-step p {
    font-size: 0.95rem;
  }

  /* ----------------- Community Section ----------------- */
  .community-section {
    padding: 60px 20px;
  }
  .community-title {
    font-size: 2rem;
  }
  .community-subtext {
    font-size: 1rem;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .community-card p {
    font-size: 0.95rem;
  }
  .community-card span {
    font-size: 0.9rem;
  }

  /* ----------------- Contact Section ----------------- */
  .contact-section {
    padding: 60px 20px;
  }
  .contact-title {
    font-size: 2rem;
  }
  .contact-subtext {
    font-size: 1rem;
  }
  .contact-container {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
  }
  .contact-info h3 {
    font-size: 1.2rem;
  }
  .info-item p {
    font-size: 0.95rem;
  }
  .contact-form input, 
  .contact-form textarea, 
  .contact-form button {
    font-size: 0.95rem;
    padding: 10px;
  }

  /* ----------------- Footer ----------------- */
  .footer {
    padding: 40px 20px;
  }
  .footer-logo {
    font-size: 1.4rem;
  }
  .footer-col h3 {
    font-size: 1.1rem;
  }
  .footer-col p, 
  .footer-col ul li a {
    font-size: 0.9rem;
  }
  .footer-bottom {
    font-size: 0.8rem;
  }
  .footer-socials {
    gap: 12px;
  }
}
/* ================== 1024px SCREEN RESPONSIVE ================== */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header {
    padding: 20px 30px;
  }

  .logo {
    font-size: 1.6rem;
  }

  .nav-links {
    gap: 30px;
  }

  .nav-links li a {
    font-size: 1rem;
  }

  .menu-icon {
    display: none;
  }

  /* ----------------- Hero ----------------- */
  .hero {
    height: 85vh;
    padding: 25px;
  }
  .hero-content h1 {
    font-size: 2.8rem;
  }
  .hero-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
  }
  .hero-buttons {
    gap: 20px;
  }
  .hero-buttons .btn {
    padding: 12px 26px;
    font-size: 1rem;
  }

  /* ----------------- About Section ----------------- */
  .about-section {
    padding: 60px 25px;
  }
  .about-section h2 {
    font-size: 2rem;
  }
  .about-section p {
    font-size: 1.05rem;
  }
  .mv-container {
    gap: 25px;
  }
  .mission-box, .vision-box {
    flex: 1 1 48%;
    padding: 20px;
  }
  .mission-box h3, .vision-box h3 {
    font-size: 1.15rem;
  }

  /* ----------------- Overlay/Popup Forms ----------------- */
  .overlay-content {
    width: 80%;
    margin-top: 80px;
    padding: 30px;
  }
  .overlay-content h2 {
    font-size: 1.4rem;
  }
  label {
    font-size: 1rem;
  }
  input, textarea, select {
    font-size: 1rem;
    padding: 10px;
  }
  .submit-btn {
    font-size: 1rem;
    padding: 12px;
  }

  /* ----------------- Services Section ----------------- */
  .services-section {
    padding: 70px 25px;
  }
  .services-title {
    font-size: 2.2rem;
  }
  .services-p {
    font-size: 1.3rem;
  }
  .services-container {
    gap: 30px;
    justify-content: flex-start;
  }
  .service-card {
    width: 300px;
    padding: 28px 22px;
  }
  .service-card h3 {
    font-size: 1.25rem;
  }
  .service-card p {
    font-size: 1rem;
  }

  /* ----------------- Why Section ----------------- */
  .why-section {
    padding: 70px 25px;
  }
  .why-title {
    font-size: 2.2rem;
  }
  .why-subtitle {
    font-size: 1.1rem;
  }
  .why-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
  .why-card h3 {
    font-size: 1.2rem;
  }
  .why-card p {
    font-size: 0.95rem;
  }

  /* ----------------- How It Works Section ----------------- */
  .how-works-section {
    padding: 70px 25px;
  }
  .how-title {
    font-size: 2.2rem;
  }
  .how-subtext {
    font-size: 1.1rem;
  }
  .how-step {
    padding: 25px 22px;
  }
  .how-step h3 {
    font-size: 1.2rem;
  }
  .how-step p {
    font-size: 1rem;
  }

  /* ----------------- Community Section ----------------- */
  .community-section {
    padding: 70px 25px;
  }
  .community-title {
    font-size: 2.2rem;
  }
  .community-subtext {
    font-size: 1.1rem;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .community-card p {
    font-size: 1rem;
  }

  /* ----------------- Contact Section ----------------- */
  .contact-section {
    padding: 70px 25px;
  }
  .contact-title {
    font-size: 2.2rem;
  }
  .contact-subtext {
    font-size: 1.1rem;
  }
  .contact-container {
    gap: 35px;
  }
  .contact-info h3 {
    font-size: 1.4rem;
  }
  .info-item p {
    font-size: 1rem;
  }
  .contact-form input, 
  .contact-form textarea, 
  .contact-form button {
    font-size: 1rem;
    padding: 12px;
  }

  /* ----------------- Footer ----------------- */
  .footer {
    padding: 50px 25px 25px 25px;
  }
  .footer-logo {
    font-size: 1.6rem;
  }
  .footer-col h3 {
    font-size: 1.15rem;
  }
  .footer-col p, 
  .footer-col ul li a {
    font-size: 0.95rem;
  }
  .footer-bottom {
    font-size: 0.85rem;
  }
  .footer-socials {
    gap: 15px;
  }
}
/* ================== 1440px SCREEN RESPONSIVE ================== */
@media screen and (min-width: 1025px) and (max-width: 1440px) {

  /* ----------------- Header ----------------- */
  header {
    padding: 25px 60px;
  }

  .logo {
    font-size: 1.9rem;
  }

  .nav-links {
    gap: 45px;
  }

  .nav-links li a {
    font-size: 1.1rem;
  }

  .join-btn {
    font-size: 1.05rem;
    padding: 12px 26px;
  }


  /* ----------------- Hero ----------------- */
  .hero {
    height: 95vh;
    padding: 40px;
  }
  .hero-content h1 {
    font-size: 3.5rem;
  }
  .hero-content p {
    font-size: 1.3rem;
    margin-bottom: 35px;
  }
  .hero-buttons .btn {
    padding: 14px 30px;
    font-size: 1.1rem;
  }

  /* ----------------- About Section ----------------- */
  .about-section {
    padding: 80px 60px;
  }
  .about-section h2 {
    font-size: 2.5rem;
  }
  .about-section p {
    font-size: 1.2rem;
  }
  .mv-container {
    gap: 30px;
  }
  .mission-box, .vision-box {
    flex: 1 1 45%;
    padding: 25px;
  }
  .mission-box h3, .vision-box h3 {
    font-size: 1.3rem;
  }

  /* ----------------- Overlay/Popup Forms ----------------- */
  .overlay-content {
    width: 900px;
    margin-top: 100px;
    padding: 35px 40px;
  }
  .overlay-content h2 {
    font-size: 1.6rem;
  }
  label {
    font-size: 1.1rem;
  }
  input, textarea, select {
    font-size: 1.1rem;
    padding: 12px;
  }
  .submit-btn {
    font-size: 1.1rem;
    padding: 14px;
  }

  /* ----------------- Services Section ----------------- */
  .services-section {
    padding: 80px 60px;
  }
  .services-title {
    font-size: 2.6rem;
  }
  .services-p {
    font-size: 1.5rem;
  }
  .services-container {
    gap: 40px;
  }
  .service-card {
    width: 320px;
    padding: 35px 25px;
  }
  .service-card h3 {
    font-size: 1.35rem;
  }
  .service-card p {
    font-size: 1.05rem;
  }

  /* ----------------- Why Section ----------------- */
  .why-section {
    padding: 80px 60px;
  }
  .why-title {
    font-size: 2.6rem;
  }
  .why-subtitle {
    font-size: 1.2rem;
  }
  .why-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
  .why-card h3 {
    font-size: 1.25rem;
  }
  .why-card p {
    font-size: 1rem;
  }

  /* ----------------- How It Works Section ----------------- */
  .how-works-section {
    padding: 80px 60px;
  }
  .how-title {
    font-size: 2.6rem;
  }
  .how-subtext {
    font-size: 1.2rem;
  }
  .how-step {
    padding: 30px 25px;
  }
  .how-step h3 {
    font-size: 1.25rem;
  }
  .how-step p {
    font-size: 1.05rem;
  }

  /* ----------------- Community Section ----------------- */
  .community-section {
    padding: 80px 60px;
  }
  .community-title {
    font-size: 2.6rem;
  }
  .community-subtext {
    font-size: 1.2rem;
  }
  .community-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .community-card p {
    font-size: 1.05rem;
  }

  /* ----------------- Contact Section ----------------- */
  .contact-section {
    padding: 80px 60px;
  }
  .contact-title {
    font-size: 2.6rem;
  }
  .contact-subtext {
    font-size: 1.2rem;
  }
  .contact-container {
    gap: 45px;
  }
  .contact-info h3 {
    font-size: 1.5rem;
  }
  .info-item p {
    font-size: 1.05rem;
  }
  .contact-form input, 
  .contact-form textarea, 
  .contact-form button {
    font-size: 1.1rem;
    padding: 14px;
  }

  /* ----------------- Footer ----------------- */
  .footer {
    padding: 60px 60px 30px 60px;
  }
  .footer-logo {
    font-size: 2rem;
  }
  .footer-col h3 {
    font-size: 1.3rem;
  }
  .footer-col p, 
  .footer-col ul li a {
    font-size: 1rem;
  }
  .footer-bottom {
    font-size: 0.95rem;
  }
  .footer-socials {
    gap: 20px;
  }
}
