/* ==============================
           NAVBAR
        ============================== */

.main-navbar {
  background: #fff;
  /* border-top: 3px solid #333; */
  border-bottom: 1px solid #eee;
  min-height: 70px;
  padding: 0;
}

.navbar-container {
  min-height: 98px;
}
.navbar-logo {
  width: 105px;
  height: 78px;
  object-fit: contain;
  display: block;
}
.navbar-nav {
  gap: 28px;
  align-items: center;
}

.navbar-nav .nav-link {
  position: relative;
  color: #111 !important;
  font-size: 18px;
  font-weight: 600;
  padding: 35px 0 30px !important;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.navbar-nav .nav-link:hover {
  color: #1d6b2f !important;
}

.navbar-nav .nav-link.active {
  color: #1d6b2f !important;
}

.navbar-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 24px;
  height: 3px;
  background: #1d6b2f;
}

.navbar-nav .dropdown-toggle::after {
  margin-left: 3px;
  vertical-align: 3px;
  border-top: 5px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  padding: 8px 0;
  margin-top: 0;
}

.dropdown-item {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
}

.dropdown-item:hover {
  background: #f2f8f3;
  color: #1d6b2f;
}
.navbar-toggler {
  border: none;
  box-shadow: none !important;
  font-size: 28px;
}

@media (max-width: 1199px) {
  .navbar-nav {
    gap: 18px;
  }

  .navbar-nav .nav-link {
    font-size: 16px;
  }
}

@media (max-width: 991px) {
  .main-navbar {
    min-height: auto;
  }

  .navbar-container {
    min-height: 85px;
  }

  .navbar-logo {
    width: 95px;
    height: 70px;
  }

  .navbar-collapse {
    background: #fff;
    border-top: 1px solid #eee;
    padding: 10px 0 20px;
  }

  .navbar-nav {
    gap: 0;
    align-items: stretch;
  }

  .navbar-nav .nav-link {
    padding: 13px 15px !important;
  }

  .navbar-nav .nav-link.active::after {
    display: none;
  }

  .navbar-nav .nav-link.active {
    background: #f2f8f3;
    border-left: 4px solid #1d6b2f;
  }

  .dropdown-menu {
    box-shadow: none;
    background: #f8f8f8;
    margin: 0 15px;
  }
}

@media (max-width: 575px) {
  .navbar-logo {
    width: 85px;
    height: 65px;
  }

  .navbar-container {
    min-height: 78px;
  }
}

/* =====================================================
   HERO SECTION
===================================================== */

.hero-section {
  width: 100%;
  overflow: hidden;
  background: #f3f0e4;
}

.hero-row {
  min-height: 420px;
}

.hero-content {
  position: relative;
  background: linear-gradient(90deg, #fff4c4 0%, #e8f3d8 50%, #dcefdc 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content-inner {
  position: relative;
  z-index: 2;
  padding: 55px 48px;
  width: 100%;
}

.hero-content h1 {
  margin: 0 0 28px;
  color: #000;
  font-size: clamp(38px, 4vw, 48px);
  line-height: 1.3;
  font-weight: 700;
  
}

.hero-content h1 span {
  display: block;
  color: #18ad3b;
}

.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  background: #ffab21;
  color: #000;

  text-decoration: none;

  padding: 10px 18px;

  border-radius: 25px;

  font-size: 16px;
  font-weight: 500;

  transition: all 0.3s ease;
}

.hero-btn i {
  font-size: 20px;
}

.hero-btn:hover {
  background: #f39a00;
  color: #000;
  transform: translateY(-2px);
}

.hero-image {
  min-height: 420px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;

  object-fit: cover;
  object-position: center;

  display: block;
}

.dots {
  position: absolute;

  width: 55px;
  height: 80px;

  background-image: radial-gradient(#777 1px, transparent 1px);

  background-size: 10px 10px;

  opacity: 0.55;

  z-index: 1;
}

.dots-left {
  top: 25px;
  left: 8px;
}

.dots-right {
  right: 5px;
  bottom: 20px;
}

@media (min-width: 1200px) {
  .hero-row {
    min-height: 420px;
  }

  .hero-image,
  .hero-image img {
    min-height: 420px;
  }

  .hero-content-inner {
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 991px) {
  .hero-row {
    min-height: auto;
  }

  .hero-content {
    min-height: 400px;
  }

  .hero-content-inner {
    padding: 55px 40px;
  }

  .hero-content h1 {
    font-size: 42px;
  }

  .hero-image,
  .hero-image img {
    min-height: 380px;
    height: 380px;
  }
}

@media (max-width: 575px) {
  .hero-content {
    min-height: 360px;
  }

  .hero-content-inner {
    padding: 45px 28px;
  }

  .hero-content h1 {
    font-size: 34px;
    line-height: 1.25;
   
  }

  .hero-content h1 span {
    display: inline;
  }

  .hero-btn {
    font-size: 15px;
    padding: 9px 16px;
  }

  .hero-image,
  .hero-image img {
    min-height: 280px;
    height: 280px;
  }

  .dots {
    width: 45px;
    height: 65px;
    background-size: 9px 9px;
  }
}
.latest-marquee {
  width: 100%;
  min-height: 48px;

  display: flex;
  align-items: center;

  background: #fff;
  border-bottom: 1px solid #ddd;

  overflow: hidden;
}

.marquee-label {
  flex-shrink: 0;

  height: 48px;

  display: flex;
  align-items: center;
  gap: 8px;

  padding: 0 22px;

  background: #f5a623;
  color: #111;

  font-size: 14px;
  font-weight: 700;

  z-index: 2;
}

.marquee-wrapper {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-content {
  display: inline-flex;
  align-items: center;
  gap: 80px;

  padding-left: 40px;

  animation: marquee 18s linear infinite;
}

.marquee-content a {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #146b2b;

  font-size: 14px;
  font-weight: 600;

  text-decoration: none;
}

.marquee-content a:hover {
  color: #f5a623;
}

.marquee-content a i {
  font-size: 16px;
}

.marquee-wrapper:hover .marquee-content {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(100%);
  }

  to {
    transform: translateX(-100%);
  }
}

@media (max-width: 767px) {
  .marquee-label {
    padding: 0 14px;
  }

  .marquee-label span {
    display: none;
  }

  .marquee-content {
    gap: 50px;
    animation-duration: 15s;
  }

  .marquee-content a {
    font-size: 12px;
  }
}

/* =====================================================
   ACTIVITIES SECTION
===================================================== */

.activities-section {
  padding: 25px 15px 30px;
  background: #f7f7f7;
}

.activities-heading {
  text-align: center;
  margin-bottom: 22px;
}

.activities-heading h2 {
  margin: 0;
  color: #080808;
  font-size: 32px;
  font-weight: 700;
}

.activity-card {
  height: 100%;
  overflow: hidden;

  background: #eeeeee;

  border: 1px solid #8db597;
  border-radius: 14px;

  display: flex;
  flex-direction: column;

  transition: all 0.3s ease;
}

.activity-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.activity-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.activity-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transition: transform 0.4s ease;
}

.activity-card:hover .activity-image img {
  transform: scale(1.05);
}

.activity-content {
  padding: 9px 7px 7px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

.activity-content h4 {
  color: #111;
  font-size: 17px;
  line-height: 1.1;
  font-weight: 700;

  margin: 0 0 7px;
}

.activity-content p {
  color: #111;

  font-size: 14px;
  line-height: 1.5;

  margin: 0 0 8px;

  flex: 1;
}

.read-more {
  align-self: flex-start;

  display: inline-flex;
  align-items: center;
  gap: 5px;

  padding: 5px 10px;

  background: #f6ddb0;
  color: #815a20;

  border-radius: 20px;

  text-decoration: none;

  font-size: 13px;
  font-weight: 600;

  transition: all 0.3s ease;
}

.read-more i {
  font-size: 13px;
}

.read-more:hover {
  background: #eacb91;
  color: #62430f;
}

.donate-card {
  position: relative;

  height: 100%;
  min-height: 375px;

  overflow: hidden;

  border-radius: 14px;

  display: flex;
  align-items: center;
  justify-content: center;
}

.donate-card > img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
}

.donate-overlay {
  position: absolute;

  inset: 0;

  background: rgba(0, 0, 0, 0.63);
}

.donate-content {
  position: relative;
  z-index: 2;

  text-align: center;

  padding: 30px 25px;

  color: #fff;
}

.donate-content h3 {
  margin-bottom: 10px;

  font-size: 21px;
  font-weight: 700;
}

.donate-content p {
  margin: 0 auto 20px;

  max-width: 250px;

  font-size: 16px;
  line-height: 1.6;
}

.donate-btn {
  display: inline-block;

  padding: 9px 25px;

  background: #148b2b;
  color: #fff;

  border-radius: 25px;

  text-decoration: none;

  font-size: 16px;
  font-weight: 700;

  transition: all 0.3s ease;
}

.donate-btn:hover {
  background: #0d6d20;
  color: #fff;

  transform: translateY(-2px);
}

@media (min-width: 1200px) {
  .activity-image {
    height: 200px;
  }

  .activity-content {
    min-height: 175px;
  }
}

@media (max-width: 991px) {
  .activities-heading h2 {
    font-size: 30px;
  }

  .activity-image {
    height: 210px;
  }

  .donate-card {
    min-height: 390px;
  }
}

@media (max-width: 575px) {
  .activities-section {
    padding: 25px 10px;
  }

  .activities-heading {
    margin-bottom: 18px;
  }

  .activities-heading h2 {
    font-size: 27px;
  }

  .activity-image {
    height: 220px;
  }

  .activity-content {
    padding: 12px;
  }

  .activity-content h4 {
    font-size: 17px;
  }

  .activity-content p {
    font-size: 14px;
  }

  .donate-card {
    min-height: 330px;
  }
}

/* =====================================================
   ABOUT SECTION
===================================================== */

.about-section {
  position: relative;

  padding: 50px 0 55px;

  background: #fff;

  overflow: hidden;
}

.about-images {
  position: relative;

  width: 100%;
  min-height: 390px;
}

.about-image {
  position: absolute;

  overflow: hidden;

  border-radius: 8px;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.about-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.about-image-one {
  width: 300px;
  height: 300px;

  left: 0;
  top: 0;

  z-index: 2;
}

.about-image-two {
  width: 300px;
  height: 300px;

  left: 295px;
  top: 90px;

  z-index: 3;
}

.about-dots {
  position: absolute;

  left: -1px;
  bottom: 55px;

  width: 85px;
  height: 95px;

  background-image: radial-gradient(#777 1px, transparent 1px);

  background-size: 10px 10px;

  opacity: 0.55;

  z-index: 1;
}

.about-content h2 {
  margin: 0 0 12px;

  color: #080808;

  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

.about-content p {
  margin: 0 0 8px;

  color: #111;

  font-size: 17px;
  line-height: 1.85;

  font-weight: 400;
}

.about-content h3 {
  margin: 5px 0 2px;

  color: #111;

  font-size: 20px;
  font-weight: 700;

  font-style: italic;
}

@media (min-width: 1200px) {
  .about-images {
    min-height: 400px;
  }

  .about-image-one {
    width: 280px;
    height: 300px;
  }

  .about-image-two {
    width: 290px;
    height: 300px;

    left: 295px;
    top: 90px;
  }
}

@media (max-width: 1199px) {
  .about-images {
    min-height: 370px;
  }

  .about-image-one {
    width: 240px;
    height: 270px;
  }

  .about-image-two {
    width: 240px;
    height: 270px;

    left: 210px;
    top: 80px;
  }

  .about-content p {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 991px) {
  .about-section {
    padding: 45px 0;
  }

  .about-images {
    min-height: 380px;

    max-width: 600px;

    margin: 0 auto;
  }

  .about-image-one {
    left: 5%;
    top: 0;

    width: 45%;
    height: 280px;
  }

  .about-image-two {
    left: 45%;
    top: 85px;

    width: 45%;
    height: 280px;
  }

  .about-content {
    padding: 10px 15px 0;
  }

  .about-content h2 {
    font-size: 30px;
  }
}
@media (max-width: 575px) {
  .about-section {
    padding: 35px 0 45px;
  }

  .about-images {
    min-height: 330px;
  }

  .about-image-one {
    left: 0;

    width: 52%;
    height: 235px;
  }

  .about-image-two {
    left: 40%;
    top: 70px;

    width: 52%;
    height: 235px;
  }

  .about-dots {
    width: 60px;
    height: 70px;

    bottom: 0;
  }

  .about-content {
    padding: 10px 5px 0;
  }

  .about-content h2 {
    font-size: 28px;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-content h3 {
    font-size: 18px;
    margin-top: 12px;
  }
}

/* =====================================================
   WHAT IS SNEEHA SECTION
===================================================== */

.what-sneha-section {
  position: relative;

  padding: 35px 0 32px;

  background: #f5ecdc;

  overflow: hidden;
}

.sneha-content {
  padding: 0 5px 0 10px;
}

.sneha-content h2 {
  margin: 0 0 18px;

  color: #080808;

  font-size: 30px;
  line-height: 1.2;

  font-weight: 700;
}

.sneha-content p {
  margin: 0 0 5px;

  color: #111;

  font-size: 17px;
  line-height: 1.7;

  font-weight: 400;
}

.sneha-image {
  width: 100%;
  height: 585px;

  overflow: hidden;

  border-radius: 14px;

  background: #ddd;
}

.sneha-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.sneha-image:hover img {
  transform: scale(1.02);
}

@media (max-width: 1199px) {
  .what-sneha-section {
    padding: 40px 0;
  }

  .sneha-content {
    padding-right: 10px;
  }

  .sneha-content h2 {
    font-size: 28px;
  }

  .sneha-content p {
    font-size: 15px;
    line-height: 1.65;
  }

  .sneha-image {
    height: 520px;
  }
}

@media (max-width: 991px) {
  .what-sneha-section {
    padding: 35px 0 40px;
  }

  .sneha-content {
    padding: 0;
  }

  .sneha-content h2 {
    font-size: 29px;
    margin-bottom: 15px;
  }

  .sneha-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
  }

  .sneha-image {
    height: 400px;
    border-radius: 12px;
  }
}

@media (max-width: 575px) {
  .what-sneha-section {
    padding: 30px 0;
  }

  .sneha-content h2 {
    font-size: 27px;
  }

  .sneha-content p {
    font-size: 14px;
    line-height: 1.65;
  }

  .sneha-image {
    height: 300px;
    border-radius: 10px;
  }
}

/* =====================================================
   MISSION SECTION
===================================================== */

.mission-section {
  padding: 35px 0 35px;
  background: #f8f8f8;
}

.mission-card {
  position: relative;

  min-height: 170px;

  display: flex;
  align-items: flex-start;

  padding: 23px 28px 23px 17px;

  border-radius: 16px;

  overflow: hidden;

  transition: all 0.3s ease;
}

.mission-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.mission-icon {
  flex: 0 0 68px;

  width: 68px;
  height: 68px;

  margin-right: 12px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #fff;

  font-size: 29px;
}

.mission-icon i {
  line-height: 1;
}

.mission-content {
  position: relative;

  flex: 1;

  padding-right: 20px;
}

.mission-content h3 {
  margin: 5px 0 3px;

  color: #080808;

  font-size: 21px;
  line-height: 1.2;

  font-weight: 700;
}

.mission-content p {
  margin: 0;

  color: #111;

  font-size: 15px;
  line-height: 1.55;

  font-weight: 400;
}

.mission-number {
  position: absolute;

  top: -15px;
  right: -2px;

  color: rgba(255, 255, 255, 0.23);

  font-size: 29px;

  font-weight: 700;

  line-height: 1;
}

.mission-card-green {
  background: #b5cbb9;
}

.mission-card-green .mission-icon {
  background: #096521;
}

.mission-card-blue {
  background: #d0d2d5;
}

.mission-card-blue .mission-icon {
  background: #164a87;
}

.mission-card-yellow {
  background: #f9dfad;
}

.mission-card-yellow .mission-icon {
  background: #ffa817;
}

.mission-card-purple {
  background: #ead4e8;
}

.mission-card-purple .mission-icon {
  background: #6d0b62;
}

@media (min-width: 1200px) {
  .mission-card {
    min-height: 170px;
  }
}

@media (max-width: 991px) {
  .mission-section {
    padding-top: 30px;
  }

  .mission-card {
    min-height: 165px;
  }
}

@media (max-width: 575px) {
  .mission-section {
    padding: 25px 10px;
  }

  .mission-card {
    min-height: auto;

    padding: 20px 16px;
  }

  .mission-icon {
    flex: 0 0 58px;

    width: 58px;
    height: 58px;

    font-size: 24px;

    margin-right: 10px;
  }

  .mission-content {
    padding-right: 15px;
  }

  .mission-content h3 {
    font-size: 18px;
  }

  .mission-content p {
    font-size: 14px;
    line-height: 1.5;
  }

  .mission-number {
    font-size: 23px;
    top: -10px;
  }
}

/* =====================================================
   EARTH SECTION
===================================================== */

.earth-section {
  position: relative;

  padding: 15px 0 10px;

  background: #fff;

  overflow: hidden;
}

.earth-image {
  width: 100%;
  height: 440px;

  overflow: hidden;

  border-radius: 13px;
}

.earth-image img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.5s ease;
}

.earth-image:hover img {
  transform: scale(1.02);
}

.earth-content {
  padding: 0 20px 0 0;
}

.earth-content h2 {
  margin: 0 0 8px;

  color: #080808;

  font-size: 25px;
  line-height: 1.25;

  font-weight: 700;
}

.earth-content p {
  margin: 0 0 5px;

  color: #111;

  font-size: 18px;
  line-height: 1.65;

  font-weight: 400;
}

@media (min-width: 1200px) {
  .earth-section {
    padding: 15px 0 10px;
  }

  .earth-image {
    height: 440px;
  }

  .earth-content {
    padding-left: 5px;
    padding-right: 30px;
  }

  .earth-content h2 {
    font-size: 25px;
  }

  .earth-content p {
    font-size: 18px;
    line-height: 1.65;
  }
}

@media (max-width: 1199px) {
  .earth-image {
    height: 400px;
  }

  .earth-content {
    padding-right: 10px;
  }

  .earth-content h2 {
    font-size: 23px;
  }

  .earth-content p {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 991px) {
  .earth-section {
    padding: 30px 0 35px;
  }

  .earth-image {
    height: 350px;
  }

  .earth-content {
    padding: 0;
  }

  .earth-content h2 {
    font-size: 25px;
    margin-top: 5px;
    margin-bottom: 10px;
  }

  .earth-content p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 8px;
  }
}

@media (max-width: 575px) {
  .earth-section {
    padding: 25px 0 30px;
  }

  .earth-image {
    height: 280px;
    border-radius: 10px;
  }

  .earth-content h2 {
    font-size: 22px;
  }

  .earth-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =====================================================
   BANK SECTION
===================================================== */

.bank-section {
  position: relative;

  padding: 35px 0;

  background-image: url("img/whatabout.png");
  background-size: cover;
  background-position: center;

  overflow: hidden;
}

.bank-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.79);
  z-index: 0;
}

.bank-card {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #f7f7f7;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.bank-header {
  min-height: 75px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 8px 22px;
  background: #ffac22;
}

/* HEADER ICON */

.bank-header-icon {
  flex: 0 0 62px;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-size: 32px;
}

/* HEADER TEXT */

.bank-header h2 {
  margin: 0 0 2px;
  color: #050505;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.bank-header p {
  margin: 0;
  color: #111;
  font-size: 16px;
  line-height: 1.4;
}

.bank-details {
  padding: 15px 30px 10px;
  background: #f5f5f5;
}

/* ROW */

.bank-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 10px 0;
  border-bottom: 1px dashed #ddd;
}

.bank-row:last-child {
  border-bottom: none;
}

.bank-item {
  display: grid;
  grid-template-columns: 48px auto 1px 1fr;
  align-items: center;
  column-gap: 12px;
  min-height: 45px;
}

.detail-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: #f9dfb2;
  color: #111;
  font-size: 21px;
}

.detail-label {
  color: #111;
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.detail-divider {
  width: 1px;
  height: 25px;
  background: #333;
}

.detail-value {
  color: #352b1e;
  font-size: 16px;
  font-weight: 700;
}

.detail-value span {
  font-weight: 600;
}

.bank-footer {
  min-height: 55px;
  /* display: flex; */
  align-items: center;
  gap: 14px;
  padding: 10px 30px;
  background: #f9dfb2;
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

.bank-footer i {
  font-size: 22px;

  color: #1b0303;
}

@media (min-width: 1200px) {
  .bank-section {
    padding: 35px 15px;
  }

  .bank-header {
    padding-left: 22px;
  }
}

@media (max-width: 991px) {
  .bank-section {
    padding: 30px 0;
  }

  .bank-details {
    padding: 12px 20px;
  }

  .bank-row {
    gap: 20px;
  }

  .bank-item {
    grid-template-columns: 42px auto 1px 1fr;
    column-gap: 8px;
  }

  .detail-label {
    font-size: 15px;
  }

  .detail-value {
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .bank-section {
    padding: 20px 10px;
  }

  .bank-header {
    padding: 12px 15px;
    gap: 12px;
  }

  .bank-header-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    font-size: 27px;
  }

  .bank-header h2 {
    font-size: 20px;
  }

  .bank-header p {
    font-size: 13px;
  }

  /* ONE COLUMN */

  .bank-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px 0;
  }

  .bank-item {
    grid-template-columns: 42px 110px 1px 1fr;
    column-gap: 8px;
  }

  .detail-label {
    font-size: 14px;
    white-space: normal;
  }

  .detail-value {
    font-size: 14px;
    word-break: break-word;
  }

  .bank-footer {
    padding: 12px 15px;

    font-size: 14px;
  }

  .bank-footer i {
    font-size: 25px;
  }
}

@media (max-width: 400px) {
  .bank-item {
    grid-template-columns: 38px 95px 1px 1fr;
    column-gap: 6px;
  }

  .detail-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
  }
  .detail-label,
  .detail-value {
    font-size: 13px;
  }
}

/* =====================================================
   TEAM SECTION
===================================================== */

.team-section {
  padding: 25px 0 40px;
  background: #d4e2d4;
  overflow: hidden;
}

.team-title {
  margin: 0 0 15px;
  text-align: center;
  color: #050505;
  font-size: 30px;
  font-weight: 700;
}

.team-card {
  min-height: 250px;
  display: flex;
  margin-bottom: 20px;
  align-items: center;
  padding: 14px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.team-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.team-image {
  flex: 0 0 188px;
  width: 188px;
  height: 188px;
  overflow: hidden;
  border-radius: 10px;
  background: #eee;
}

.team-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.team-content {
  padding: 5px 12px 5px 20px;
}

.team-content h4 {
  margin: 0 0 5px;
  color: #111;
  font-size: 17px;
  font-weight: 700;
}

.team-role {
  display: block;
  margin-bottom: 14px;
  color: #146b2b;
  font-size: 14px;
}

.team-content p {
  margin: 0 0 15px;
  color: #85858d;
  font-size: 14px;
  line-height: 1.55;
}

.team-social {
  display: flex;
  gap: 14px;
}

.team-social a {
  color: #adb0b6;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.2s ease;
}

.team-social a:hover {
  color: #146b2b;
}

.team-control {
  width: 38px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#teamCarousel:hover .team-control {
  opacity: 1;
}

.team-control .carousel-control-prev-icon,
.team-control .carousel-control-next-icon {
  width: 30px;
  height: 30px;
  background-color: #05270e;
  border-radius: 50%;
  background-size: 55%;
}

.team-indicators {
  position: static;
  margin-top: 20px;
  margin-bottom: -25px;
}

.team-indicators button {
  width: 25px;
  height: 5px;
  border: 0;
  border-radius: 10px;
  background-color: #146b2b;
}

@media (max-width: 991px) {
  .team-card {
    min-height: 190px;
  }

  .team-image {
    flex: 0 0 150px;
    width: 150px;
    height: 150px;
  }

  .team-content {
    padding-left: 15px;
  }
}
@media (max-width: 575px) {
  .team-section {
    padding: 25px 0 35px;
  }
  .team-title {
    font-size: 27px;
  }
  .team-card {
    min-height: 170px;
    padding: 12px;
  }
  .team-image {
    flex: 0 0 120px;
    width: 120px;
    height: 145px;
  }
  .team-content {
    padding: 5px 5px 5px 12px;
  }
  .team-content h4 {
    font-size: 16px;
  }
  .team-content p {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .team-role {
    margin-bottom: 8px;
  }
}
/* =====================================================
   FOOTER
===================================================== */
.site-footer {
  position: relative;
  background: #202020;
  color: #fff;
}
.footer-about {
  padding-right: 40px;
}

.footer-about p {
  max-width: 500px;
  margin: 12px 0 20px;
  color: #f1f1f1;
  font-size: 15px;
  line-height: 2;
}

.footer-social {
  display: flex;
  gap: 8px;
}

.footer-social a {
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #2c2c2c;
  color: #cfcfcf;
  text-decoration: none;
  font-size: 19px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-3px);
}

.footer-links h3,
.footer-contact h3 {
  margin: 5px 0 15px;
  color: #fff;
  font-size: 21px;
  font-weight: 700;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-links li {
  margin-bottom: 13px;
}

.footer-links a {
  color: #eee;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.25s ease;
}

.footer-links a:hover {
  color: #f5a623;
  padding-left: 5px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  color: #eee;
  font-size: 15px;
  line-height: 1.55;
}

.contact-item i {
  flex: 0 0 20px;
  margin-top: 3px;
  color: #fff;
  font-size: 18px;
}
.contact-item a {
  color: #eee;
  text-decoration: none;
  font-weight: 600;
  margin-top: 5px;
}
.contact-item a:hover {
  color: #f5a623;
}

.footer-bottom {
  position: relative;
  min-height: 61px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 2px solid #777;
  padding: 10px 70px 10px 20px;
}

.footer-bottom p {
  margin: 0;
  color: #eee;
  font-size: 14px;
  text-align: center;
}

.back-to-top {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
color: #111;
  font-size: 22px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: #f5a623;
  color: #fff;
  transform: translateY(-55%);
}

@media (max-width: 991px) {
  .footer-main {
    padding: 35px 10px 25px;
  }
  .footer-about {
    padding-right: 10px;
  }
  .footer-about p {
    line-height: 1.8;
  }
}
@media (max-width: 767px) {
  .footer-main {
    padding: 30px 5px 20px;
  }
  .footer-about p {
    font-size: 14px;
    line-height: 1.7;
  }
  .footer-links h3,
  .footer-contact h3 {
    font-size: 20px;
  }
  .footer-bottom {
    min-height: 75px;
    padding: 10px 65px 10px 10px;
  }
  .footer-bottom p {
    font-size: 12px;
    line-height: 1.5;
  }
  .back-to-top {
    width: 42px;
    height: 42px;
    right: 10px;
    font-size: 19px;
  }
}


/* =====================================================
   CONTACT SECTION
===================================================== */

.contact-section {
    position: relative;

    padding: 25px 0;

    background: linear-gradient(
        135deg,
        #fff8dc 0%,
        #f3f0e4 45%,
        #e2f0df 100%
    );

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.contact-heading {
    max-width: 760px;

    margin: 0 auto 35px;
}

.contact-subtitle {
    display: inline-block;

    margin-bottom: 7px;

    color: #26733b;

    font-size: 12px;

    font-weight:  700;

}

.contact-heading h2 {
    margin: 0 0 10px;

    color: #173d24;

    font-size: 36px;

    font-weight:  700;
}

.contact-heading p {
    margin: 0;

    color: #6c716d;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   MAIN CARD
===================================================== */

.contact-main-card {
    position: relative;

    padding: 35px;

    background: rgba(255, 255, 255, .88);

    border: 1px solid rgba(38, 115, 59, .12);

    border-radius: 22px;

    box-shadow:
        0 15px 45px rgba(38, 70, 45, .10);

    overflow: hidden;
}


/* =====================================================
   ORGANIZATION
===================================================== */

.contact-organization {
    display: flex;

    align-items: center;

    gap: 20px;
}

.organization-icon {
    flex: 0 0 68px;

    width: 68px;
    height: 68px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 17px;

    background: #185c32;

    color: #fff;

    font-size: 27px;

    box-shadow:
        0 8px 18px rgba(24, 92, 50, .18);
}

.contact-organization span {
    display: block;

    margin-bottom: 3px;

    color: #d39417;

    font-size: 11px;

    font-weight:  700;
}

.contact-organization h3 {
    margin: 0 0 5px;

    color: #173d24;

    font-size: 23px;

    font-weight:  700;
}

.contact-organization p {
    margin: 0;

    color: #747873;

    font-size: 15px;

    line-height: 1.6;
}


/* =====================================================
   DIVIDER
===================================================== */

.contact-divider {
    height: 1px;

    margin: 28px 0;

    background: #e2e5df;
}


/* =====================================================
   CONTACT BOX
===================================================== */

.contact-box {
    height: 100%;
    min-height: 125px;

    display: flex;

    align-items: center;

    gap: 13px;

    padding: 16px;

    background: #fafcf8;

    border: 1px solid #e5eae3;

    border-radius: 14px;

    text-decoration: none;

    transition:
        transform .3s ease,
        box-shadow .3s ease,
        border-color .3s ease,
        background .3s ease;
}

.contact-box:hover {
    background: #fff;

    border-color: #cbdccf;

    transform: translateY(-5px);

    box-shadow:
        0 10px 25px rgba(38, 80, 50, .10);
}


/* =====================================================
   CONTACT ICON
===================================================== */

.contact-box-icon {
    flex: 0 0 48px;

    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;

    background: #f5b544;

    color: #1d281f;

    font-size: 18px;

    transition: all .3s ease;
}

.contact-box:hover .contact-box-icon {
    background: #185c32;

    color: #fff;

    transform: rotate(-5deg);
}


/* =====================================================
   CONTENT
===================================================== */

.contact-box-content {
    min-width: 0;
}

.contact-box-content span {
    display: block;

    margin-bottom: 4px;

    color: #26733b;

    font-size: 16px;

    font-weight:  700;

}

.contact-box-content h5 {
    margin: 0 0 3px;

    color: #202521;

    font-size: 15px;

    font-weight: 600;

    line-height: 1.4;

    overflow-wrap: anywhere;
}

.contact-box-content small {
    color: #888d88;

    font-size: 15px;
}


/* =====================================================
   ADDRESS AREA
===================================================== */

.address-area {
    display: flex;

    align-items: center;

    gap: 17px;

    margin-top: 18px;

    padding: 20px;

    background: linear-gradient(
        90deg,
        #edf6e9,
        #fff8df
    );

    border: 1px solid #dce8d8;

    border-radius: 14px;
}


/* ADDRESS ICON */

.address-icon {
    flex: 0 0 52px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 13px;

    background: #185c32;

    color: #fff;

    font-size: 20px;
}


/* ADDRESS CONTENT */

.address-content {
    flex: 1;
}

.address-content span {
    display: block;

    margin-bottom: 4px;

    color: #26733b;

    font-size: 16px;

    font-weight:  700;

}

.address-content p {
    margin: 0;

    color: #4e554f;

    font-size: 16px;

    line-height: 1.6;
}


/* =====================================================
   DIRECTION BUTTON
===================================================== */

.direction-btn {
    flex-shrink: 0;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 12px 18px;

    border-radius: 9px;

    background: #185c32;

    color: #fff;

    font-size: 12px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.direction-btn:hover {
    background: #f5ad2f;

    color: #111;

    transform: translateX(3px);
}


/* =====================================================
   LARGE SCREEN
===================================================== */

@media (min-width: 1200px) {

    .contact-main-card {
        padding: 40px;
    }

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-main-card {
        padding: 28px;
    }

    .contact-box {
        min-height: 110px;
    }

    .address-area {
        align-items: flex-start;

        flex-wrap: wrap;
    }

    .address-content {
        flex: 1 1 calc(100% - 75px);
    }

    .direction-btn {
        margin-left: 69px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .contact-section {
        padding: 45px 10px;
    }

    .contact-heading h2 {
        font-size: 29px;
    }

    .contact-heading p {
        font-size: 13px;
    }

    .contact-main-card {
        padding: 22px 18px;

        border-radius: 16px;
    }

    .contact-organization {
        align-items: flex-start;

        gap: 14px;
    }

    .organization-icon {
        flex: 0 0 52px;

        width: 52px;
        height: 52px;

        border-radius: 13px;

        font-size: 21px;
    }

    .contact-organization h3 {
        font-size: 18px;
    }

    .contact-organization p {
        font-size: 12px;
    }

    .contact-divider {
        margin: 22px 0;
    }

    .contact-box {
        min-height: 100px;

        padding: 14px;
    }

    .contact-box-icon {
        flex: 0 0 42px;

        width: 42px;
        height: 42px;
    }

    .contact-box-content h5 {
        font-size: 12px;
    }

    .address-area {
        padding: 15px;

        gap: 12px;
    }

    .address-icon {
        flex: 0 0 43px;

        width: 43px;
        height: 43px;
    }

    .address-content {
        flex: 1 1 calc(100% - 58px);
    }

    .address-content p {
        font-size: 12px;
    }

    .direction-btn {
        width: 100%;

        justify-content: center;

        margin-left: 0;
    }

}
/* =====================================================
   EVENTS SECTION
===================================================== */

.events-section {
    position: relative;

    padding: 25px 0;

    background: linear-gradient(
        135deg,
        #fff8dc 0%,
        #f3f0e4 48%,
        #e2f0df 100%
    );

    overflow: hidden;
}


/* =====================================================
   HEADING
===================================================== */

.events-heading {
    max-width: 760px;

    margin: 0 auto 38px;
}

.events-subtitle {
    display: inline-block;

    margin-bottom: 7px;

    color: #26733b;

    font-size: 12px;

    font-weight: 700;
}

.events-heading h2 {
    margin: 0 0 10px;

    color: #173d24;

    font-size: 36px;

    font-weight: 700;
}

.events-heading p {
    margin: 0;

    color: #6d726e;

    font-size: 15px;

    line-height: 1.7;
}


/* =====================================================
   EVENT CARD
===================================================== */

.event-card {
    height: 100%;

    background: #fff;

    border: 1px solid rgba(38,115,59,.10);

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(40,70,45,.08);

    transition: all .35s ease;
}

.event-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 35px rgba(40,70,45,.14);
}


/* =====================================================
   IMAGE
===================================================== */

.event-image {
    position: relative;

    height: 220px;

    overflow: hidden;

    background: #e8eee5;
}

.event-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .5s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.06);
}


/* =====================================================
   DATE
===================================================== */

.event-date {
    position: absolute;

    top: 15px;
    left: 15px;

    width: 58px;
    height: 62px;

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    background: #fff;

    border-radius: 10px;

    box-shadow: 0 5px 15px rgba(0,0,0,.12);
}

.event-date strong {
    color: #185c32;

    font-size: 21px;

    line-height: 1;

    font-weight: 700;
}

.event-date span {
    margin-top: 4px;

    color: #d39417;

    font-size: 10px;

    font-weight: 700;

    
}


/* =====================================================
   BADGE
===================================================== */

.event-badge {
    position: absolute;

    right: 15px;
    bottom: 15px;

    display: inline-flex;

    align-items: center;

    gap: 6px;

    padding: 7px 11px;

    background: #185c32;

    color: #fff;

    border-radius: 20px;

    font-size: 10px;

    font-weight: 700;
}


/* =====================================================
   CONTENT
===================================================== */

.event-content {
    padding: 22px;
}


/* =====================================================
   META
===================================================== */

.event-meta {
    display: flex;

    align-items: center;

    gap: 18px;

    margin-bottom: 10px;

    color: #777;

    font-size: 11px;
}

.event-meta span {
    display: inline-flex;

    align-items: center;

    gap: 5px;
}

.event-meta i {
    color: #26733b;
}


/* =====================================================
   TITLE
===================================================== */

.event-content h3 {
    min-height: 52px;

    margin: 0 0 10px;

    color: #202820;

    font-size: 18px;

    line-height: 1.4;

    font-weight: 700;
}


/* =====================================================
   DESCRIPTION
===================================================== */

.event-content p {
    min-height: 66px;

    margin: 0 0 17px;

    color: #777;

    font-size: 13px;

    line-height: 1.65;
}


/* =====================================================
   BUTTON
===================================================== */

.event-btn {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #185c32;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.event-btn i {
    transition: transform .3s ease;
}

.event-btn:hover {
    color: #d39417;
}

.event-btn:hover i {
    transform: translateX(5px);
}


/* =====================================================
   ALL EVENTS BUTTON
===================================================== */

.all-events-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 22px;

    border-radius: 9px;

    background: #185c32;

    color: #fff;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    transition: all .3s ease;
}

.all-events-btn:hover {
    background: #f5ad2f;

    color: #111;

    transform: translateY(-2px);
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .events-section {
        padding: 50px 0;
    }

    .events-heading h2 {
        font-size: 32px;
    }

    .event-image {
        height: 200px;
    }

}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .events-section {
        padding: 45px 10px;
    }

    .events-heading {
        margin-bottom: 28px;
    }

    .events-heading h2 {
        font-size: 28px;
    }

    .events-heading p {
        font-size: 13px;
    }

    .event-image {
        height: 210px;
    }

    .event-content {
        padding: 18px;
    }

    .event-content h3 {
        min-height: auto;

        font-size: 17px;
    }

    .event-content p {
        min-height: auto;
    }

}

        /* =====================================================
           PAGE
        ===================================================== */

        body {
            margin: 0;

            /* font-family: Arial, sans-serif; */

            background: #f3f0e4;

            color: #222;
        }


        /* =====================================================
           HERO
        ===================================================== */

        .event-hero {

            position: relative;

            min-height: 430px;

            display: flex;

            align-items: center;

            background:
                linear-gradient(
                    90deg,
                    rgba(18, 76, 42, .94),
                    rgba(18, 76, 42, .70),
                    rgba(18, 76, 42, .25)
                ),
                url("img/ABOUT-1\ \(1\).png");

            background-size: cover;

            background-position: center;

            overflow: hidden;
        }


        .event-hero-content {

            max-width: 850px;

            color: #fff;
        }


        .event-label {

            display: inline-flex;

            align-items: center;

            gap: 7px;

            padding: 7px 13px;

            margin-bottom: 15px;

            background: #f5b544;

            color: #173d24;

            border-radius: 20px;

            font-size: 11px;

            font-weight: 700;

        }


        .event-hero h1 {

            margin: 0 0 15px;

            font-size: 45px;

            line-height: 1.2;

            font-weight: 700;
        }


        .event-hero p {

            max-width: 700px;

            margin: 0;

            color: rgba(255,255,255,.88);

            font-size: 16px;

            line-height: 1.7;
        }


        /* =====================================================
           EVENT INFO
        ===================================================== */

        .event-info-wrapper {

            margin-top: -55px;

            position: relative;

            z-index: 5;
        }


        .event-info-card {

            padding: 22px;

            background: #fff;

            border-radius: 16px;

            box-shadow:
                0 12px 35px rgba(0,0,0,.12);
        }


        .event-info-item {

            display: flex;

            align-items: center;

            gap: 12px;

            padding: 8px 15px;

            border-right: 1px solid #e5e5e5;
        }


        .event-info-icon {

            width: 45px;

            height: 45px;

            flex-shrink: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            background: #e8f2e6;

            color: #185c32;

            border-radius: 10px;

            font-size: 18px;
        }


        .event-info-item span {

            display: block;

            margin-bottom: 3px;

            color: #888;

            font-size: 10px;

            font-weight: 700;

            text-transform: uppercase;

           
        }


        .event-info-item strong {

            color: #222;

            font-size: 14px;
        }


        /* =====================================================
           MAIN CONTENT
        ===================================================== */

        .event-content-section {

            padding: 75px 0;

            background:
                linear-gradient(
                    135deg,
                    #fff8dc,
                    #f3f0e4 50%,
                    #e4f0df
                );
        }


        /* =====================================================
           CONTENT CARD
        ===================================================== */

        .event-content-card {

            padding: 35px;

            background: #fff;

            border-radius: 18px;

            box-shadow:
                0 8px 30px rgba(0,0,0,.07);
        }


        .section-label {

            display: block;

            margin-bottom: 7px;

            color: #26733b;

            font-size: 11px;

            font-weight: 700;

           
        }


        .event-content-card h2 {

            margin: 0 0 15px;

            color: #173d24;

            font-size: 29px;

            font-weight: 700;
        }


        .event-content-card p {

            color: #666;

            font-size: 16px;

            line-height: 1.8;
        }


        /* =====================================================
           HIGHLIGHT BOX
        ===================================================== */

        .event-highlight {

            margin-top: 25px;

            padding: 22px;

            background:
                linear-gradient(
                    135deg,
                    #edf6e9,
                    #fff8df
                );

            border-left: 4px solid #185c32;

            border-radius: 10px;
        }


        .event-highlight h4 {

            margin: 0 0 8px;

            color: #185c32;

            font-size: 17px;

            font-weight: 700;
        }


        .event-highlight p {

            margin: 0;

            font-size: 15px;
        }


        /* =====================================================
           OBJECTIVES
        ===================================================== */

        .objective-card {

            height: 100%;

            padding: 22px;

            background: #fff;

            border: 1px solid #e5e9e3;

            border-radius: 14px;

            transition: all .3s ease;
        }


        .objective-card:hover {

            transform: translateY(-5px);

            box-shadow:
                0 10px 25px rgba(38,80,50,.10);
        }


        .objective-icon {

            width: 48px;

            height: 48px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 14px;

            background: #f5b544;

            color: #173d24;

            border-radius: 11px;

            font-size: 19px;
        }


        .objective-card h4 {

            margin-bottom: 7px;

            color: #185c32;

            font-size: 16px;

            font-weight: 700;
        }


        .objective-card p {

            margin: 0;

            color: #777;

            font-size: 15px;

            line-height: 1.65;
        }


        /* =====================================================
           ACTIVITIES
        ===================================================== */

        .activities-section {

            margin-top: 30px;
        }


        .activity-list {

            margin: 0;

            padding: 0;

            list-style: none;
        }


        .activity-list li {

            display: flex;

            align-items: flex-start;

            gap: 12px;

            margin-bottom: 15px;

            color: #555;

            font-size: 16px;

            line-height: 1.6;
        }


        .activity-list i {

            color: #26733b;

            font-size: 18px;

            margin-top: 1px;
        }


        /* =====================================================
           SIDEBAR
        ===================================================== */

        .event-side-card {

            position: sticky;

            top: 25px;

            padding: 25px;

            background: #185c32;

            color: #fff;

            border-radius: 18px;

            box-shadow:
                0 10px 30px rgba(24,92,50,.18);
        }


        .event-side-card h3 {

            margin-bottom: 18px;

            font-size: 21px;

            font-weight: 700;
        }


        .side-detail {

            display: flex;

            align-items: flex-start;

            gap: 12px;

            padding: 13px 0;

            border-bottom: 1px solid rgba(255,255,255,.15);
        }


        .side-detail:last-child {

            border-bottom: none;
        }


        .side-detail i {

            width: 35px;

            height: 35px;

            display: flex;

            align-items: center;

            justify-content: center;

            flex-shrink: 0;

            background: rgba(255,255,255,.12);

            border-radius: 8px;

            color: #f5c45c;
        }


        .side-detail span {

            display: block;

            margin-bottom: 3px;

            color: #bcd9c3;

            font-size: 13px;

            font-weight: 700;

            text-transform: uppercase;
        }


        .side-detail strong {

            font-size: 15px;

            line-height: 1.5;
        }


        /* =====================================================
           CTA
        ===================================================== */

        .event-cta {

            margin-top: 20px;

            padding: 18px;

            background: rgba(255,255,255,.08);

            border-radius: 10px;
        }


        .event-cta p {

            margin: 0 0 12px;

            color: rgba(255,255,255,.85);

            font-size: 15px;

            line-height: 1.6;
        }


        .event-cta a {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 10px 16px;

            background: #f5b544;

            color: #111;

            border-radius: 8px;

            font-size: 12px;

            font-weight: 700;

            text-decoration: none;
        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media(max-width: 991px) {

            .event-hero {

                min-height: 390px;
            }

            .event-hero h1 {

                font-size: 36px;
            }

            .event-info-item {

                border-right: none;

                border-bottom: 1px solid #eee;

                padding: 12px;
            }

            .event-info-item:last-child {

                border-bottom: none;
            }

            .event-info-wrapper {

                margin-top: -35px;
            }

            .event-side-card {

                position: static;
            }

        }


        @media(max-width: 767px) {

            .event-hero {

                min-height: 450px;

                background-position: center;
            }

            .event-hero h1 {

                font-size: 29px;
            }

            .event-hero p {

                font-size: 13px;
            }

            .event-content-section {

                padding: 50px 10px;
            }

            .event-content-card {

                padding: 23px 18px;
            }

            .event-content-card h2 {

                font-size: 24px;
            }

            .event-info-wrapper {

                margin-top: -25px;
            }

        }


        /* about-org */

       


        /* =====================================================
           HERO SECTION
        ===================================================== */

        .about-hero {

            position: relative;

            min-height: 400px;

            display: flex;

            align-items: center;

            background:
                linear-gradient(
                    90deg,
                    rgba(20, 79, 45, .96),
                    rgba(20, 79, 45, .78),
                    rgba(20, 79, 45, .30)
                ),
                url("img/aboutimg.jpg");

            background-size: cover;

            background-position: center;

        }


        .about-hero-content {

            max-width: 850px;

            color: #fff;

        }


        .about-badge {

            display: inline-flex;

            align-items: center;

            gap: 7px;

            padding: 7px 14px;

            margin-bottom: 15px;

            background: #f4bd4e;

            color: #173d24;

            border-radius: 30px;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 1.5px;

        }


        .about-hero h1 {

            margin: 0 0 15px;

            font-size: 45px;

            font-weight: 700;

            line-height: 1.2;

        }


        .about-hero p {

            max-width: 700px;

            margin: 0;

            color: rgba(255,255,255,.9);

            font-size: 15px;

            line-height: 1.8;

        }


        /* =====================================================
           MAIN SECTION
        ===================================================== */

        .about-main {

            padding: 75px 0;

            background:
                linear-gradient(
                    135deg,
                    #fff9df,
                    #f3f0e4 50%,
                    #e5f1e0
                );

        }


        /* =====================================================
           INTRO CARD
        ===================================================== */

        .intro-card {

            padding: 35px;

            background: #fff;

            border-radius: 18px;

            box-shadow:
                0 10px 30px rgba(0,0,0,.07);

            border: 1px solid #e8e8e8;

        }


        .section-tag {

            display: inline-block;

            margin-bottom: 8px;

            color: #26713b;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 2px;

        }


        .section-title {

            margin-bottom: 15px;

            color: #173d24;

            font-size: 30px;

            font-weight: 700;

        }


        .section-text {

            margin-bottom:5px;

            color: #666;

            font-size: 17px;

            line-height: 1.55;

        }


        /* =====================================================
           JOURNEY SECTION
        ===================================================== */

        .journey-section {

            margin-top: 25px;

        }


        .journey-card {

            height: 100%;

            padding: 27px;

            background: #fff;

            border-radius: 16px;

            border: 1px solid #e2e8df;

            transition: all .3s ease;

        }


        .journey-card:hover {

            transform: translateY(-5px);

            box-shadow:
                0 12px 28px rgba(30,80,45,.10);

        }


        .journey-icon {

            width: 52px;

            height: 52px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 17px;

            background: #e8f2e5;

            color: #185c32;

            border-radius: 12px;

            font-size: 21px;

        }


        .journey-card h3 {

            margin-bottom: 9px;

            color: #185c32;

            font-size: 19px;

            font-weight: 700;

        }


        .journey-card p {

            margin: 0;

            color: #777;

            font-size: 16px;

            line-height: 1.75;

        }


        /* =====================================================
           DIFFERENT SECTION
        ===================================================== */

        .different-section {

            margin-top: 25px;

            padding: 35px;

            background: #185c32;

            border-radius: 18px;

            color: #fff;

        }


        .different-section .section-tag {

            color: #f4bd4e;

        }


        .different-section .section-title {

            color: #fff;

        }


        .different-item {

            display: flex;

            align-items: flex-start;

            gap: 13px;

            height: 100%;

            padding: 18px;

            background: rgba(255,255,255,.08);

            border: 1px solid rgba(255,255,255,.10);

            border-radius: 12px;

        }


        .different-icon {

            width: 40px;

            height: 40px;

            flex-shrink: 0;

            display: flex;

            align-items: center;

            justify-content: center;

            background: #f4bd4e;

            color: #173d24;

            border-radius: 9px;

        }


        .different-item h4 {

            margin-bottom: 5px;

            font-size: 15px;

            font-weight: 700;

        }


        .different-item p {

            margin: 0;

            color: rgba(255,255,255,.75);

            font-size: 16px;

            line-height: 1.6;

        }


        /* =====================================================
           AREAS OF ENGAGEMENT
        ===================================================== */

        .engagement-section {

            margin-top: 25px;

            padding: 35px;

            background: #fff;

            border-radius: 18px;

            box-shadow:
                0 8px 25px rgba(0,0,0,.06);

        }


        .engagement-list {

            margin: 0;

            padding: 0;

            list-style: none;

        }


        .engagement-list li {

            display: flex;

            align-items: flex-start;

            gap: 12px;

            padding: 12px 0;

            border-bottom: 1px solid #edf0eb;

            color: #555;

            font-size: 16px;

            line-height: 1.6;

        }


        .engagement-list li:last-child {

            border-bottom: none;

        }


        .engagement-list i {

            color: #26733b;

            font-size: 17px;

            margin-top: 1px;

        }


        /* =====================================================
           COMMUNITY SECTION
        ===================================================== */

        .community-section {

            margin-top: 25px;

        }


        .community-box {

            padding: 32px;

            background:
                linear-gradient(
                    135deg,
                    #edf6e8,
                    #fff8dd
                );

            border-radius: 17px;

            border-left: 5px solid #185c32;

        }


        .community-box h3 {

            margin-bottom: 10px;

            color: #185c32;

            font-size: 23px;

            font-weight: 700;

        }


        .community-box p {

            margin: 0;

            color: #626862;

            font-size: 16px;

            line-height: 1.8;

        }


        /* =====================================================
           PEOPLE & PARTNERS
        ===================================================== */

        .people-card {

            height: 100%;

            padding: 28px;

            background: #fff;

            border-radius: 16px;

            border: 1px solid #e4e9e1;

            transition: .3s ease;

        }


        .people-card:hover {

            transform: translateY(-4px);

            box-shadow:
                0 10px 25px rgba(0,0,0,.07);

        }


        .people-icon {

            width: 50px;

            height: 50px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 15px;

            background: #f7e9bb;

            color: #185c32;

            border-radius: 11px;

            font-size: 21px;

        }


        .people-card h3 {

            color: #185c32;

            font-size: 18px;

            font-weight: 700;

            margin-bottom: 8px;

        }


        .people-card p {

            margin: 0;

            color: #777;

            font-size: 16px;

            line-height: 1.75;

        }


        /* =====================================================
           LOOKING AHEAD
        ===================================================== */

        .future-section {

            margin-top: 25px;

            padding: 40px;

            background: #fff;

            border-radius: 18px;

            box-shadow:
                0 8px 25px rgba(0,0,0,.06);

        }


        .future-icon {

            width: 58px;

            height: 58px;

            display: flex;

            align-items: center;

            justify-content: center;

          margin-bottom: 20px;
            background: #185c32;

            color: #f4bd4e;

            border-radius: 50%;

            font-size: 24px;

        }


        .future-section h2 {

            margin-bottom: 12px;

            color: #173d24;

            font-size: 29px;

            font-weight: 700;

        }


        .future-section p {

            /* max-width: 700px; */

            margin: 0 auto;

            color: #707570;

            font-size: 16px;

            line-height: 1.8;

        }


        /* =====================================================
           BOTTOM QUOTE
        ===================================================== */

        .about-quote {

            margin-top: 25px;

            padding: 28px;

            text-align: center;

            background: #f4bd4e;

            color: #173d24;

            border-radius: 15px;

        }


        .about-quote i {

            font-size: 22px;

        }


        .about-quote h3 {

            margin: 8px 0 0;

            font-size: 20px;

            font-weight: 700;

        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 991px) {

            .about-hero {

                min-height: 370px;

            }


            .about-hero h1 {

                font-size: 38px;

            }


            .intro-card,
            .different-section,
            .engagement-section {

                padding: 28px;

            }

        }


        @media (max-width: 767px) {

            .about-hero {

                min-height: 430px;

                padding: 50px 0;

            }


            .about-hero h1 {

                font-size: 29px;

            }


            .about-hero p {

                font-size: 13px;

                line-height: 1.7;

            }


            .about-main {

                padding: 50px 10px;

            }


            .intro-card,
            .different-section,
            .engagement-section,
            .community-box,
            .future-section {

                padding: 22px 18px;

            }


            .section-title {

                font-size: 25px;

            }


            .different-item {

                padding: 15px;

            }


            .future-section h2 {

                font-size: 24px;

            }

        }


        @media (max-width: 575px) {

            .about-hero h1 {

                font-size: 26px;

            }


            .about-badge {

                font-size: 9px;

            }


            .section-title {

                font-size: 23px;

            }


            .section-text {

                font-size: 13px;

            }


            .journey-card {

                padding: 22px;

            }


            .about-quote h3 {

                font-size: 17px;

                line-height: 1.5;

            }

        }

 
  
        /* =====================================================
           HERO
        ===================================================== */

        .scope-hero {

            min-height: 410px;

            display: flex;

            align-items: center;

            position: relative;

            background:
                linear-gradient(
                    90deg,
                    rgba(20, 79, 45, .97),
                    rgba(20, 79, 45, .82),
                    rgba(20, 79, 45, .30)
                ),
                url("images/scope-banner.jpg");

            background-size: cover;

            background-position: center;

        }


        .scope-hero-content {

            max-width: 800px;

            color: #fff;

        }


        .scope-badge {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 8px 16px;

            margin-bottom: 16px;

            border-radius: 30px;

            background: #f4bd4e;

            color: #173d24;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 1.5px;

        }


        .scope-hero h1 {

            font-size: 46px;

            line-height: 1.2;

            font-weight: 700;

            margin-bottom: 16px;

        }


        .scope-hero p {

            max-width: 700px;

            margin: 0;

            color: rgba(255,255,255,.88);

            font-size: 15px;

            line-height: 1.8;

        }


        /* =====================================================
           MAIN
        ===================================================== */

        .scope-main {

            padding: 75px 0;

            background:
                linear-gradient(
                    135deg,
                    #fff9df,
                    #f3f0e4 50%,
                    #e6f2e1
                );

        }


        /* =====================================================
           HEADING
        ===================================================== */

        .scope-heading {

            max-width: 760px;

            margin: 0 auto 45px;

            text-align: center;

        }


        .scope-tag {

            display: inline-block;

            margin-bottom: 8px;

            color: #26713b;

            font-size: 11px;

            font-weight: 700;

            letter-spacing: 2px;

        }


        .scope-heading h2 {

            margin-bottom: 12px;

            color: #173d24;

            font-size: 32px;

            font-weight:700;

        }


        .scope-heading p {

            margin: 0;

            color: #707570;

            font-size: 16px;

            line-height: 1.8;

        }


        /* =====================================================
           SCOPE CARDS
        ===================================================== */

        .scope-card {

            height: 100%;

            padding: 30px;

            background: #fff;

            border: 1px solid #e4e9e1;

            border-radius: 18px;

            transition: all .35s ease;

            position: relative;

            overflow: hidden;

        }


        .scope-card::before {

            content: "";

            position: absolute;

            width: 80px;

            height: 80px;

            right: -30px;

            top: -30px;

            border-radius: 50%;

            background: #f5edc9;

            transition: .35s ease;

        }


        .scope-card:hover {

            transform: translateY(-8px);

            box-shadow:
                0 15px 35px rgba(30,80,45,.12);

        }


        .scope-card:hover::before {

            transform: scale(1.5);

        }


        .scope-icon {

            width: 58px;

            height: 58px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 20px;

            position: relative;

            z-index: 2;

            background: #e8f2e5;

            color: #185c32;

            border-radius: 14px;

            font-size: 24px;

        }


        .scope-card h3 {

            position: relative;

            z-index: 2;

            margin-bottom: 10px;

            color: #185c32;

            font-size: 19px;

            font-weight:700;

        }


        .scope-card p {

            position: relative;

            z-index: 2;

            margin: 0;

            color: #707570;

            font-size: 16px;

            line-height: 1.8;

        }


        /* =====================================================
           KEY AREAS
        ===================================================== */

        .key-area {

            margin-top: 70px;

        }


        .area-box {

            height: 100%;

            padding: 30px;

            border-radius: 18px;

            background: #185c32;

            color: #fff;

        }


        .area-box h3 {

            margin-bottom: 18px;

            font-size: 22px;

            font-weight:700;

        }


        .area-list {

            padding: 0;

            margin: 0;

            list-style: none;

        }


        .area-list li {

            display: flex;

            align-items: flex-start;

            gap: 12px;

            padding: 11px 0;

            border-bottom: 1px solid rgba(255,255,255,.12);

            color: rgba(255,255,255,.82);

            font-size: 16px;

            line-height: 1.6;

        }


        .area-list li:last-child {

            border-bottom: none;

        }


        .area-list i {

            color: #f4bd4e;

            font-size: 16px;

        }


        /* =====================================================
           WORKING MODEL
        ===================================================== */

        .working-section {

            margin-top: 70px;

        }


        .working-card {

            height: 100%;

            padding: 27px;

            background: #fff;

            border-radius: 17px;

            border: 1px solid #e2e8df;

        }


        .step-number {

            width: 45px;

            height: 45px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 15px;

            border-radius: 50%;

            background: #f4bd4e;

            color: #173d24;

            font-size: 15px;

            font-weight:700;

        }


        .working-card h4 {

            color: #185c32;

            font-size: 17px;

            font-weight:700;

            margin-bottom: 8px;

        }


        .working-card p {

            margin: 0;

            color: #777;

            font-size: 16px;

            line-height: 1.7;

        }


        /* =====================================================
           IMPACT SECTION
        ===================================================== */

        .impact-section {

            margin-top: 70px;

            padding: 45px;

            border-radius: 20px;

            background:
                linear-gradient(
                    135deg,
                    #edf6e8,
                    #fff8dc
                );

            border-left: 5px solid #185c32;

        }


        .impact-section h2 {

            color: #173d24;

            font-size: 29px;

            font-weight:700;

            margin-bottom: 12px;

        }


        .impact-section p {

            max-width: 850px;

            color: #676d67;

            font-size: 14px;

            line-height: 1.8;

            margin-bottom: 0;

        }


        /* =====================================================
           COLLABORATION
        ===================================================== */

        .collaboration-section {

            margin-top: 70px;

        }


        .collaboration-card {

            height: 100%;

            padding: 28px;

            text-align: center;

            background: #fff;

            border-radius: 17px;

            border: 1px solid #e3e8e1;

            transition: .3s ease;

        }


        .collaboration-card:hover {

            transform: translateY(-5px);

            box-shadow:
                0 12px 30px rgba(0,0,0,.08);

        }


        .collaboration-icon {

            width: 55px;

            height: 55px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin: 0 auto 15px;

            border-radius: 50%;

            background: #e8f2e5;

            color: #185c32;

            font-size: 22px;

        }


        .collaboration-card h4 {

            color: #185c32;

            font-size: 17px;

            font-weight:700;

            margin-bottom: 8px;

        }


        .collaboration-card p {

            margin: 0;

            color: #777;

            font-size: 12px;

            line-height: 1.7;

        }


        /* =====================================================
           CTA
        ===================================================== */

        .scope-cta {

            margin-top: 70px;

            padding: 42px 25px;

            text-align: center;

            background: #185c32;

            border-radius: 20px;

            color: #fff;

        }


        .scope-cta i {

            font-size: 30px;

            color: #f4bd4e;

        }


        .scope-cta h2 {

            margin: 12px 0 10px;

            font-size: 27px;

            font-weight:700;

        }


        .scope-cta p {

            max-width: 700px;

            margin: 0 auto;

            color: rgba(255,255,255,.78);

            font-size: 16px;

            line-height: 1.7;

        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 991px) {

            .scope-hero {

                min-height: 380px;

            }

            .scope-hero h1 {

                font-size: 38px;

            }

            .scope-main {

                padding: 60px 15px;

            }

        }


        @media (max-width: 767px) {

            .scope-hero {

                min-height: 430px;

                padding: 50px 0;

            }

            .scope-hero h1 {

                font-size: 30px;

            }

            .scope-hero p {

                font-size: 13px;

            }

            .scope-heading h2 {

                font-size: 26px;

            }

            .scope-card {

                padding: 25px;

            }

            .area-box {

                padding: 25px;

            }

            .impact-section {

                padding: 30px 22px;

            }

            .impact-section h2 {

                font-size: 25px;

            }

            .scope-cta {

                padding: 35px 20px;

            }

            .scope-cta h2 {

                font-size: 23px;

            }

        }


        @media (max-width: 575px) {

            .scope-hero h1 {

                font-size: 26px;

            }

            .scope-badge {

                font-size: 9px;

            }

            .scope-heading h2 {

                font-size: 23px;

            }

            .scope-card {

                padding: 22px;

            }

            .scope-icon {

                width: 50px;

                height: 50px;

                font-size: 20px;

            }

        }

 


        /* =====================================================
           HERO
        ===================================================== */

        .activities-hero {

            min-height: 420px;

            display: flex;

            align-items: center;

            background:
                linear-gradient(
                    90deg,
                    rgba(20,79,45,.97),
                    rgba(20,79,45,.80),
                    rgba(20,79,45,.25)
                ),
                url("images/activities-banner.jpg");

            background-size: cover;

            background-position: center;

        }


        .activities-hero-content {

            max-width: 800px;

            color: #fff;

        }


        .activities-badge {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            padding: 8px 16px;

            margin-bottom: 17px;

            background: #f4bd4e;

            color: #173d24;

            border-radius: 30px;

            font-size: 10px;

            font-weight :700;

            letter-spacing: 1.7px;

        }


        .activities-hero h1 {

            margin-bottom: 15px;

            font-size: 46px;

            line-height: 1.2;

            font-weight :700;

        }


        .activities-hero p {

            max-width: 700px;

            margin: 0;

            color: rgba(255,255,255,.88);

            font-size: 15px;

            line-height: 1.8;

        }


        /* =====================================================
           MAIN
        ===================================================== */

        .activities-main {

            padding: 75px 0;

            background:
                linear-gradient(
                    135deg,
                    #fff9df,
                    #f3f0e4 50%,
                    #e5f1e0
                );

        }


        /* =====================================================
           HEADING
        ===================================================== */

        .activities-heading {

            max-width: 750px;

            margin: 0 auto 45px;

            text-align: center;

        }


        .activities-tag {

            display: inline-block;

            margin-bottom: 8px;

            color: #26713b;

            font-size: 11px;

            font-weight :700;

            letter-spacing: 2px;

        }


        .activities-heading h2 {

            margin-bottom: 12px;

            color: #173d24;

            font-size: 32px;

            font-weight :700;

        }


        .activities-heading p {

            margin: 0;

            color: #707570;

            font-size: 16px;

            line-height: 1.8;

        }


        /* =====================================================
           FEATURED ACTIVITY
        ===================================================== */

        .featured-activity {

            margin-bottom: 70px;

            overflow: hidden;

            border-radius: 22px;

            background: #fff;

            box-shadow:
                0 12px 35px rgba(0,0,0,.08);

        }


        .featured-image {

            height: 100%;

            min-height: 360px;

            overflow: hidden;

        }


        .featured-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform .6s ease;

        }


        .featured-activity:hover .featured-image img {

            transform: scale(1.05);

        }


        .featured-content {

            height: 100%;

            padding: 45px;

            display: flex;

            flex-direction: column;

            justify-content: center;

        }


        .featured-label {

            display: inline-block;

            width: fit-content;

            padding: 6px 12px;

            margin-bottom: 15px;

            border-radius: 20px;

            background: #f5e7b8;

            color: #185c32;

            font-size: 10px;

            font-weight :700;

            letter-spacing: 1px;

        }


        .featured-content h2 {

            margin-bottom: 13px;

            color: #185c32;

            font-size: 29px;

            font-weight :700;

        }


        .featured-content p {

            margin-bottom: 20px;

            color: #707570;

            font-size: 16px;

            line-height: 1.8;

        }


        .featured-list {

            padding: 0;

            margin: 0;

            list-style: none;

        }


        .featured-list li {

            display: flex;

            gap: 10px;

            margin-bottom: 10px;

            color: #555;

            font-size: 16px;

        }


        .featured-list i {

            color: #26713b;

        }


        /* =====================================================
           ACTIVITY CARDS
        ===================================================== */

        .activity-card {

            height: 100%;

            overflow: hidden;

            background: #fff;

            border-radius: 18px;

            border: 1px solid #e2e8df;

            transition: all .35s ease;

        }


        .activity-card:hover {

            transform: translateY(-8px);

            box-shadow:
                0 15px 35px rgba(30,80,45,.12);

        }


        .activity-image {

            height: 210px;

            overflow: hidden;

            position: relative;

        }


        .activity-image img {

            width: 100%;

            height: 100%;

            object-fit: cover;

            transition: transform .5s ease;

        }


        .activity-card:hover .activity-image img {

            transform: scale(1.07);

        }


        .activity-number {

            position: absolute;

            top: 15px;

            left: 15px;

            width: 38px;

            height: 38px;

            display: flex;

            align-items: center;

            justify-content: center;

            border-radius: 50%;

            background: #f4bd4e;

            color: #173d24;

            font-size: 12px;

            font-weight :700;

        }


        .activity-content {

            padding: 25px;

        }


        .activity-icon {

            width: 48px;

            height: 48px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 15px;

            border-radius: 12px;

            background: #e8f2e5;

            color: #185c32;

            font-size: 20px;

        }


        .activity-content h3 {

            margin-bottom: 9px;

            color: #185c32;

            font-size: 18px;

            font-weight :700;

        }


        .activity-content p {

            margin: 0;

            color: #777;

            font-size: 13px;

            line-height: 1.75;

        }


        /* =====================================================
           ACTIVITY CATEGORY
        ===================================================== */

        .category-section {

            margin-top: 70px;

        }


        .category-box {

            height: 100%;

            padding: 28px;

            background: #185c32;

            color: #fff;

            border-radius: 18px;

            transition: .3s ease;

        }


        .category-box:hover {

            transform: translateY(-5px);

        }


        .category-icon {

            width: 55px;

            height: 55px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 17px;

            border-radius: 13px;

            background: #f4bd4e;

            color: #173d24;

            font-size: 22px;

        }


        .category-box h3 {

            margin-bottom: 8px;

            font-size: 18px;

            font-weight :700;

        }


        .category-box p {

            margin: 0;

            color: rgba(255,255,255,.76);

            font-size: 12px;

            line-height: 1.7;

        }


        /* =====================================================
           HOW WE CONDUCT ACTIVITIES
        ===================================================== */

        .process-section {

            margin-top: 70px;

        }


        .process-card {

            height: 100%;

            padding: 25px;

            background: #fff;

            border-radius: 16px;

            border: 1px solid #e3e8e1;

        }


        .process-number {

            width: 44px;

            height: 44px;

            display: flex;

            align-items: center;

            justify-content: center;

            margin-bottom: 14px;

            border-radius: 50%;

            background: #e8f2e5;

            color: #185c32;

            font-weight :700;

            font-size: 13px;

        }


        .process-card h4 {

            color: #185c32;

            font-size: 17px;

            font-weight :700;

            margin-bottom: 8px;

        }


        .process-card p {

            margin: 0;

            color: #777;

            font-size: 12px;

            line-height: 1.7;

        }


        /* =====================================================
           CTA
        ===================================================== */

        .activity-cta {

            margin-top: 70px;

            padding: 45px 25px;

            text-align: center;

            background: #185c32;

            color: #fff;

            border-radius: 20px;

        }


        .activity-cta i {

            font-size: 32px;

            color: #f4bd4e;

        }


        .activity-cta h2 {

            margin: 12px 0 10px;

            font-size: 28px;

            font-weight :700;

        }


        .activity-cta p {

            max-width: 700px;

            margin: auto;

            color: rgba(255,255,255,.78);

            font-size: 16px;

            line-height: 1.8;

        }


        /* =====================================================
           RESPONSIVE
        ===================================================== */

        @media (max-width: 991px) {

            .activities-hero {

                min-height: 390px;

            }

            .activities-hero h1 {

                font-size: 38px;

            }

            .featured-content {

                padding: 32px;

            }

        }


        @media (max-width: 767px) {

            .activities-hero {

                min-height: 430px;

                padding: 50px 0;

            }

            .activities-hero h1 {

                font-size: 30px;

            }

            .activities-hero p {

                font-size: 13px;

            }

            .activities-main {

                padding: 55px 12px;

            }

            .activities-heading h2 {

                font-size: 26px;

            }

            .featured-image {

                min-height: 250px;

            }

            .featured-content {

                padding: 28px 22px;

            }

            .featured-content h2 {

                font-size: 25px;

            }

        }


        @media (max-width: 575px) {

            .activities-hero h1 {

                font-size: 26px;

            }

            .activities-badge {

                font-size: 9px;

            }

            .activities-heading h2 {

                font-size: 23px;

            }

            .activity-image {

                height: 200px;

            }

            .activity-content {

                padding: 22px;

            }

            .activity-cta {

                padding: 35px 20px;

            }

            .activity-cta h2 {

                font-size: 23px;

            }

        }

    .photo-gallery-section {
        padding: 50px 0;
        background: linear-gradient( 135deg, #fff9df, #f3f0e4 50%,  #e6f2e1 );
    }


    .gallery-heading {

        max-width: 700px;

        margin: 0 auto 45px;

    }


    .gallery-tag {

        display: inline-block;

        margin-bottom: 8px;

        color: #26713b;

        font-size: 11px;

        font-weight: 700;

        letter-spacing: 2px;

    }


    .gallery-heading h2 {
        margin-bottom: 2px;
        color: #173d24;
        font-size: 34px;
        font-weight: 700;
    }
    .gallery-heading p {
        margin: 0;
        color: #707570;
        font-size: 16px;
        line-height: 1.8;
    }
    /* =====================================================
       GALLERY CARD
    ===================================================== */
    .gallery-card {
        height: 250px;
        position: relative;
        overflow: hidden;
        border-radius: 16px;
        background: #fff;
        box-shadow:  0 8px 25px rgba(0,0,0,.08);
        cursor: pointer;
    }


    .gallery-card img {

        width: 100%;

        height: 100%;

        object-fit: cover;

        display: block;

        transition:
            transform .6s ease;

    }


    .gallery-card:hover img {

        transform: scale(1.1);

    }


    /* =====================================================
       OVERLAY
    ===================================================== */

    .gallery-overlay {

        position: absolute;

        left: 0;

        right: 0;

        bottom: 0;

        min-height: 95px;

        padding: 20px;

        display: flex;

        align-items: flex-end;

        justify-content: space-between;

        gap: 15px;

        background:
            linear-gradient(
                transparent,
                rgba(12,45,25,.92)
            );

        color: #fff;

        opacity: 0;

        transform: translateY(15px);

        transition:
            opacity .35s ease,
            transform .35s ease;

    }


    .gallery-card:hover .gallery-overlay {

        opacity: 1;

        transform: translateY(0);

    }


    .gallery-overlay span {

        display: block;

        margin-bottom: 4px;

        color: #f4bd4e;

        font-size: 9px;

        font-weight: 700;

        letter-spacing: 1px;

        text-transform: uppercase;

    }


    .gallery-overlay h4 {

        margin: 0;

        font-size: 14px;

        font-weight: 700;

    }


    .gallery-view {

        width: 36px;

        height: 36px;

        flex-shrink: 0;

        display: flex;

        align-items: center;

        justify-content: center;

        border-radius: 50%;

        background: #f4bd4e;

        color: #173d24;

        font-size: 14px;

    }


    /* =====================================================
       TABLET
    ===================================================== */

    @media (max-width: 991px) {

        .photo-gallery-section {

            padding: 65px 15px;

        }

        .gallery-card {

            height: 230px;

        }

    }


    /* =====================================================
       MOBILE
    ===================================================== */

    @media (max-width: 575px) {

        .photo-gallery-section {

            padding: 55px 12px;

        }

        .gallery-heading h2 {

            font-size: 26px;

        }

        .gallery-card {

            height: 240px;

        }

        .gallery-overlay {

            opacity: 1;

            transform: none;

        }

    }
/* =====================================================
   SCOPE OF WORK
===================================================== */

.scope-section {

    padding: 40px 0;

    background:
        linear-gradient(
            135deg,
            #fff9df,
            #f3f0e4 50%,
            #e5f1df
        );

}


/* HEADING */

.scope-heading {

    max-width: 750px;

    margin: 0 auto 50px;

}


.scope-heading span {

    display: inline-block;

    margin-bottom: 8px;

    color: #26713b;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.scope-heading h2 {

    margin-bottom: 12px;

    color: #173d24;

    font-size: 34px;

    font-weight: 700;

}


.scope-heading p {

    margin: 0;

    color: #737873;

    font-size: 16px;

    line-height: 1.8;

}


/* CARD */

.scope-card {

    height: 100%;

    position: relative;

    padding: 30px;

    background: #fff;

    border: 1px solid #e3e9df;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 8px 25px rgba(35,70,40,.07);

    transition:
        transform .35s ease,
        box-shadow .35s ease;

}


.scope-card:hover {

    transform: translateY(-8px);

    box-shadow:
        0 18px 38px rgba(35,70,40,.14);

}


/* TOP LINE */

.scope-card::before {

    content: "";

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 4px;

    background:
        linear-gradient(
            90deg,
            #185c32,
            #f4bd4e
        );

}


/* ICON */

.scope-icon {

    width: 55px;

    height: 55px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 18px;

    border-radius: 14px;

    background: #e8f2e5;

    color: #185c32;

    font-size: 22px;

    transition: .3s ease;

}


.scope-card:hover .scope-icon {

    background: #185c32;

    color: #f4bd4e;

}


/* NUMBER */

.scope-number {

    position: absolute;

    top: 25px;

    right: 25px;

    color: #e5eadf;

    font-size: 38px;

    font-weight: 900;

    line-height: 1;

}


/* TITLE */

.scope-card h3 {

    position: relative;

    margin-bottom: 18px;

    padding-right: 45px;

    color: #185c32;

    font-size: 19px;

    font-weight: 700;

}


/* LIST */

.scope-card ul {

    padding: 0;

    margin: 0;

    list-style: none;

}


.scope-card li {

    display: flex;

    align-items: flex-start;

    gap: 9px;

    padding: 9px 0;

    border-bottom: 1px solid #edf0eb;

    color: #666;

    font-size: 16px;

    line-height: 1.5;

}


.scope-card li:last-child {

    border-bottom: none;

}


.scope-card li i {

    flex-shrink: 0;

    margin-top: 2px;

    color: #26713b;

    font-size: 13px;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .scope-section {

        padding: 65px 15px;

    }

}


@media (max-width: 767px) {

    .scope-heading {

        margin-bottom: 35px;

    }

    .scope-heading h2 {

        font-size: 28px;

    }

    .scope-card {

        padding: 25px;

    }

}


@media (max-width: 575px) {

    .scope-section {

        padding: 55px 12px;

    }

    .scope-heading h2 {

        font-size: 25px;

    }

    .scope-card {

        padding: 23px;

    }

    .scope-number {

        font-size: 32px;

    }

}
/* =====================================================
   PRIVACY POLICY
===================================================== */

.privacy-page {

    padding: 40px 0;

    background:
        linear-gradient(
            135deg,
            #fff9df 0%,
            #f3f0e4 48%,
            #e5f1df 100%
        );

}


/* =====================================================
   HEADER
===================================================== */

.privacy-header {

    max-width: 800px;

    margin: 0 auto 55px;

}


.privacy-tag {

    display: inline-block;

    margin-bottom: 10px;

    color: #26713b;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 2px;

}


.privacy-header h1 {

    margin-bottom: 15px;

    color: #173d24;

    font-size: 42px;

    font-weight: 700;

}


.privacy-header p {

    margin: 0;

    color: #707570;

    font-size: 16px;

    line-height: 1.8;

}


/* =====================================================
   CONTENT CARD
===================================================== */

.privacy-content {

    padding: 45px;

    background: rgba(255,255,255,.92);

    border: 1px solid #e1e7dd;

    border-radius: 22px;

    box-shadow:
        0 12px 40px rgba(30,70,40,.08);

}


/* =====================================================
   PRIVACY BLOCK
===================================================== */

.privacy-block {

    padding: 0 0 38px;

    margin-bottom: 38px;

    border-bottom: 1px solid #e7ebe5;

}


.privacy-block:last-of-type {

    margin-bottom: 0;

}


/* =====================================================
   TITLE
===================================================== */

.privacy-title {

    display: flex;

    align-items: center;

    gap: 16px;

    margin-bottom: 20px;

}


.privacy-icon {

    width: 52px;

    height: 52px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 14px;

    background: #e8f2e5;

    color: #185c32;

    font-size: 21px;

}


.privacy-title span {

    display: block;

    margin-bottom: 3px;

    color: #c19a36;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1px;

}


.privacy-title h2 {

    margin: 0;

    color: #185c32;

    font-size: 21px;

    font-weight: 700;

}


/* =====================================================
   TEXT
===================================================== */

.privacy-block p {

    margin-bottom: 13px;

    color: #666;

    font-size: 16px;

    line-height: 1.85;

}


.privacy-block p:last-child {

    margin-bottom: 0;

}


.privacy-block strong {

    color: #444;

}


.privacy-block a {

    color: #26713b;

    font-weight: 600;

    text-decoration: none;

}


.privacy-block a:hover {

    color: #c1942e;

    text-decoration: underline;

}


/* =====================================================
   PRIVACY NOTE
===================================================== */

.privacy-note {

    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-top: 40px;

    padding: 25px;

    border-radius: 16px;

    background:
        linear-gradient(
            135deg,
            #eaf4e7,
            #fff7d8
        );

    border: 1px solid #dce7d7;

}


.privacy-note-icon {

    width: 45px;

    height: 45px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 12px;

    background: #185c32;

    color: #f4bd4e;

    font-size: 19px;

}


.privacy-note h4 {

    margin-bottom: 6px;

    color: #185c32;

    font-size: 16px;

    font-weight: 700;

}


.privacy-note p {

    margin: 0;

    color: #666;

    font-size: 16px;

    line-height: 1.7;

}


/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width: 991px) {

    .privacy-page {

        padding: 65px 15px;

    }

    .privacy-content {

        padding: 35px;

    }

    .privacy-header h1 {

        font-size: 36px;

    }

}


@media (max-width: 767px) {

    .privacy-page {

        padding: 55px 12px;

    }

    .privacy-header {

        margin-bottom: 35px;

    }

    .privacy-header h1 {

        font-size: 30px;

    }

    .privacy-header p {

        font-size: 13px;

    }

    .privacy-content {

        padding: 25px 20px;

        border-radius: 16px;

    }

    .privacy-title h2 {

        font-size: 18px;

    }

    .privacy-block p {

        font-size: 14px;

        line-height: 1.8;

    }

}


@media (max-width: 575px) {

    .privacy-header h1 {

        font-size: 27px;

    }

    .privacy-title {

        align-items: flex-start;

    }

    .privacy-icon {

        width: 45px;

        height: 45px;

        font-size: 18px;

    }

    .privacy-title h2 {

        font-size: 17px;

    }

    .privacy-note {

        padding: 20px;

        gap: 12px;

    }

}.contribution-note {
    display: flex;
    align-items: center;
    gap: 15px;
    /* margin-top: 25px; */
    padding: 8px 20px;
    /* background: #fff9e5; */
    /* border-left: 4px solid #e5b93f; */
    border-radius: 10px;
}

.note-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4c542;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
}

.note-content h5 {
    margin: 0 0 4px;
    color: #174c2c;
    font-size: 15px;
    font-weight: 700;
}

.note-content p {
    margin: 0;
    color: #666;
    font-size: 13px;
}