* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-blue: #154360;
  --primary-green: #60CE80;
}


/* Hind Siliguri */
/* font-family: "Hind Siliguri", sans-serif; */


/* Poppins */
/* font-family: "Poppins", sans-serif; */



body {
  font-family: "Poppins", sans-serif;
  background-color: #e8e8e8;
  /* color: #333; */
  line-height: 1.6;

}


h1,
h2,
h3,
h4 {
  font-family: "Poppins", sans-serif;
  color: var(--primary-green);
}

/* NAVIGATION */
nav {
  /* position: fixed; */
  /* background-color: ; */
  background-color: #fff;
  /* padding: 1rem 2rem; */
  padding: 5px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;

}

.logo {
  width: 75px;
  height: 75px;
}

.nav-links {
  display: flex;
  gap: 5px;
  align-items: center;
  list-style: none;
}

.nav-links a {
  text-decoration: none;

  color: black;
  font-size: 0.9rem;
  transition: 0.3s ease-in-out;
  /* background-color: gray; */
  padding: 5px 10px;
  border-radius: 5px;
}

.nav-links a:hover {
  background-color: var(--primary-green);
}

.donate-btn {
  background-color: var(--primary-green);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}


/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: 0.3s;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 4rem;
  /* margin-bottom: 2rem; */
}

/* SECTION CONTAINER */
.section {
  max-width: 1200px;
  margin: 0rem auto;
  background-color: #ffffff;
  padding: 3rem;
  /* border-radius: 10px; */
  /* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
  scroll-margin-top: 100px;

}

.section h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* PROJECT CARDS */
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.project-card {
  /* background-color: #f5f5f5; */
  padding: 15px;
  border-radius: 8px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  display: flex;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.project-card img {
  max-width: 200px;
  height: auto;
  border-radius: 5px;
  margin-bottom: 1rem;
}

.project-card a {
  color: #0066cc;
  text-decoration: underline;
  font-size: 1.1rem;
}

/* MOTIVE SECTION */
.motive-content {
  text-align: justify;
  line-height: 1.8;
}

.motive-content p {
  margin-bottom: 1.5rem;
}

/* FUNDS SECTION */
.funds-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  /* align-items: center; */
  margin-top: 2rem;
}

/*.funds-grid a {*/
/*  text-decoration: none;*/
/*}*/

/*.funds-grid a:hover {*/
/*  text-decoration: underline;*/
/*}*/

.chart-container {
  text-align: center;
  /* border: 1px solid red; */
}

.chart-container iframe {
  width: 100%;
  height: 300px;
  border: none;
  border-radius: 8px;
}

.chart-placeholder {
  width: 100%;
  height: 300px;
  background-color: #f0f0f0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
}

/* DONATE SECTION */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.donate-methods h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.donate-method {
  margin-bottom: 1.5rem;
}

.donate-method strong {
  display: block;
  margin-bottom: 0.3rem;
}

.qr-code {
  text-align: center;
}

.qr-code img {
  max-width: 100%;
  height: auto;

}


.ext_sec {
  margin-top: 20px;
  display: flex;
  background-color: transparent;
  padding: 0;
}

.ext_sec a {
  width: 100%;
  /* border: 1px solid red; */
  padding: 10px;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: rgb(60, 154, 185);
  transition: all 0.25s ease-in-out;
}

.ext_sec a:hover {
  color: black;
}



/* FOOTER */
footer {
  background-color: #fff;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-info h3,
.social-links h3 {
  margin-bottom: 1rem;
}

.contact-info p {
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

.social-icons {
  display: flex;
  gap: 5px;
  margin-top: 1rem;
  flex-direction: column;
}


.social-icons a,
.contact-info a {
  display: inline-block;
  text-decoration: none;
  /* border: 1px solid red; */
  display: flex;
  align-items: center;
  gap: 10px;
  transition: 0.25s ease-in-out;
}

.social-icons a span {
  text-decoration: none;
  color: var(--primary-blue);
}

.social-icons img,
.contact-info img {
  width: 30px;
  height: 30px;
  transition: transform 0.3s;
}

.social-icons a:hover,
.contact-info a:hover {
  /* transform: scale(1.1); */
  margin-left: 10px;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid #ddd;
  color: #666;
  font-size: 0.9rem;
}

footer .contact-info a {
  color: var(--primary-blue);
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    right: -100%;
    top: 70px;
    flex-direction: column;
    background-color: #fff;
    width: 70%;
    padding: 2rem;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    transition: right 0.3s;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 1.4rem;
  }

  .section {
    padding: 2rem 1.5rem;
    margin: 0rem auto;
  }

  .project-grid {
    grid-template-columns: 1fr;
  }

  .funds-grid {
    grid-template-columns: 1fr;
  }

  .donate-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
  }

  nav {
    padding: 1rem;
  }
}














/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */
/* =========================================== */






/* ==========================================
   SECOND PAGE STYLES
========================================== */

.about-text {
  /* text-align: end; */
  line-height: 1.8;
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.work-list ul {
  padding-left: 20px;
  line-height: 2;
}

/* SLIDESHOW */

.slideshow-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
}

.slide {
  display: none;
}

.active-slide {
  display: block;
}

.slide img {
  transition: 0.5s ease-in-out;
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 10px;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  padding: 15px;
  cursor: pointer;
  font-size: 1rem;
  border-radius: 50%;
  transition: 0.3s;
}

.slide-btn:hover {
  background-color: var(--primary-green);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slideshow-container button {
  display: flex;
}

/* TEAM SECTION */

.founder-section {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  /* grid-template-columns: repeat(auto-fit, 250px); */
  gap: 2rem;
  margin-top: 2rem;
  align-items: center;
  justify-content: center;
}

.profile-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.profile-card:hover img {
  transform: scale(1.1);
}

.profile-img {
  max-width: 250px;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  /* border: 2px solid blueviolet; */
  background-color: #f0f0f0;
  border-radius: 10px;
  margin-bottom: 1rem;
}

.profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.25s ease-in-out;

}

.profile-card h3 {
  font-size: 1rem;
}

.profile-card p {
  font-size: 0.9rem;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .works-grid {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .slide img {
    height: 250px;
  }

  .slide-btn {
    padding: 10px;
    font-size: 0.8rem;
  }
}

/* 
@media (max-width: 500px) {

  .team-grid {
    grid-template-columns: 1fr;
  }

} */

.section {
  overflow: hidden;
}


/* ACTIVITY GALLERY */

.activity_grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.activity_grid .profile-img {
  width: 100%;
  max-width: 100%;
  height: 400px;
}

.activity_grid .profile-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .activity_grid {
    grid-template-columns: 1fr;
  }

  .activity_grid .profile-img {
    height: 300px;
  }

}