* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #f8fafc;
  color: #1e293b;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.navbar {
  width: 90%;
  max-width: 1400px;
  margin: auto;
  height: 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 60px;
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  color: #1e293b;
  font-size: 1rem;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover {
  color: #16a34a;
}

.donate-btn {
  background: #f97316;
  color: white;
  padding: 12px 24px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.donate-btn:hover {
  background: #ea580c;
}

/* @media (max-width: 768px) {
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: #fff;
  }

  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 15px;
  }

  .logo img {
    max-width: 120px;
    height: auto;
  }

  .nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .nav-links a {
    font-size: 14px;
  }

  .donate-btn {
    margin-top: 5px;
  }
} */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../assets/images/hero.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  margin-top: 50px;
  padding: 120px 8%;
}

.hero-content {
  max-width: 700px;
  color: white;
}

.hero-content h1 {
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 20px;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 35px;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero,
.about-hero,
.programs-hero,
.gallery-hero,
.contact-hero,
.donate-hero {
  padding-top: 180px !important;
}

.btn-primary {
  background: #16a34a;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #15803d;
}

.btn-secondary {
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-secondary:hover {
  background: white;
  color: #111827;
}

.stats {
  width: 90%;
  max-width: 1300px;
  margin: -80px auto 100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: white;
  padding: 35px;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-card h2 {
  color: #16a34a;
  font-size: 3rem;
  margin-bottom: 10px;
}

.stat-card p {
  color: #64748b;
  font-weight: 600;
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 3rem;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* @media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
    gap: 20px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
  }

  .hero {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-content h1 {
    font-size: 2.3rem;
  }

  .stats {
    grid-template-columns: 1fr;
  }
} */
.focus-areas {
  width: 90%;
  max-width: 1300px;
  margin: 100px auto;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 15px;
}

.section-title p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
  line-height: 1.8;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.focus-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.focus-card:hover {
  transform: translateY(-8px);
}

.focus-card i {
  font-size: 3rem;
  color: #16a34a;
  margin-bottom: 20px;
}

.focus-card h3 {
  margin-bottom: 20px;
  color: #1e293b;
}

.focus-card ul li {
  margin-bottom: 12px;
  color: #64748b;
}

@media (max-width: 992px) {
  .focus-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section-title h2 {
    font-size: 2.2rem;
  }

  .focus-grid {
    grid-template-columns: 1fr;
  }
}

.mission-vision {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.mission-card {
  background: white;
  padding: 50px 40px;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.mission-card:hover {
  transform: translateY(-10px);
}

.card-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #dcfce7;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.card-icon i {
  font-size: 2rem;
  color: #16a34a;
}

.mission-card h2 {
  font-size: 2rem;
  color: #1e293b;
  margin-bottom: 20px;
}

.mission-card p {
  color: #64748b;
  line-height: 1.9;
  font-size: 1.05rem;
}
@media (max-width: 768px) {
  .mission-vision {
    grid-template-columns: 1fr;
  }

  .mission-card {
    padding: 35px 25px;
  }
}
.journey {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.timeline-card {
  background: white;
  padding: 35px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  position: relative;
  overflow: hidden;
}

.timeline-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #16a34a;
}

.timeline-card:hover {
  transform: translateY(-8px);
}

.timeline-card span {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 18px;
}

.timeline-card h3 {
  color: #1e293b;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.timeline-card p {
  color: #64748b;
  line-height: 1.8;
}
@media (max-width: 992px) {
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .timeline {
    grid-template-columns: 1fr;
  }
}
.impact-section {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.impact-card {
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  padding: 40px 25px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(22, 163, 74, 0.25);
  transition: 0.3s;
}

.impact-card:hover {
  transform: translateY(-10px);
}

.impact-card h3 {
  font-size: 3rem;
  margin-bottom: 12px;
  font-weight: 700;
}

.impact-card p {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.95;
}
@media (max-width: 992px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .impact-card h3 {
    font-size: 2.4rem;
  }
}
.gallery-section {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 60px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.gallery-item img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  transition: 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item img {
    height: 260px;
  }
}
.founder-section {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.founder-image img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.founder-tag {
  display: inline-block;
  padding: 10px 20px;
  background: #dcfce7;
  color: #15803d;
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
}

.founder-content h2 {
  font-size: 3rem;
  color: #1e293b;
  margin-bottom: 10px;
}

.founder-content h4 {
  color: #16a34a;
  margin-bottom: 25px;
}

.founder-content p {
  color: #64748b;
  line-height: 1.9;
}

.partners-section {
  width: 90%;
  max-width: 1300px;
  margin: 120px auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  margin-top: 60px;
}

.partner-card {
  background: white;
  border-radius: 20px;
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.partner-card img {
  width: 100%;
  max-height: 80px;
  object-fit: contain;
}

footer {
  background: #0f172a;
  color: white;
  margin-top: 120px;
}

.footer-container {
  width: 90%;
  max-width: 1300px;
  margin: auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.footer-col h3 {
  margin-bottom: 20px;
}

.footer-col p,
.footer-col a {
  color: #cbd5e1;
  display: block;
  margin-bottom: 12px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #1e293b;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-bottom {
  text-align: center;
  padding: 25px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 992px) {
  .founder-section {
    grid-template-columns: 1fr;
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .founder-content h2 {
    font-size: 2.2rem;
  }
}
/* =========================
   HAMBURGER MENU
========================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
} 

@media (max-width: 768px) {
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    position: relative;
  }

  .menu-toggle {
    display: block;
    font-size: 28px;
    cursor: pointer;
    color: #222;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;

    width: 100%;

    background: #fff;

    display: none;

    flex-direction: column;

    align-items: center;

    gap: 20px;

    padding: 25px 0;

    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

    z-index: 9999;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    font-size: 16px;
    color: #222;
    text-decoration: none;
  }

  .donate-btn {
    display: none;
  }
  .navbar-social{
    display: none;
  }
}
.mobile-donate a {
  background: #ff7a1a;
  color: white !important;

  padding: 12px 25px;

  border-radius: 8px;

  font-weight: 600;

  display: inline-block;
}
.mobile-donate {
  display: none;
}
@media (max-width: 768px) {
  .mobile-donate {
    display: block;
    margin-top: 10px;
  }
  .navbar-social{
    display: none;
  }
}

.hidden {
  opacity: 0;

  transform: translateY(50px);

  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}

.show {
  opacity: 1;

  transform: translateY(0);
}
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease,
  background 0.3s ease;
}

header.scrolled {
  background: #ffffff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.s-c {
  opacity: 0;
  
  transform: translateY(40px);
  
  transition:
  opacity 0.8s ease,
  transform 0.8s ease;
}

.s-c.show {
  opacity: 1;
  
  transform: translateY(0);
}
header {
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.12);
}
.btn-primary,
.btn-secondary,
.donate-btn {
  transition:
  transform 0.3s ease,
  box-shadow 0.3s ease;
}

.btn-primary:hover,
.btn-secondary:hover,
.donate-btn:hover {
  transform: translateY(-3px);
  
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}



.dropdown{
  position:relative;
}

.dropdown>a{
  display:flex;
  align-items:center;
  gap:6px;
}

.dropdown-menu{
  
  position:absolute;
  
  top:120%;
  
  left:0;
  
  width:240px;
  
  background:#fff;
  
  border-radius:12px;
  
  box-shadow:0 12px 30px rgba(0,0,0,.12);
  
  opacity:0;
  
  visibility:hidden;
  
  transform:translateY(10px);
  
  transition:.3s;
  
  padding:10px 0;
}

/* Desktop */

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

/* Mobile */

@media(max-width:768px){

    .dropdown:hover .dropdown-menu{
        opacity:0;
        visibility:hidden;
        transform:translateY(10px);
    }

    .dropdown.active .dropdown-menu{
        opacity:1;
        visibility:visible;
        transform:translateY(0);

        position:static;

        width:100%;

        box-shadow:none;

        margin-top:10px;
    }

}
.dropdown > a i{
    transition:0.3s;
}

.dropdown.active > a i{
    transform:rotate(180deg);
}

.dropdown-menu li{
  
  width:100%;
}

.dropdown-menu a{
  
  display:block;
  
  padding:12px 20px;
  
  color:#222;
  
  transition:.3s;
}

.dropdown-menu a:hover{
  
  background:#f5f5f5;
  
  color:#16a34a;
}
.navbar-social{
  
  display:flex;
  
  align-items:center;
  
  gap:12px;
}

.navbar-social a{

  width:38px;

  height:38px;

  border-radius:50%;

  display:flex;

  justify-content:center;

  align-items:center;

  color:#fff;

  transition:.3s;
}

.navbar-social a:hover{

  transform:translateY(-3px) scale(1.08);
}

.facebook{
    background:#1877F2;
}

.instagram{
    background:linear-gradient(
        45deg,
        #f58529,
        #dd2a7b,
        #8134af,
        #515bd4
    );
}

.linkedin{
    background:#0A66C2;
}

.youtube{
    background:#FF0000;
}

.twitter{
    background:#000;
}
@media (max-width: 768px) {

  .navbar-social{
    display: none !important;
  }

}
.chetna-values{

    padding:100px 10%;

    background:linear-gradient(180deg,#ffffff,#f8fafc);

}

.section-heading{

    text-align:center;

    max-width:750px;

    margin:0 auto 60px;

}

.section-heading h2{

    font-size:42px;

    margin:18px 0;

    color:#222;

}

.section-heading h2 span{

    color:#16a34a;

}

.section-heading p{

    color:#666;

    line-height:1.8;

}

.values-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.value-card{

    background:white;

    border-radius:20px;

    padding:35px;

    text-align:center;

    transition:.35s;

    border:1px solid #e5e7eb;

    box-shadow:0 10px 30px rgba(0,0,0,.05);

}

.value-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(22,163,74,.15);

    border-color: #ffb347;

}

.letter{

    width:90px;

    height:90px;

    margin:auto;

    border-radius:50%;

    background: linear-gradient(135deg, #ff9933, #ff9933);
    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:42px;

    font-weight:700;

    margin-bottom:25px;

    transition:.35s;

}

.value-card:hover .letter{

    transform:rotate(10deg) scale(1.1);

}

.value-card h3{

    margin-bottom:15px;

    color:#222;

}

.value-card p{

    color:#666;

    line-height:1.7;

}

.chetna-footer{

    margin-top:70px;

    text-align:center;

}

.footer-social a:hover{

  transform:translateY(-3px) scale(1.08);
  
}

.chetna-footer h3{

    font-size:32px;

    color:#222;

}

.chetna-footer span{

    color:#16a34a;

}

@media(max-width:992px){

    .values-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .values-grid{

        grid-template-columns:1fr;

    }

    .section-heading h2{

        font-size:34px;

    }

}