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


/* Navbar section*/
.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);
  }
}



/* founder section */

/* Section */
.founder-section {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

/* Title */
.main-title {
  font-size: 36px;
  margin-bottom: 50px;
}

.main-title .dark {
  color: #111;
  font-weight: bold;
}

.main-title .green {
  color: #3bb54a;
  font-weight: bold;
}

/* Container */
.founder-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}

/* Image */
.founder-image img {
  width: 320px;
  border-radius: 10px;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

/* Hover Effect */
.founder-image img:hover {
  transform: scale(1.05);
box-shadow: 0 3px 10px black ;
}

/* Content */
.founder-content {
  text-align: left;
  animation: slideRight 1s ease forwards;
}

.founder-name {
  font-size: 28px;
  margin-bottom: 20px;
}

/* Text */
.founder-content p {
  font-size: 18px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

/* Highlight Words */
.founder-content span {
  color: #3bb54a;
  font-weight: bold;
}

/* Text Animation */
.animate-text {
  opacity: 0;
  animation: fadeUp 1s ease forwards;
}

.delay {
  animation-delay: 0.4s;
}

.delay2 {
  animation-delay: 0.8s;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

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

  .founder-content {
    text-align: center;
  }

  .founder-image img {
    width: 260px;
  }

  .main-title {
    font-size: 28px;
  }
}




/* 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;
  }
}




/*below founder section */

/* WRAPPER */
.focus-wrapper {
  padding: 90px 0;
  background-color: whitesmoke;
}

/* SECTION HEADER */
.section-header {
  max-width: 820px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 20px;
}

.section-header h1 {
  font-size: 46px;
  margin-bottom: 16px;
  position: relative;
}

.section-header h1::after {
  content: "";
  width: 90px;
  height: 4px;
  background: #f59e0b;
  display: block;
  margin: 14px auto 0;
  border-radius: 2px;
}

.section-header p {
  font-size: 18px;
  color: #6b7280;
  line-height: 1.7;
}

/* SECTION */
.focus-section {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* CARD */
.focus-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #ffffff;
  padding: 40px;
  margin-bottom: 60px;
  border-radius: 22px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);

  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

/* ACTIVE ANIMATION */
.focus-card.active {
  opacity: 1;
  transform: translateY(0);
}

/* REVERSE */
.focus-card.reverse {
  flex-direction: row-reverse;
}

/* IMAGE */
.focus-image {
  flex: 1;
}

.focus-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 18px;
}

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

.focus-content h2 {
  font-size: 36px;
  margin-bottom: 18px;
  color: #f59e0b;
}

.focus-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #4b5563;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .focus-card,
  .focus-card.reverse {
    flex-direction: column;
  }

  .focus-image img {
    height: 260px;
  }
}

@media (max-width: 576px) {
  .section-header h1 {
    font-size: 32px;
  }

  .section-header p {
    font-size: 16px;
  }

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

  .focus-content p {
    font-size: 16px;
  }

  .focus-card {
    padding: 25px;
  }
}




/* work section */
/* Section */


/* Section */
.our-works {
  padding: 90px 20px;
  background: #ffffff;
}

/* Header */
.works-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeDown 1s ease;
}

.works-header h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 10px;
}

.works-header p {
  color: #666;
  font-size: 15px;
}

/* Container */
.works-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* Box */
.work-box {
  background: #f9f9f9;
  padding: 45px 30px;
  text-align: center;
  border-radius: 12px;
  transition: all 0.4s ease;
  animation: fadeUp 1s ease;
}

.work-box:hover {
  transform: translateY(-12px) scale(1.03);
   box-shadow: 0 3px 10px black ;
  background: #ffffff;
}

/* Icon */
.work-box i {
  font-size: 42px;
  color: #ff6a00;
  margin-bottom: 18px;
  transition: transform 0.4s ease;
}

.work-box:hover i {
  transform: rotate(10deg) scale(1.2);
}

/* Title */
.work-box h3 {
  font-size: 17px;
  margin-bottom: 12px;
  color: #222;
}

/* Line */
.work-box span {
  display: block;
  width: 50px;
  height: 3px;
  background: #ff6a00;
  margin: 15px auto;
  transition: width 0.4s ease;
}

.work-box:hover span {
  width: 90px;
}

/* Text */
.work-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
}

/* Animations */
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  .works-header h2 {
    font-size: 28px;
  }
}



/* Heading */
.work-box h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #222;
} */



.work-box:hover .line {
  width: 80px;
}

/* Text */
.work-box p {
  font-size: 14.5px;
  line-height: 1.7;
  color: #555;
} */




body {
  background: #fff;
  color: #333;
}

/* ===== Section who we are ===== */
.who-we-are {
  background-color:whitesmoke;
  padding: 80px 10%;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 60px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: #0a9f00;
  display: block;
  margin: 15px auto 0;
  border-radius: 5px;
}

/* ===== Layout ===== */
.who-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* ===== Text ===== */
.who-text h3 {
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.highlight {
  color: #ff6a00;
  font-weight: 700;
}

.who-text small {
  display: block;
  font-size: 14px;
  color: #666;
  margin-top: 5px;
}

.who-text p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #444;
}

/* Button */
.read-more-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: #0a9f00;
  color: #fff;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.read-more-btn:hover {
  background: #087c00;
  transform: translateY(-3px);
}

/* ===== Image ===== */
.who-image img {

  width: 100%; 
  max-width: 500px; 
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
  transition: 0.4s ease;
}

.who-image img:hover {
  transform: scale(1.05);
}

/* ===== Animations ===== */
.animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-text h3 {
    font-size: 20px;
  }

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

@media (max-width: 600px) {
  .who-we-are {
    padding: 60px 6%;
  }

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

  .who-text p {
    font-size: 15px;
  }
}





/* 
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;
  }
}
