* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}



/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.logo img {
  height: 75px;
  width: 75px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  position: relative;
  padding-bottom: 5px;
}

/* Hover underline */
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 0;
  background: #ffd400;
  transition: 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Active link */
.nav-links a.active::after {
  width: 100%;
}

/* Right section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Donate Button */
#ngoDonateBtn.ngo-donate-btn {
  background: #0a9f00;
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s ease;
}

#ngoDonateBtn:hover {
  background: #087c00;
  transform: scale(1.05);
}
/* donate popup */
/* ===============================
   OVERLAY
================================ */

/* ================= OVERLAY ================= */

/* ===== OVERLAY ===== */
.ngo-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
}

/* ===== POPUP ===== */
.ngo-popup {
  display: none;
  position: fixed;
  inset: 0;
  margin: auto;
  
  width: 95%;
  max-width: 850px;
  height: 90vh;
  background: #fff;
  border-radius: 10px;
  z-index: 9999;
  overflow: hidden;
}

/* HEADER */
.ngo-popup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}
.ngo-close-btn {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
}

/* BODY */
.ngo-popup-body {
  padding: 20px;
  height: calc(90vh - 60px);
  overflow-y: auto;
}

/* TOP SECTION */
.ngo-top-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.ngo-bank-details {
  background: #e9f7f7;
  padding: 15px;
  border-radius: 8px;
}
.ngo-qr-section {
  text-align: center;
}
.ngo-qr-section img {
  width: 180px;
  max-width: 100%;
}

/* FORM */
.ngo-form {
  display: block;
}
.ngo-input,
.ngo-textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.ngo-textarea {
  resize: none;
  height: 80px;
}

/* UPLOAD */
.ngo-upload-label {
  display: block;
  margin-bottom: 15px;
  font-size: 14px;
}
.ngo-file-input {
  display: block;
  margin-top: 6px;
}

/* ===============================
   INPUT VISIBILITY FIX (FINAL)
================================ */

/* Force text color */
.ngo-popup input,
.ngo-popup textarea {
  color: #000 !important;          /* 🔥 make typed text visible */
  background-color: #fff !important;
  caret-color: #000 !important;    /* 🔥 cursor visible */
}

/* Placeholder style */
.ngo-popup input::placeholder,
.ngo-popup textarea::placeholder {
  color: #999 !important;
  opacity: 1;
}

/* Remove global invalid red border */
.ngo-popup input:invalid,
.ngo-popup textarea:invalid {
  box-shadow: none !important;
  outline: none !important;
  border: 1px solid #ccc !important;
}

/* On focus */
.ngo-popup input:focus,
.ngo-popup textarea:focus {
  border-color: #0a9f00 !important;
  outline: none !important;
  box-shadow: 0 0 0 1px rgba(10,159,0,0.3);
}


/* SUBMIT */
.ngo-submit-btn {
  width: 100%;
  padding: 12px;
  background: orange;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
}



/* Make popup body scrollable */
.ngo-popup-body {
  padding-bottom: 90px; 
}
 submit button */
.ngo-submit-btn {
  bottom: 10px;                /* safe gap */
  z-index: 10;

  margin-top: 15px;
  margin-bottom: 0;

  width: 100%;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ngo-top-section {
    grid-template-columns: 1fr;
  }
  .ngo-qr-section img {
    width: 150px;
  }
}




/* Toggle Menu */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
  transition: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    align-items: center;
    display: none;
    animation: slideDown 0.4s ease;
  }

  .nav-links a {
    padding: 15px 0;
  }

  .nav-links.show {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }
}

/* Animation */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}





/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  /* margin-top: 1000px; */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video */
.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark Overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

/* Hero Content */
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 20px;
  max-width: 700px;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}

.hero-content p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Button */
.hero-btn {
  display: inline-block;
  padding: 12px 30px;
  background: #ffcc00;
  color: #000;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background: #ffd633;
  transform: scale(1.05);
}

/* WHATSAPP BUTTON */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 30px;
  background: #25d366;
  color: #fff;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  transition: 0.3s;
}

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

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }
}





/* togetther section */
.together-section {
  padding: 60px 20px;
  background-color: rgb(235, 229, 229);
}

.container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  gap: 50px;
  align-items: center;

}

/* IMAGE AREA */
.image-box {
  position: relative;
}

.image-box img {
  width: 220px;
  border-radius: 18px;
}

.green-line {
  position: absolute;
  left: -15px;
  top: 30px;
  height: 120px;
  width: 6px;
  background: green;
  border-radius: 10px;
}

/* BADGE */
.badge {
  position: absolute;
  /* left:100px ; */
  right: -45px;
  bottom: 40px;
  background: #0d3b2e;
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 1.4;
}

/* CONTENT */
.content {
  flex: 1;
}

.subtitle {
  color: green;
  font-weight: bold;
  margin-bottom: 10px;
}

.content h1 {
  font-size: 36px;
  margin-bottom: 15px;
}

.description {
  color: #555;
  margin-bottom: 15px;
}

.highlight {
  margin-bottom: 25px;
  font-size: 14px;
}

.highlight span {
  color: orange;
  font-weight: bold;
}

/* INFO BOX */
.info-box {
  border: 1px dashed #ccc;
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.info-box h4 {
  margin-bottom: 6px;
}

.divider {
  width: 1px;
  background: #ccc;
}

/* CALL */
.call a {
  text-decoration: none;
  color: #0d3b2e;
  font-weight: bold;
  font-size: 16px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .badge {
    right: 50%;
    transform: translateX(50%);
    bottom: -40px;
  }

  .info-box {
    flex-direction: column;
  }

  .divider {
    display: none;
  }

  .content h1 {
    font-size: 28px;
  }
}
/* what we do */
/* SECTION WRAPPER */
#what-we-do-section {
  padding: 100px 20px;
  position: relative;
  z-index: 1;
  background: #ffffff;
}

/* TITLE */
#what-we-do-section .section-title {
  text-align: center;
  margin-bottom: 60px;
}

#what-we-do-section .section-title span {
  color: #1e8f5a;
  font-weight: 600;
}

#what-we-do-section .section-title h2 {
  margin-top: 10px;
  font-size: 36px;
}

/* GRID */
#what-we-do-section .cards-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}

/* CARD */
#what-we-do-section .card {
  position: relative;
  background: #ffffff;
  padding: 45px 30px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
  transition: transform 0.5s ease;
  cursor: pointer;
  z-index: 1;
}

/* STACKED CARDS */
#what-we-do-section .card::before,
#what-we-do-section .card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 22px;
  opacity: 0;
  transition: all 0.5s ease;
}

#what-we-do-section .card::before {
  background: #0f3d30;
  z-index: -1;
}

#what-we-do-section .card::after {
  background: #ff5722;
  z-index: -2;
}

/* ICON */
#what-we-do-section .icon {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: #e8f5ef;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: 0.4s;
}

#what-we-do-section .icon i {
  font-size: 26px;
  color: #1e8f5a;
}

/* TEXT */
#what-we-do-section .card h3 {
  margin-bottom: 15px;
  transition: color 0.4s;
}

#what-we-do-section .card p {
  color: #555;
  transition: color 0.4s;
}

/* HOVER EFFECT */
#what-we-do-section .card:hover {
  transform: translate(-18px, -18px);
}

#what-we-do-section .card:hover::before {
  opacity: 1;
  transform: translate(12px, 12px);
}

#what-we-do-section .card:hover::after {
  opacity: 1;
  transform: translate(24px, 24px);
}

#what-we-do-section .card:hover h3,
#what-we-do-section .card:hover p {
  color: #ffffff;
}

#what-we-do-section .card:hover .icon {
  background: #ff5722;
}

#what-we-do-section .card:hover .icon i {
  color: #ffffff;
}

/* ACTIVE CARD (FIRST CARD STAYS OPEN) */
#what-we-do-section .card.active {
  transform: translate(-18px, -18px);
}

#what-we-do-section .card.active::before,
#what-we-do-section .card.active::after {
  opacity: 1;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  #what-we-do-section .cards-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  #what-we-do-section .cards-container {
    grid-template-columns: 1fr;
  }

  #what-we-do-section .card:hover {
    transform: translate(0, -12px);
  }

  #what-we-do-section .card:hover::before,
  #what-we-do-section .card:hover::after {
    transform: translate(0,0);
  }
}





/* Section  what we do section*/
.what-we-do {
    padding: 70px 8%;
    text-align: center;
    background-color: white;
}

/* Title */
.section-title span {
    color: green;
    font-weight: 600;
    letter-spacing: 1px;
}

.section-title h2 {
    margin-top: 10px;
    font-size: 32px;
    font-weight: 700;
    color: #222;
}

/* Cards Layout */
.cards-container {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Card */
.card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

/* Highlighted Card */
.card.active {
    background:white;
}

/* Icon */
.icon {
    width: 65px;
    height: 65px;
    margin: 0 auto 20px;
    background: #1b6f5c;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: transform 0.4s ease;
}

/* Card Text */
.card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #222;
}

.card p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

/* Hover Effects */
.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card:hover .icon {
    transform: rotate(10deg) scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title h2 {
        font-size: 26px;
    }

    .card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .section-title h2 {
        font-size: 22px;
    }
}


/* why join us */
/* Section */
.why-join {
    padding: 60px 20px;
    text-align: center;
    background-color: rgb(236, 231, 231);
}

/* Heading */
.small-title {
    color: green;
    font-weight: bold;
    margin-bottom: 10px;
  
}

.main-title {
    font-size: 32px;
    margin-bottom: 40px;
    color: #222;
}

/* Main Box */
.why-box {
    background: #14352e;
    max-width: 1100px;
    margin: auto;
    border-radius: 40px;
    padding: 40px;
    display: flex;
    gap: 40px;
    align-items: center;
}

/* Left Content */
.why-left {
    flex: 1;
    color: #ffffff;
    text-align: left;
}

.why-left h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.why-left p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #dddddd;
}

/* Points */
.points {
    display: flex;
    gap: 40px;
    margin-bottom: 25px;
}

.points p {
    font-size: 14px;
    margin-bottom: 8px;
}

/* Donate Button */
.donate-btn {
    display: inline-block;
    padding: 12px 26px;
    background: green;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.donate-btn:hover {
    background: darkgreen;
    transform: translateY(-3px);
}

/* Right Image */
.why-right {
    background: #ffffff;
    border-radius: 30px;
    padding: 20px;
}

.why-right img {
    width: 100%;
    max-width: 300px;
}

/* Responsive */
@media (max-width: 900px) {
    .why-box {
        flex-direction: column;
        text-align: center;
    }

    .why-left {
        text-align: center;
    }

    .points {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 500px) {
    .main-title {
        font-size: 24px;
    }

    .why-left h3 {
        font-size: 20px;
    }
}



/* get in touch */

.contact-section {
    position: relative;
    width: 100%;
    min-height: 55vh;
    background: #0b1d15;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact-container {
    position: relative;
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 40px;
    z-index: 1;
}

/* Image Section */
.contact-image {
    flex: 1;
}

.contact-image img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
}

/* Content Section */
.contact-content {
    flex: 1;
    color: #fff;
}

.small-title {
    color: #2ecc71;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-content h2 {
    font-size: 36px;
    margin: 15px 0 30px;
}

/* Form Styling */
.input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

input,
textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 30px;
    border: 1px solid #ffffff55;
    background: transparent;
    color: #fff;
    outline: none;
}

textarea {
    border-radius: 15px;
    min-height: 120px;
    resize: none;
    margin-bottom: 20px;
}

input::placeholder,
textarea::placeholder {
    color: #ccc;
}

/* Button */
button {
    background: #2ecc71;
    color: #000;
    padding: 14px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #27ae60;
}

/* Responsive Design */
@media (max-width: 900px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-content h2 {
        font-size: 28px;
    }

    .input-group {
        flex-direction: column;
    }
}

/* action section changed to project card */  
/* Section */
.actions-section {
  padding: 60px 20px;
  background-color: #ffffff;
}
.actions-section h2 {
  font-size: 45px;
  font-weight: 550;
  
}
.actions-section p{
 color:black ;
  font-size: 20px;
}
/* Container */
.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Heading */
.section-title {
  font-size: 32px;
  font-weight: bold;
}

.section-subtitle {
  margin-top: 8px;
  color: #555;
}

/* Cards layout */
.actions-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
}

/* Card */
.action-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  padding: 15px;
  transition: transform 0.3s ease;
}

.action-card:hover {
  transform: translateY(-8px);
}

/* Image */
.action-card img {
  width: 100%;
  border-radius: 12px;
}

/* Text */
.action-card h3 {
  font-size: 16px;
  margin: 15px 0;
  text-align: left;
}

/* Progress */
.progress-box {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 10px;
}

.percent {
  color: #0b5d4b;
  font-weight: bold;
}

.progress-bar {
  width: 100%;
  height: 6px;
  background: #e6e6e6;
  border-radius: 10px;
  margin: 8px 0 15px;
}

.progress-fill {
  height: 100%;
  background: #0b5d4b;
  border-radius: 10px;
}

/* Button */
.read-btn {
  display: inline-block;
  padding: 10px 20px;
  background: #0b5d4b;
  color: #fff;
  text-decoration: none;
  border-radius: 25px;
  font-size: 14px;
  transition: background 0.3s ease;
}

.read-btn:hover {
  background: #094a3c;
}

/* Responsive */
@media (max-width: 992px) {
  .actions-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .actions-cards {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 26px;
  }
}

/* testimonial section */


.testimonials {
    padding: 60px 20px;
    text-align: center;
    background:whitesmoke ;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.testimonial-box {
    max-width: 800px;
    margin: auto;
    position: relative;
    background: wheat;
    padding: 40px 20px;
    border-radius: 10px;
}

.image-wrapper {
    width: 140px;
    height: 140px;
    margin: auto;
    border-radius: 50%;
    border: 5px solid orange;
    overflow: hidden;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content p {
    margin: 25px auto;
    font-size: 16px;
    line-height: 1.7;
    max-width: 600px;
    color: #555;
}

.testimonial-content h4 {
    font-size: 18px;
    color: #000;
}

/* Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: orange;
    border: none;
    color: white;
    font-size: 20px;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
}

.left {
    left: -20px;
}

.right {
    right: -20px;
}

.nav-btn:hover {
    background: darkorange;
}

/* Dots */
.dots {
    margin-top: 20px;
}

.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #ccc;
    border-radius: 50%;
    margin: 5px;
}

.dot.active {
    background: orange;
}

/* Responsive */
@media (max-width: 600px) {
    .testimonial-content p {
        font-size: 14px;
    }

    .image-wrapper {
        width: 110px;
        height: 110px;
    }

    .nav-btn {
        padding: 8px 12px;
    }
}



/* 
footer section */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

.footer {
  background: #0b0b0b;
  color: #fff;
  padding: 50px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-box h3 {
  margin-bottom: 15px;
  font-size: 20px;
}

.footer-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.footer-logo {
  width: 90px;
  margin-top: 15px;
}

.footer-box ul {
  list-style: none;
}

.footer-box ul li {
  margin-bottom: 10px;
}

.footer-box ul li a {
  text-decoration: none;
  color: #ccc;
  transition: 0.3s;
}

.footer-box ul li a:hover {
  color: #fbb034;
  padding-left: 5px;
}

.footer-box i {
  color: #fbb034;
  margin-right: 8px;
}

/* Social Links */
.social-links li a {
  display: flex;
  align-items: center;
}

/* Single Line */
.footer-line {
  border: none;
  height: 1px;
  background: #444;
  margin: 40px auto 15px;
  max-width: 1200px;
}

/* Copyright Center */
.copyright {
  text-align: center;
  font-size: 14px;
  color: #ccc;
}

.copyright span {
  color: #fbb034;
  font-weight: bold;
}
.copyright #ephorsys{
  text-decoration: none;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-box i {
    margin-right: 5px;
  }

  .social-links li a {
    justify-content: center;
  }
}
