 html {
   scroll-behavior: smooth;
 }

 /* ─── Basics / Reset ─────────────────────────── */
 *,
 *::before,
 *::after {
   box-sizing: border-box;
   margin: 0;
   padding: 0;
 }

 body {
   font-family: Arial, sans-serif;
 }

 /* ─── Top Contact Bar ────────────────────────── */
 .top-bar {
   background: #5c77ff;
   color: #fff;
   font-size: 14px;
   padding: 8px 20px;
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
 }

 .top-bar a {
   color: inherit;
   text-decoration: none;
   margin-right: 15px;
   display: inline-flex;
   align-items: center;
   gap: 5px;
 }

.social-icon a i {
  font-size: 19px; /* Increase as needed: 24px, 28px, etc. */
  margin: 0 8px;
  transition: transform 0.2s ease;
}

.social-icon a i:hover {
  transform: scale(1.2); /* Optional: adds a zoom on hover */
}

 @media (max-width: 768px) {
   .top-bar {
     display: none;
   }
 }

 /* ─── Navbar ─────────────────────────────────── */
 nav.main-nav {
   background: #fff;
   box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
   position: sticky;
   /* sticks after top-bar scrolls away */
   top: 0;
   z-index: 1000;
 }

 .navbar-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 10px 20px;
 }

 .nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.7rem;
  font-weight: 700;
  color: #ff7a00;
  line-height: 1;
}

.nav-logo-img {
  height: 42px;
  width: auto;
  object-fit: contain;
}


 /* Hamburger toggle */
 .nav-toggle {
   font-size: 1.8rem;
   color: #ff7a00;
   cursor: pointer;
   display: none;
   /* shown by media‑query */
   z-index: 1100;
   /* above sliding panel */
 }

 /* Desktop menu */
 ul.nav-links {
   list-style: none;
   display: flex;
   align-items: center;
   gap: 22px;
 }

 ul.nav-links li a {
   text-decoration: none;
   color: #000;
   font-size: 17px;
   font-weight: 600;
   position: relative;
 }

 ul.nav-links li a::after {
   content: '';
   position: absolute;
   left: 0;
   bottom: -5px;
   width: 0;
   height: 2px;
   background: #ff7a00;
   transition: width .3s;
   border-radius: 1px;
 }

 ul.nav-links li a:hover,
 ul.nav-links li a.active {
   color: #ff7a00;
 }

 ul.nav-links li a:hover::after,
 ul.nav-links li a.active::after {
   width: 100%;
 }

 .btn {
   background: #ff7a00;
   color: #fff;
   border: none;
   padding: 10px 18px;
   font-weight: 700;
   border-radius: 5px;
   cursor: pointer;
   transition: background .3s;
 }

 .btn:hover {
   background: #ff7a00;
   color: black;
 }

 /* ─── Mobile styles ──────────────────────────── */
 @media (max-width: 768px) {
   .nav-toggle {
     display: block;
   }

   ul.nav-links {
     position: fixed;
     top: 0;
     right: -260px;
     /* start off‑screen */
     width: 260px;
     height: 100vh;
     background: #fff;
     flex-direction: column;
     gap: 32px;
     padding-top: 70px;
     align-items: center;
     transition: right .3s ease;
     box-shadow: -2px 0 6px rgba(0, 0, 0, .1);
     z-index: 1000;
     /* below toggle but above content */
   }

   ul.nav-links.active {
     right: 0;
   }

   /* Make links bigger for touch */
   ul.nav-links li a {
     font-size: 20px;
   }
 }

 /* ---------- Hero Section ---------- */
 .hero {
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 80px 24px;
   gap: 60px;
   max-width: 1200px;
   margin: auto;
   flex-wrap: wrap;
 }

 /* ─── HERO SECTION ───────────────────────────── */
 :root {
   --accent: #ff7a00;
   --accent-dark: #e86400;
   --bg: #f8f8f8;
   --radius: 14px;
 }

 .hero {
   font-family: 'Poppins', Arial, sans-serif;
   /* nicer headline */
   background: var(--bg);
   display: flex;
   flex-wrap: wrap;
   align-items: center;
   justify-content: center;
   gap: 60px;
   padding: 80px 24px;
   max-width: 1200px;
   margin: auto;
 }

 .hero-text {
   flex: 1 1 350px;
   max-width: 500px;
 }

 .hero-text h1 {
   font-size: clamp(2.3rem, 4vw + 1rem, 3.5rem);
   line-height: 1.15;
   font-weight: 700;
   margin-bottom: 24px;
 }

 .hero-text p {
   font-size: 1rem;
   color: #555;
   margin-bottom: 32px;
 }

 .btn-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }

 .hero .btn-primary {
   background: var(--accent);
 }

 .hero .btn-primary:hover {
   background: var(--accent-dark);
 }

 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 2px solid var(--accent);
 }

 .btn-outline:hover {
   background: var(--accent);
   color: #fff;
 }

 /* Image card */
 .hero-img-wrapper {
   position: relative;
   flex: 1 1 350px;
   max-width: 500px;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
   aspect-ratio: 4 / 3;
 }

 .hero-img-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }

 /* Pills */
 .pill {
   position: absolute;
   display: flex;
   align-items: center;
   gap: 10px;
   padding: 10px 14px;
   font-size: 0.75rem;
   font-weight: 600;
   background: #fff;
   border-radius: 999px;
   box-shadow: 0 4px 12px rgba(0, 0, 0, .08);
 }

 .pill.progress {
   top: 18px;
   right: 18px;
   min-width: 130px;
 }

 .pill.people {
   bottom: 18px;
   left: 18px;
 }

 .progress-bar {
   flex: 1;
   height: 6px;
   background: #ececec;
   border-radius: 3px;
   overflow: hidden;
 }

 .progress-bar span {
   display: block;
   height: 100%;
   background: var(--accent);
   width: 70%;
 }

 .avatars {
   display: flex;
 }

 .avatar {
   width: 24px;
   height: 24px;
   border-radius: 50%;
   border: 2px solid #fff;
   background: #ddd;
   margin-left: -6px;
 }

 .avatar:first-child {
   margin-left: 0;
 }

 @media (max-width: 768px) {
   .hero {
     padding: 60px 16px;
     gap: 40px;
   }

   .btn-row {
     justify-content: center;
   }
 }

 .hero-text {
   flex: 1 1 350px;
   max-width: 500px;
 }

 .hero-text h1 {
   font-size: clamp(2.3rem, 4vw + 1rem, 3.5rem);
   line-height: 1.15;
   font-weight: 700;
   margin-bottom: 24px;
 }

 .hero-text p {
   font-size: 1rem;
   color: var(--text-light);
   margin-bottom: 32px;
 }

 .btn-row {
   display: flex;
   gap: 18px;
   flex-wrap: wrap;
 }

 .btn {
   padding: 14px 28px;
   font-size: 0.95rem;
   font-weight: 600;
   border: none;
   border-radius: var(--radius);
   cursor: pointer;
   transition: background .25s, color .25s;
 }

 .btn-primary {
   background: var(--accent);
   color: #fff;
 }

 .btn-primary:hover {
   background: var(--accent-dark);
 }

 .btn-outline {
   background: transparent;
   color: var(--accent);
   border: 2px solid var(--accent);
 }

 .btn-outline:hover {
   background: var(--accent);
   color: #fff;
 }

 /* ---------- Image Card ---------- */
 .hero-img-wrapper {
   position: relative;
   flex: 1 1 350px;
   max-width: 500px;
   border-radius: var(--radius);
   overflow: hidden;
   box-shadow: 0 12px 30px rgba(0, 0, 0, .12);
   aspect-ratio: 4 / 3;
   /* keeps nice proportion */
 }

 .hero-img-wrapper img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
 }


 /* ---------- Responsive tweaks ---------- */
 @media (max-width: 768px) {
   .hero {
     padding: 60px 16px;
     gap: 40px;
   }

   .btn-row {
     justify-content: center;
   }
 }

/* ---------- Contact Us ----------- */
.contact-section {
  padding: 80px 20px;
  background-color: #f4f8ff;
  font-family: 'Open Sans', sans-serif;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
  
.contact-info,
.contact-form {
  flex: 1 1 300px;
  padding: 30px;
}

.contact-info h2,
.contact-form h2 {
  color: #ff7a00;
  margin-bottom: 30px;
  font-size: 2rem;
  text-align: center;
  position: relative;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.contact-info h2::after,
.contact-form h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff7a00;
  border-radius: 2px;
}

.contact-info p {
  font-size: 16px;
  margin: 10px 0;
  color: #333;
  display: flex;
  align-items: center;
}

.contact-info i {
  color: #ff7a00;
  margin-right: 10px;
  font-size: 18px;
}
.contact-info a {
  color: #333;
  text-decoration: none;
}

.contact-info a i {
  font-size: 20px;
  margin-right: 10px;
  color: #ff7a00;
  transition: color 0.3s;
}

.contact-info a:hover i {
  color: #001bc1;
}

.map-container {
  margin-top: 20px;
  border-radius: 8px;
  overflow: hidden;
}

.contact-form form {
  display: flex;
  flex-direction: column;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #000000;
  border-radius: 5px;
  font-size: 16px;
  resize: none;
  font-family: 'Open Sans', sans-serif;
}

.contact-form button {
  background-color: #ff7a00;
  color: #fff;
  padding: 12px;
  border: none;
  font-weight: 600;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background-color: #001bc1;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
  }
}


 /*---------- Footer -----------*/
.main-footer {
  margin-top: 50px;
  font-family: Arial, sans-serif;
}

.footer-top {
  background-color: #fc8f00;
  padding: 20px;
  text-align: center;
  color: white;
}

.footer-logo {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.social-icons a {
  color: white;
  margin: 0 10px;
  font-size: 22px;
  text-decoration: none;
}

.footer-bottom {
  background-color: #000; /* black background */
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
}

.footer-bottom .dev-name {
  color: #5eff13; /* green */
  font-weight: bold;
  text-decoration: none;
}
.policy{
	text-decoration: none; color: rgb(63, 63, 63);
}

.policy :hover{
	text-decoration: none; color: rgb(0, 0, 0);
}

 /* ------- Donation Section ------- */
.donation-section {
  background-color: #f1f7ff;
  padding: 80px 20px 40px;
  font-family: 'Poppins', sans-serif;
  border-top: 4px solid #ffa200;
}

.donation-box {
  max-width: 800px;
  margin: auto;
  background: #ffffff;
  border-radius: 10px;
  padding: 40px 30px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.donation-box h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #ff7a00;
  position: relative;
  display: inline-block;
}

.donation-box h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #ff7a00;
  border-radius: 2px;
}

.donation-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #333;
}

#donation-form input,
#donation-form button {
  width: 100%;
  padding: 14px;
  margin-bottom: 15px;
  font-size: 16px;
  border-radius: 6px;
  border: 1px solid #000000;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

#donation-form input:focus {
  border-color: #ff7a00;
  box-shadow: 0 0 5px rgba(255, 122, 0, 0.4);
}

#donation-form button {
  background-color: #ff7a00;
  color: white;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

#donation-form button:hover {
  background-color: #007cf8;
}

#donation-status {
  font-size: 1rem;
  color: green;
}


 /* ====== Photo Gallery ====== */
.photo-gallery {
  background-color: #f4f8ff;
  padding: 80px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
}

.photo-gallery h2 {
  font-size: 2.2rem;
  color: #ff7a00;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
  font-weight: 700;
}

.photo-gallery h2::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4px;
  background-color: #ff7a00;
  border-radius: 2px;
}

.photo-gallery p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-grid img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}
/* ===== About Section ===== */
.about-appeal {
  background-color: #f4f7ff;
  padding: 60px 20px;
}

.about-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

.about-left, .donation-right {
  flex: 1 1 500px;
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  font-family: 'Poppins', sans-serif;
}

.about-left h2, .donation-right h2 {
  color: #c39a75;
  margin-bottom: 15px;
  font-size: 1.5rem;
}

.about-left p, .donation-right p {
  color: #333;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about-container {
    flex-direction: column;
  }
}

/* ===== ABOUT US Heading Style ===== */
.about-heading {
  font-size: 2.4rem;
  font-weight: 700;
  color: #ff7a00;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 40px;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.about-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #ff7a00;
  border-radius: 2px;
}

/* ------ Directors Section ------ */
  .directors-section {
    padding: 60px 20px;
    background: #f4f8ff;
    text-align: center;
    font-family: 'Poppins', sans-serif;
  }

  .section-title {
    position: relative;
    display: inline-block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ff7a00;
    margin-bottom: 40px;
  }

  .section-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 100%;
    height: 4px;
    background-color: #ff7a00;
    border-radius: 2px;
  }

  .directors-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .director-card {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    padding: 20px;
    width: 400px;
    height: 500px;
    transition: transform 0.3s;
  }

  .director-card:hover {
    transform: translateY(-5px);
  }

  .director-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
  }

  .director-card h3 {
    margin-top: 15px;
    font-size: 1.1rem;
    color: #222;
  }
  .director-card p {
  font-size: 1.3rem;
  font-family: 'Times New Roman', Times, serif;
  color: #000000;
  font-weight: 500;
}
/*------- Mentors Section -------*/
.mentors-section {
  padding: 80px 20px;
  background-color: #fff;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}

.mentors-section .section-title {
  font-size: 2.5rem;
  color: #ff7a00;
  margin-bottom: 40px;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

.mentor-card {
  background-color: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-5px);
}

.mentor-card img {
  width: 180px;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mentor-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
  color: #ff7a00;
  letter-spacing: 0.5px;
}

.mentor-card p {
  font-size: 1.3rem;
  font-family: 'Times New Roman', Times, serif;
  color: #000000;
  font-weight: 500;
}

/*------- Memployee Section -------*/
.section-heading {
  color: #ff7700; /* Orange */
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  display: inline-block;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.employee-section {
  text-align: center;
  padding: 40px 20px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #ff7700;
  margin: 8px auto 0;
  border-radius: 2px;
}


.employee-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
}

.employee-card {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  padding: 20px;
  width: 250px;
  transition: transform 0.3s ease;
}

.employee-card:hover {
  transform: translateY(-10px);
}

.employee-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 15px;
}

.employee-card h3 {
  margin: 10px 0 5px;
  font-size: 20px;
  color: #333;
}

.employee-card p {
  font-size: 16px;
  color: #666;
}
