:root {
  --navbar-width: 90%;
  --primary-color: #323232;
  --hover-color: #0056d6;
  --font-size: 18px;
  --font-family: "Poppins", sans-serif;

  --logo-height: 80px;
  --search-size: 42px;
  --dropdown-icon-size: 20px;

  --gap-size: 40px;
  --navbar-padding: 20px;
  --border-color: #ccc;
  --hero-height: 100vh;
  --hero-content-width: 60%;
  --text-white: #ffffff;
  --btn-border: 1px solid #ffffff;
  --hero-padding: 40px;

  --section-title-color: #323232;
  --highlight-color: #FCB53D;
  --card-radius: 16px;
  --card-bg-light: #e7e7e7;
  /*--primary-color: #1a1a1a;*/
  --highlight-color: #FCB53D;
  --info-btn-bg: rgba(255, 255, 255, 0.7);
  /* --info-btn-hover: rgba(255, 255, 255, 0.9); */
  --green: #00663e;
  --black: #000000;
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font-family);
}

html {
    font-family: var(--font-family);
}

body {
  font-family: var(--font-family);
  background-color: white;
  color: var(--primary-color);
}

/* NAVBAR FULL WRAPPER */
.navbar-container {
    background-color: white;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
     box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
    position: fixed;
    /*margin-bottom: 110px;*/
    width: 100%;
    z-index: 999;
}

/* NAVBAR */
.navbar {
  max-width: var(--navbar-width);
      padding-right: calc(var(--bs-gutter-x)* .5) !important;
    padding-left: calc(var(--bs-gutter-x)* .5) !important;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap-size);
}

/* NAVBAR LINK TEXT */
.nav-link {
  font-size: 20px !important;
  font-weight: 600 !important;
  text-decoration: none !important;
  color: var(--primary-color) !important;
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-link:hover {
  color: var(--hover-color);
}

/* Hide submenu by default */
.submenu {
  list-style: none;
  padding: 0px 0;
  margin: 0;
  position: absolute;
  background: #fff;
  /* border-radius: 6px; */
  /* box-shadow: 0 4px 20px rgba(0,0,0,0.15); */
  display: none;
  z-index: 20;
  width: 120%;
  left:-13%;
  text-align: center;
  border: 2px solid #000;
    border-top: 0;
}

.submenu li a {
  display: block;
  padding: 8px 0px;
  color: #323232;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  text-decoration: none;
}

.submenu li:first-child a {
  border-bottom: 1px solid #323232;
}

.submenu li a:hover {
  background: #f5f5f5;
}

/* Rotate arrow when active */
.dropdown-toggle.active .dropdown-icon {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.dropdown-icon {
  transition: transform 0.3s ease;
}

/* Dropdown wrapper to position submenu */
.dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.dropdown-toggle::after {
  display: none !important;
}

/* LOGO ALIGNMENT */
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo a img{
        width: 219px;
    height: 114px;
}

/* .nav-logo img {
  height: var(--logo-height);
} */

/* DROPDOWN ICON */
.dropdown-icon {
  width: var(--dropdown-icon-size);
  height: var(--dropdown-icon-size);
  margin-top: 2px;
}

/* SEARCH BUTTON */
.search-btn {
  /* width: var(--search-size);
  height: var(--search-size);
  border-radius: 50%; */
  border: 0px solid var(--primary-color);
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 8px;
}

.search-btn img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}

.hero-section {
  position: relative;
  height: var(--hero-height);
  min-height: 500px;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: start;
  text-align: center;
}

.hero-bg-slider {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slides-container {
  display: flex;
  height: 100%;
  width: 100%;
  transform: translateX(0);
  transition: transform var(--slide-duration) cubic-bezier(0.25, 0.8, 0.25, 1);
  /* This bezier = ultimate smoothness (same as top websites) */
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Fixed text */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 80%;
  padding: 20px;
  color: white;
  text-shadow: 0 2px 15px rgba(0,0,0,0.6);
}

.hero-content p {
  font-size: 20px;
  line-height: 1.2;
  margin-bottom: 30px;
}

.hero-btn {
  display: inline-block;
  padding: 15px 50px;
  font-size:20px;
  border: 2px solid white;
  border-radius: 50px;
  color: white;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.35s ease;
}

/*.hero-btn:hover {*/
/*  background: rgba(255,255,255,0.2);*/
/*  transform: translateY(-4px);*/
/*}*/

/* card section css */

.info-section {
  padding: 60px 20px;
  background-color: #fff;
}

.container {
  max-width: 90%;
  margin: 0 auto;
  padding-right: 0px !important;
  padding-left: 0px !important;
}

.section-title {
  font-size: 60px;
  text-align: start;
  margin-bottom: 40px;
  color: var(--section-title-color);
  font-weight: 600 !important;
}
.section-black-title {
  font-size: 60px;
  text-align: start;
  margin-bottom: 40px;
  color: #000;
  font-weight: 600;
}
.section-black-title .highlighted {
  color: var(--highlight-color);
}

.section-title .highlighted {
  color: var(--highlight-color);
}
.mh-270{
  min-height: 270px;
  background-size: cover;
  background-position: top center;
}

/* Card Layout */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* flex-wrap: wrap; */
  gap: 30px 25px;
  justify-content: space-between;
}

@media (max-width: 768px) {
      .cards {
        grid-template-columns: repeat(2, 1fr);
      }
    }

@media (max-width: 600px){
  .cards {
        grid-template-columns: repeat(1, 1fr);
      }
}

/* 🟤 MODERN CARD */
.modern-card {
  width: 100%;
  /* max-width: 410px; */
  border-radius: var(--card-radius);
  overflow: hidden;
  /* box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08); */
  background-color: var(--card-bg-light);
  display: flex;
  flex-direction: column;
}

/* Top text area */
.card-top {
  padding: 20px;
  background-color: var(--card-bg-light);
  color: var(--primary-color);
}

.card-top h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.card-top p {
  font-size: 14px;
  line-height: 1.5;
  color: #323232;
}

/* Bottom background image area */
.card-bottom {
  position: relative;
  height: 300px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 20px;
  border-radius: 15px;
}

/* Know More Button */
.card-btn {
  width: 100%;
  text-align: center;
  display: inline-block;
  padding: 16px 24px;
  background-color: var(--info-btn-bg);
  color: var(--text-white);
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  backdrop-filter: blur(6px);
  transition: background-color 0.3s ease;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: ;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

/* .card-btn:hover {
  background-color: var(--info-btn-hover);
} */

/* supporter section */
/* SUPPORTERS SECTION */
.supporters-section {
  padding: 60px 20px;
  background-color: white;
  text-align: center;
}

.supporters-heading {
  font-size: 60px;
  text-align: start;
  margin-bottom: 40px;
  color: var(--section-title-color);
  font-weight: 700;
}

.supporters-heading .highlight-orange {
  color: #FCB53D;
}

/* Slider Images */
.supporters-slider .slide {
  padding: 20px;
}

.supporters-slider .slide img {
  max-height: 130px;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  object-fit: contain;
}

/* Fix dots position */
/* Slick Dots Wrapper */
.slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 0px;
  padding: 0;
  list-style: none;
}

/* Default inactive dot */
.slick-dots li button {
  width: 12px !important;
  height: 12px !important;
  padding: 0;
  border: none;
  border-radius: 50%;
  background-color: #d9d9d9 !important;
  text-indent: -9999px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Remove default pseudo icon */
.slick-dots li button:before {
  display: none;
}

/* Active dot */
.slick-dots .slick-active button {
  background-color: #00663e !important;
}

.slick-arrow {
    background: rgba(255, 255, 255, 0.15) !important; /* transparent white */
    backdrop-filter: blur(10px) !important;           /* glass blur */
    -webkit-backdrop-filter: blur(10px) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    padding: 10px 14px !important;
    border-radius: 10px !important;                   /* smooth rounded glass */
    display: flex !important;
    justify-content: center;
    align-items: center;
    transition: 0.3s ease;
}

/* Hover effect */
.slick-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Arrows Styling */
/* Base styles for Slick arrows */
/*.slick-prev,*/
/*.slick-next {*/
/*  z-index: 10;*/
/*  width: 44px !important;*/
/*  height: 44px !important;*/
/*  background-color: #d9d9d9 !important;*/
/*  border-radius: 50% !important;*/
/*  display: flex !important;*/
/*  justify-content: center;*/
/*  align-items: center;*/
/*  position: absolute;*/
/*  top: 50%;*/
/*  transform: translateY(-50%);*/
/*  cursor: pointer;*/
/*  transition: background 0.3s ease;*/
/*}*/

.custom-arrow {
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  z-index:10;
}

.custom-arrow img {
  width: 70px;   /* change size */
  height: auto;
  /*filter: drop-shadow(0px 0px 5px rgba(0,0,0,0.3)); */
}


/* Left arrow position */
.slick-prev {
  left: -60px;
}

/* Right arrow position */
.slick-next {
  right: -60px;
}

/* Hide default arrows */
.slick-prev:before,
.slick-next:before {
  display: none;
}

/* Custom arrows using ::after */
/*.slick-prev::after,*/
/*.slick-next::after {*/
/*  content: "";*/
/*  display: inline-block;*/
/*  width: 10px;*/
/*  height: 10px;*/
/*  border: solid #ffffff;*/
/*  border-width: 0 2px 2px 0;*/
/*  padding: 5px;*/
/*  transform: rotate(135deg);*/
/*  transition: 0.3s ease;*/
/*}*/

/* Adjust right arrow */
.slick-next::after {
  transform: rotate(-45deg);
}

/* Hover effect */
.slick-prev:hover,
.slick-next:hover {
  background-color: #c6c6c6;
}
/* footer css */

/* ========== FOOTER STYLING ========== */

.site-footer {
  background-color: #00663e;
  color: #fff;
  padding: 60px 20px;
  /*border-top:1px solid #fff6;*/
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
}

/* Left content */
.footer-left {
  /* flex: 1 1 300px; */
      display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
  max-width: 240px;
}

.footer-contact,
.footer-social {
  margin-top: 0px;
}
.footer-contact p{
  margin-bottom: 0px;
  font-size: 18px;
  font-weight: 500;
}

.email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-top: 0px;
  text-decoration: none;
  font-weight: 500;
}

.email-link img {
  width: 20px;
  height: 20px;
}

.footer-social p {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
}

.social-icons a {
  margin-right: 10px;
  display: inline-block;
}

.social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1); /* Ensure white icons */
}

/* Right content */
.footer-right {
  /* flex: 2 1 400px; */
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}
.about-ussec {
  width: 560px;
}
.about-ussec p {
  font-size: 18px;
  line-height: 1.6;
}
.about-ussec p strong{
    font-weight:500;
}

.about-ussec a {
  color: #fff;
  text-decoration: underline;
}

/* Bottom nav links */
.footer-nav {
  margin-top: 30px;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  text-decoration: underline;
}

/* ===== What We Do Section ===== */
.what-we-do-section {
  display: flex;
  justify-content: center;
  align-items: stretch;
  background-color: #ffffff;
  padding: 0;
}

.what-we-do-container {
  display: flex;
  position: relative;
  flex-wrap: wrap;
  width: 100%;
  /*z-index: 999;*/
}

.what-we-do-left {
  flex: 1 1 50%;
  background: url("../images/what-we-do.png") center/cover no-repeat;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.overlay-content {
  padding: 60px 110px;
  background: rgba(0, 102, 62, 0.7);
  color: #fff;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.overlay-content h1 {
  font-size: 62px;
  font-weight: bold;
  margin-bottom: 20px;
}

.overlay-content .text-accent {
  color: #FCB53D;
}

.overlay-content p {
  font-size: 20px;
  line-height: 1.6;
}

/* Right content */
.what-we-do-right {
  flex: 1 1 50%;
  padding: 60px 110px;
  display: flex;
  flex-direction: column;
  gap: 110px;
  height: 100vh;
  overflow-y: scroll;
   scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge */
}

.what-we-do-right::-webkit-scrollbar {
  display: none;  /* Chrome, Safari */
}

/* Info cards */
.info-card {
  background-color: #f1f1f1;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  width: 80%;
}

.info-card .icon {
  background-color: #00663e;
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #323232;
}

.info-card p {
  margin: 0;
  font-size: 18px;
  color: #323232;
  line-height: 1.5;
}

/* about second section */
/* SECTION */
.values-section {
  background-color: #00663e;
  padding: 20px 0px 0px;
  color: white;
  border-bottom: 2px solid #fff6;
}

.values-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.values-left {
  flex: 0 0 40%;
  display: flex;
  align-items: center;
}

.values-left h2 {
  font-size: 60px;
  font-weight: 700;
}

.values-left .highlight {
  color: #FCB53D;
}

/* GLASS CONTAINER */
.glass-column {
  flex: 0 0 50%;
  padding: 20px 0;
  border: 2px solid rgba(255, 255, 255, 0.4);
  /* border-left: none;
  border-right: none; */
  border-top: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  position: relative;
  height: 450px;
  max-width: 360px;
}

/* VALUE ITEM STYLES */
.value-item {
  background-color: #FCB53D;
  color: #222;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  min-width: 320px;
  max-width: 100%;
  transform-origin: top left;
  position: absolute;
  z-index: 1;
  text-align: center;
  width: 360px;
}

/* Manual offsets to simulate organic stacking */
.value-item:nth-child(1) {
  transform: rotate(-18deg);
  top: 260px;
  left: 0;
}

.value-item:nth-child(2) {
  transform: rotate(-10deg);
  top: 320px;
  left: -10px;
}

.value-item:nth-child(3) {
  transform: rotate(-15deg);
  top: 380px;
  left: 5px;
}

.value-item:nth-child(4) {
  transform: rotate(-9deg);
  top: 440px;
  left: -8px;
}

.value-item:nth-child(5) {
  /* transform: rotate(-7deg); */
  top: 436px;
  left: 0;
}

/* Draw from top like it's falling — optional animation */
.value-item {
  animation: dropStack 0.6s ease-out forwards;
  opacity: 0;
}

.value-item:nth-child(1) {
  animation-delay: 0.2s;
}
.value-item:nth-child(2) {
  animation-delay: 0.4s;
}
.value-item:nth-child(3) {
  animation-delay: 0.6s;
}
.value-item:nth-child(4) {
  animation-delay: 0.8s;
}
.value-item:nth-child(5) {
  animation-delay: 1.1s;
}

.values-right {
  position: relative;
  flex: 1;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.pill-stack {
  position: relative;
  width: 380px;
  height: 590px;
  border: 2px solid #ffffff;
  border-top: none;
  border-bottom: none;
}

/* Individual pills */
.pill {
  position: absolute;
  left: 50%;
  width: 360px;
  background: #FCB53D;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 18px;
  padding: 18px 35px;
  border-radius: 60px;
  /* box-shadow: 0 12px 32px rgba(0,0,0,0.3); */
  text-align: center;
  transform: translateX(-50%) rotate(var(--rot));
  opacity: 0;
  /* animation: dropIn 1.1s ease-out forwards; */
  z-index: 45;
}

.pill.animate {
  animation: dropIn 0.2s ease-out forwards;
}

/* Positions you gave */
.pill:nth-child(1) { top: 28px;   --rot: 9deg;   animation-delay: 1.2s; }   /* +12° → tilts right */
.pill:nth-child(2) { top: 167px;  --rot: -20deg;  animation-delay: 1s; }  /* left */
.pill:nth-child(3) { top: 245px;  --rot: -16deg;  animation-delay: 0.8s; }   /* left */
.pill:nth-child(4) { top: 335px;  --rot: -24deg;  animation-delay: 0.6s; }  /* strongly left */
.pill:nth-child(5) { top: 437px;  --rot: -10deg;  animation-delay: 0.4s; }   /* left */

/* Bottom pill – straight and glued to the floor */
.bottom-pill {
  --rot: 0deg;
  top: auto !important;
  bottom: 0;
  animation-delay: 0.2s;
}

/* Animation that respects your exact rotation values */
@keyframes dropIn {
  0% {
    opacity: 1;
    transform: translateX(-50%) translateY(-400px) rotate(calc(var(--rot) * 2));
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) rotate(var(--rot));   /* uses your exact degrees */
  }
}



/* Responsive */
@media (max-width: 768px) {
  .values-container {
    flex-direction: column;
  }

  .glass-column {
    height: auto;
    border-left: none;
    border-right: none;
    border-top: 2px solid rgba(255, 255, 255, 0.4);
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
  }

  .value-item {
    transform: rotate(0deg) !important;
    left: 0 !important;
    top: 0 !important;
    margin: 10px 0;
    animation: fadeIn 0.5s ease-out forwards;
  }

  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

/* Responsive */
@media (max-width: 768px) {
  .what-we-do-container {
    flex-direction: column;
  }

  .what-we-do-left,
  .what-we-do-right {
    flex: 1 1 100%;
    padding: 40px 20px;
  }

  .overlay-content {
    padding: 40px 20px;
  }

  .info-card {
    flex-direction: column;
    gap: 12px;
  }

  .info-card .icon {
    margin-bottom: 10px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-nav {
    justify-content: start;
    gap: 20px;
  }

  .email-link,
  .footer-nav a {
    font-size: 13px;
  }
}

/* Font Awesome Icons */
.email-link i,
.social-icons i {
  color: #fff;
  font-size: 16px;
}

/* Email icon spacing */
.email-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  margin-top: 0px;
  font-weight: 500;
  text-decoration: none;
}

/* Social Icons */
.social-icons a {
  margin-right: 25px;
  font-size: 18px;
  display: inline-block;
  color: #fff;
  transition: color 0.2s ease-in-out;
}

.social-icons a i{
  font-size: 22px;
}

.social-icons a:hover {
  color: #ccc;
}

@media (max-width: 768px) {
  .supporters-heading {
    font-size: 26px;
  }
}

/* RESPONSIVE (optional) */
@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nav-logo {
    order: -1;
    margin-bottom: 10px;
  }
  .hero-content {
    max-width: 90%;
  }

  .hero-content p {
    font-size: 16px;
  }

  .hero-family {
    max-height: 180px;
  }

  .hero-logo {
    width: 70px;
    right: 20px;
    bottom: 20px;
  }
  .card {
    max-width: 100%;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }
}

.hero {
  padding: 48px 0 40px;
}
.hero h1 {
  /* font-size: 68px; */
  line-height: 1;
  font-weight: 700;
  margin: 0 0 20px;
  /* color: var(--black); */
}
.hero h1 span {
  color: var(--yellow);
}
.hero p {
  font-size: 20px;
  color: #000;
  font-weight: 400;
  max-width: 900px;
}

.separator {
  height: 1px;
  background: #717171;
  margin: 28px 0 0;
}

/* Number sections */
.num-section {
  padding: 40px 0;
}
.big-number {
  font-size: 240px;
  font-weight: 700;
  line-height: 1;
  color: var(--black);
  display: inline-block;
  transform: translateY(40px);
  opacity: 0;
}
.num-text,
.num-para {
  transform: translateX(40px);
  opacity: 0;
}
.num-text{
  font-size: 28px;
  font-weight:600;
  color:#323232;
}
.num-para{
  font-size: 18px;
  font-weight:400;
  color:#323232;
}

.num-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.num-card {
  max-width: 520px;
}

/* Rope section */
.rope-section {
  background: var(--green);
  color: #fff;
  padding: 60px 0 100px;
  position: relative;
  overflow: hidden;
}
.rope-inner {
  /* max-width: 1200px; */
  margin: 0 auto;
  position: relative;
}
.rope-heading {
  font-size: 36px;
  font-weight: 700;
}
.rope-sub {
  font-size: 20px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.95);
}
.pledge-track {
  display: flex;
  gap: 28px;
  align-items: flex-end;
  transition: transform 0.6s cubic-bezier(0.22, 0.9, 0.32, 1);
  will-change: transform;
  padding: 40px 0;
}
.pledge-card {
  background: #fff;
  color: #111;
  width: 320px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform-origin: center;
}
.rope-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 6px;
  background: transparent;
  top: 46%;
  pointer-events: none;
}
.rope-svg {
  width: 120%;
  position: absolute;
  left: -10%;
  top: 38%;
}

.rope-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.rope-arrow.left {
  left: 10px;
}
.rope-arrow.right {
  right: 10px;
}

/* Insta */
.insta-section {
  padding: 56px 0;
}
.insta-track {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  will-change: transform;
  animation: instaAuto 8s ease-in-out infinite alternate;
  width: max-content;
  overflow: auto;

}
.insta-card {
  min-width: 400px;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  padding-bottom: 12px;
}
.btnprim{
  font-size: 20px !important;
    font-weight: 600 !important;
    padding: 15px 50px !important;
    color: #323232 !important;
    border-color: #323232 !important;

}
.btnprimorg{
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out !important;
  color: #fff !important;
  border-color:#fff !important;
}
.btnprimorg:hover{
  background-color: #FCB53D !important;
    border-color: #FCB53D !important;
    color: #fff !important;
}
.btnprimwhite{
  transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out, border-color 0.3s ease-in-out !important;
}
.btnprimwhite:hover {
    background-color: #FCB53D !important;
    border-color: #FCB53D !important;
    color: #000 !important;
}
.mb-20{
  margin-bottom: 20px;;
}
.protien-card-text h3{
  font-size: 28px;
  color: #323232;
  font-weight:600 !important;
}
.white-section {
    background: #fff;
    /* color: #fff; */
    padding: 0px 0;
    position: relative;
    overflow: hidden;
}
.text-content {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}
.white-card{
  background-color: #fff;
  border-radius: 20px;
}
.white-card .card-top{
  background-color: #fff !important;
}
.lifestage{
      display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: flex-end;
}
.lifestages{
  text-align: center;
  transition: color 0.3s ease;
}

.lifestages img {
    /* width: 200px; */
    transition: opacity 0.4s ease;
}

.lifestages:hover img {
    opacity: 0;
}

.lifestage-title{
    font-weight:600;
    font-size:24px;
}

.lifestages:hover .lifestage-title,
.lifestages:hover .lifestage-text {
    color: #00663e;
    transition: color 0.3s ease;
}
.line{
  height: 30px;
  width: 2px;
  background-color: #000;
  margin: auto;
}
.section-text{
  font-size: 20px;
}

.sliding-cards .modern-card {
  margin-right: 50px;
}

.sliding-cards .slick-slide {
  padding: 0 0px;
}

.sliding-cards .slick-list {
  overflow: visible !important; /* shows offset card */
}

.sliding-cards .slick-slide {
    height: auto !important;
}

/* Make all cards equal height */
.sliding-cards .modern-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

/* Make top section auto-grow and bottom stick */
.sliding-cards .modern-card .card-top {
    flex: 1;      /* This makes all cards equal height */
}
.sliding-cards .modern-card .card-top p{
  font-size: 15px !important;
  color: #323232 !important;
}
.sliding-cards .slick-prev{
  left: 5px;
}
.sliding-cards .slick-next{
  right: 0;
}

#proteinTabs{
  border: 1px solid #323232;
  border-radius: 50px;
}
#proteinTabs li{
    margin-bottom:5px;
    position:relative;
}

.protein-tabs .nav-link {
    /* border: 1px solid #D8E6E1; */
    /* border-radius: 50px; */
    font-size: 16px !important;
    font-weight: 600 !important;
    padding: 0px 24px;
    margin: 6px;
    margin-bottom:0px;
    color: #323232 !important;
    background-color: #fff !important;
    font-weight: 500;
    transition: all 0.3s ease;
}
.protein-tabs .nav-link .high{
  font-weight: 600 !important;
  font-size: 10px;
  color: #00663E;
      position: absolute;
    top: 10px;
    left: 27px;
}

.protein-tabs .nav-link.active {
    /* background: #E9F5F0 !important; */
    color: #00663E !important;
    border-color: #00663E !important;
}

/* Smooth fade on switching */
.tab-pane {
    transition: opacity 0.4s ease-in-out;
}

/* Card styling */
.food-card {
    border-radius: 10px;
    padding: 5px;
    background: #E7E7E7;
}

.food-card img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 150px;
    object-fit: cover;
}

.food-card .value {
    font-weight: 700;
    color: #00663E;
    font-size: 24px;
}
.tab-heading{
  font-size: 42px;
  color: #323232;
  font-weight: 700;
}
.tab-content{
  font-size: 20px;
  margin-bottom:30px;
}
.tab-text{
    font-size:20px;
    color:#323232 !important;
    font-weight:400;
}
.value-container{
  padding: 10px;
}
.value-container p{
  font-size: 19px;
  color: #323232;
  font-weight:400;
}

.blog-date{
  font-size: 16px;
  color: #323232;
}
.privacy-content{
  font-size: 20px;
  color: #000;
  line-height: 140%;
}


@keyframes instaAuto {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

/* Animations when in view */
.in-view .big-number {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.4s;
}
.in-view .big-number.delay {
  transition-delay: 0.18s;
}
.in-view .num-text,
.in-view .num-para {
  transform: translateX(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.45s;
}

.map-section{
  height: 800px;
  /* background: url('../images/map-bg.png'); */
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.map-left-content{
  padding-left: 6% !important;
  width: 40% !important;
}
.map-left-content .section-title{
  margin-bottom: 20px;
}

.map-line{
  font-size: 20px;
  font-weight: 400;
  color: #000;
  line-height: 140%;
  margin-bottom: 40px;
}

.map-wrapper {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.world-map {
  width: 100%;
  border-radius: 10px;
}

/* Your hotspots */
.hotspot {
  position: absolute;
  width: 22px;
  cursor: pointer;
  transition: transform 0.2s;
}

.hotspot:hover {
  transform: scale(1.2);
}

/* Your exact positions */
.nigeria {
  top: 280px;
  right: 420px;
}

.india {
  top: 255px;
  right: 240px;
}

.pakistan {
  right: 270px;
  top: 230px; /* Pakistan had no top, added for safety */
}

.nepal {
  right: 220px;
  top: 224px;
}

.bangladesh {
  right: 210px;
  top: 250px;
}

.sri-lanka {
  right: 225px;
  top: 290px;
}

/* Tooltip styling */
#tooltip {
  position: absolute;
  width: 190px;
  background: #0E5E3F;
  color: white;
  padding: 18px 10px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.2);

  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100;
}

#tooltip .tooltip-title {
  font-size: 16px;
  margin: 0 0 6px;
  font-weight: 700;
  color: #FFC145;
  text-align: center;
}

#tooltip .tooltip-text {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
  text-align: center;
}

.mobile-matters-slider .slick-dots {
    text-align: center;
    margin-top: 20px;
}

.mobile-matters-slider .slick-dots li button:before {
    font-size: 10px;
    color: #D9D9D9; /* inactive */
    opacity: 1;
}

.mobile-matters-slider .slick-dots li.slick-active button:before {
    color: #FCB53D !important; /* active */
}

.about3content{
      display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0 60px !important;
}
.about3head{
  font-size: 22px;
  color: #000;
  font-weight: 600;
}

.about3content ul li:not(:last-of-type) {
  margin-bottom: 30px;
}

.about3content ul li{
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.aboutgreencontent{
      padding: 20px;
    background: #A9E249;
    border-radius: 20px;
}
.aboutgreencontent p{
      font-size: 15px;
    margin-bottom: 0;
    color: #000;
}

.image-wrapper {
  position: relative;
}

.image-wrapper .section-title {
  position: absolute;
  bottom: 20px;
  left: 40px;
  z-index: 3;
  color: white;
  /* font-size: 28px; */
  /* font-weight: 700; */
  margin-bottom: 0px !important;
}

.image-wrapper .image-overlay {
  position: relative;
}

.image-wrapper .image-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(0 0 0 / 10%) 0%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
  border-radius: 20px;
}

.image-wrapper img {
  display: block;
  width: 100%;
  height: 607px;
  object-fit:cover;
  z-index: 1;
  position: relative;
  border-radius: 20px;
}

.animated-text {
  display: inline-block;
  font-size: 60px;
  font-weight: 600;
  overflow: hidden;
}

.animated-text span {
  display: inline-block;
  opacity: 0;
  transform: translateY(50px);
}

/* Ensure italic remains italic after splitting */
.animated-text i {
  font-style: italic;
  font-weight:300;
}

/* Overlay */
.search-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.35); /* Slight grey overlay */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

/* Popup container */
.search-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

/* Search bar design */
.search-popup-box {
    background: #EEEEEE;
    border:2px solid #fff;
    width: 70vw;
    max-width: 700px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    padding: 0 20px;
    /* box-shadow: 0 10px 30px rgba(0,0,0,0.15); */
}

.search-popup-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 24px;
    background: #EEEEEE;
}

.search-popup-btn{
  border: none;
}

.search-popup-btn img {
    width: 30px;
}

/* Active class */
.show-popup {
    opacity: 1 !important;
    visibility: visible !important;
    /* transform: translate(-50%, -50%) scale(1) !important; */
}

#pledgePopup{
  position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.35); /* Slight grey overlay */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.padbox{
    padding-left:145px !important;
}

.nav-link.active-link,
.submenu a.active-link {
    color: #00663E !important;
}

.mobile-cards{
    display:none !important;
}
.icon-head{
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
}
.mob-footer{
    display:none;
}
.pom-box{
        width: 100px;
    position: fixed;
    bottom: 182px;
    right: 40px;
    z-index:999;
}
.pom-box img{
     width: 100%;
    border-radius: 50%;
    box-shadow: 0 0 11.4px rgba(255, 255, 255, 0.9);
    cursor:pointer;
}

/* ================================
   POPUP OVERLAY & CONTAINER
================================= */
#pledge-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    padding: 20px;
}
.two-field{
        flex-direction: row !important;
    gap: 20px;
}

.pledge-screen {
    display: none;
    background: #fff;
    width: 100%;
    max-width: 860px;
    padding: 40px 50px;
    max-height:90vh;
    min-height:80vh;
    /*overflow-y:scroll;*/
    border-radius: 20px;
    position: relative;
    box-sizing: border-box;
}
#pledge-screen-2{
    justify-content: center;
    align-items:center;
}
#pledge-screen-2.pledge-active {
    display: flex;
    animation: fadeIn 0.25s ease-out;
}
.pledge-screen.pledge-active {
    display: block;
    animation: fadeIn 0.25s ease-out;
}


@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.98); }
    to   { opacity: 1; transform: scale(1); }
}

/* Close button */
.pledge-close-btn {
    position: absolute;
    right: 25px;
    top: 25px;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    /*opacity: 0.6;*/
}

.pledge-close-btn:hover {
    opacity: 1;
}

/* ================================
   HEADINGS
================================= */
.pledge-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.3;
}

.pledge-highlight {
    color: #f4a223; /* orange keyword color */
}

/* ================================
   FORM LAYOUT
================================= */
.pledge-row {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.pledge-field {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pledge-field label {
    font-weight: 500;
    margin-bottom: 6px;
    font-size: 14px;
    color: #323232;
}
.pledge-field label span{
    font-size:12px;
    color:#979797;
}

/* Input fields */
.pledge-field input,
.pledge-field textarea {
    width: 100%;
    background: #f2f2f2;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 12px;
    outline: none;
    color:#979797;
}

.pledge-field textarea {
    min-height: 120px;
    resize: none;
}

.pledge-full {
    flex: 1 1 100%;
}

/* ================================
   RADIO BUTTONS
================================= */
.pledge-visiblity-group {
    margin-top: 0px;
    margin-bottom: 20px;
    width:47%;
}

.pledge-radio-title {
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 14px;
    color: #323232;
}

.pledge-radio {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
    gap: 10px;
    cursor: pointer;
}

.pledge-radio span{
        font-size: 12px;
    color: #323232;
}

.pledge-radio input[type="radio"] {
    accent-color: #000;  /* green */
    width: 18px;
    height: 18px;
}

/* ================================
   SUBMIT BUTTON
================================= */
.pledge-submit-btn {
    width: 220px;
    padding: 14px 0;
    background: #037e4f;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: 0.25s;
}

.pledge-submit-btn:hover {
    background: #025f3c;
}

/* ================================
   SUCCESS SCREEN
================================= */
.pledge-success-box {
    text-align: center;
    padding: 60px 20px;
}

.pledge-success-icon {
    width: 75px;
    height: 75px;
    /*margin: 0 auto 20px;*/
    background: #037e4f;
    color: #fff;
    border-radius: 50%;
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pledge-success-title {
    font-size: 25px;
    font-weight: 600;
    margin-bottom: 10px;
    color:#323232;
}

.pledge-success-subtitle {
    font-size: 25px;
    color: #FCB53D; /* orange subtitle */
    font-weight:600;
}

.pledge-success-icon-conatiner{
    display: inline-block;
    padding: 10px;
    border: 2px solid #00663E;
    border-radius: 50%;
    margin: 0 auto 20px;
}
}

/* Responsive (Mobile) */
@media (max-width: 600px) {
    .pledge-row {
        flex-direction: column;
    }

    .pledge-screen {
        padding: 30px 25px;
    }

    .pledge-title {
        font-size: 22px;
    }
}









