@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/***** General CSS *****/

:root {
  --bg-gray: #f9fafb;
  --border-color: #e5e7eb;
  --text-dark: #1f2937;
  --text-muted: #6b7280;
  --active-bg: #f3f4f6;
  --white: #ffffff;
  --shadow:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
  word-break: break-word;
  font:
    15px/25px "Poppins",
    sans-serif;
  color: #393939;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: #28b16d;
  white-space: initial;
}

a:hover,
a:focus {
  text-decoration: none;
  color: #393939;
}

a:hover {
  transition: all 0.5s ease-in-out;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
}

img {
  max-width: 100%;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  margin: 0 0 0px;
  padding: 0;
  list-style-type: none;
}

.sec {
  padding: 80px 0;
}

.heading0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 50px 0;
}

.heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 50px auto;
  gap: 20px;
  width: 60%;
  text-align: center;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type="number"] {
  -moz-appearance: textfield;
}

/***** Font Files *****/

@font-face {
  font-family: "Fonts Awesome";
  src: url(../fonts/fontawesome-webfont.eot);
  src:
    url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"),
    url(../fonts/fontawesome-webfont.woff) format("woff"),
    url(../fonts/fontawesome-webfont.ttf) format("truetype"),
    url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
  font-weight: 400;
  font-style: normal;
}

/***** Custom Classes *****/

.noPadding {
  padding: 0;
}

.noLeft {
  padding-left: 0;
}

.noRight {
  padding-right: 0;
}

.mt-5 {
  margin-top: 50px;
}

.mb-5 {
  margin-bottom: 50px;
}

.mt-8 {
  margin-top: 80px;
}

.mt-4 {
  margin-top: 40px;
}

.mt-3 {
  margin-top: 30px;
}

.mt-2 {
  margin-top: 20px;
}

.pt-5 {
  padding-top: 50px;
}

.pb-1 {
  padding-bottom: 10px;
}

.pb-2 {
  padding-bottom: 20px;
}

.pb-3 {
  padding-bottom: 30px;
}

.pb-4 {
  padding-bottom: 40px;
}

.pb-8 {
  padding-bottom: 80px;
}

.m-0 {
  margin: 0 !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-8 {
  padding-top: 80px;
}

.pt-4 {
  padding-top: 40px;
}

.pt-3 {
  padding-top: 30px;
}

.pt-2 {
  padding-top: 20px;
}

.all-section {
  padding: 80px 0;
}

.centerCol {
  float: none;
  margin: 0 auto;
}

.d-flex {
  display: flex;
  align-items: center;
}

.over-flow-h {
  overflow: hidden;
}

/* Buttons Css Starts */

.theme1 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 55px;
  border-radius: 100px;
  overflow: hidden;
  background-color: #007a55;
  border: 1px solid #fff;
  padding: 0 75px 0 20px;
  box-shadow: 0 0 20px 0 #00000057;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-txt {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat";
  color: #fff !important;
  text-transform: uppercase;
}

.theme1 span.theme1-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 50px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 3%;
  left: 71%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon {
  width: 96%;
  left: 2%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme1 span.theme1-icon i {
  color: #007a55 !important;
  rotate: 320deg;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme1:hover span.theme1-icon i {
  rotate: 0deg;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 45px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #007a55;
  border: 1px solid #fff;
  padding: 0 20px;
  box-shadow: 0 0 20px 0 #00000057;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover {
  background-color: #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-txt {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat";
  color: #fff !important;
  text-transform: uppercase;
}

.theme2 span.theme2-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 3%;
  left: 68%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon {
  width: 96%;
  left: 2%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme2 span.theme2-icon i {
  color: #007a55 !important;
  rotate: 320deg;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme2:hover span.theme2-icon i {
  rotate: 0deg;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 45px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #000;
  border: 1px solid #fff;
  padding: 0 20px;
  box-shadow: 0 0 20px 0 #00000057;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover {
  background-color: #fff;
  border: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-txt {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  font-family: "Montserrat";
  color: #fff !important;
  text-transform: uppercase;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-txt {
  color: #000 !important;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 60px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  position: absolute;
  top: 3%;
  left: 68%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-icon {
  width: 96%;
  left: 2%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme3 span.theme3-icon i {
  color: #007a55 !important;
  rotate: 320deg;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme3:hover span.theme3-icon i {
  rotate: 0deg;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 0 0 5px 0;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover {
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid #000;
  transition: ease-in;
  transition-duration: 0.5s;
}

.theme4:hover::before {
  width: 100%;
  transition: ease-out;
  transition-duration: 0.5s;
}

.theme4 span.theme4-txt {
  font-size: 18px;
  line-height: 1;
  color: #000;
}

.theme4 span.theme4-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
}

.theme4 span.theme4-icon i {
  color: #000;
  font-size: 14px;
  line-height: 1;
}

/* Buttons Css Ends */

.flexRow {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

.flexCol {
  -webkit-box-flex: 1;
  -moz-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  align-items: center;
}

h1 {
  font-family: "Oswald", sans-serif;
  font-size: 65px;
  line-height: 70px;
  color: #007a55;
  font-weight: 500;
  margin: 0;
  text-transform: uppercase;
}

h2 {
  font-family: "Oswald", sans-serif;
  font-size: 60px;
  line-height: 70px;
  color: #000;
  font-weight: 500;
  margin: 0;
}

h3 {
  font-family: "Oswald", sans-serif;
  font-size: 30px;
  line-height: 34px;
  color: #000000;
  font-weight: 600;
  margin: 0;
}

h4 {
  font-family: "Oswald", sans-serif;
  font-size: 24px;
  line-height: 29px;
  color: #393939;
  font-weight: 500;
  margin: 0;
}

h5 {
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  line-height: 25px;
  color: #393939;
  font-weight: 500;
  margin: 0;
}

h6 {
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  line-height: 23px;
  color: #393939;
  font-weight: 500;
  margin: 0;
}

p {
  color: #000;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  margin: 0;
}

select {
  background: #fff url("../images/arrow.png") no-repeat right;
  padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
  color: #575757;
}

::-moz-placeholder {
  color: #575757;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #575757;
}

:-moz-placeholder {
  color: #575757;
  opacity: 1;
}

/* header css start */

header {
  padding: 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.menuSec {
  padding: 0px 0;
}

.header-btn {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  flex-wrap: wrap;
}

.header-btn .theme1,
.header-btn .theme2 {
  flex-shrink: 0;
}

.header-btn .theme2 {
  min-width: 205px;
  padding: 0 72px 0 18px;
}

.header-btn .theme2 span.theme2-txt,
.header-btn .theme1 span.theme1-txt {
  color: #fff !important;
  position: relative;
  z-index: 2;
}

.header-btn .theme2 span.theme2-icon {
  left: auto;
  right: 2px;
}

/* .menuSec img {
    margin: 0;
} */

.menu-box ul {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* gap: 20px; */
  background-color: #fff;
  border-radius: 100px;
  height: 55px;
  overflow: hidden;
  padding: 3px;
}

.menu-box ul li {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0;
  height: 100%;
}

.menu-box li ul {
  display: none;
}

.menu-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 25px;
  font-family: "Montserrat";
  color: #000;
  font-weight: 600;
  border-radius: 100px;
  background-color: #fff;
  z-index: 0;
  overflow: hidden;
  transition: ease-in;
  transition-duration: 0.5s;
  /* transition-delay: 0.5s; */
}

.menu-box ul li a:hover {
  color: #fff;
  transition: ease-out;
  transition-duration: 0.5s;
}

/* .menu-box ul li a::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    left: 0;
    margin: 0 auto;
    width: 0;
    border-bottom: 1px solid #007a55;
    transition: ease-out;
    transition-duration: 0.5s;
    transition-delay: 0.5s;
    z-index: -1;
} */

/* .menu-box ul li a:hover::before {
    width: 100%;
    transition: ease-out;
    transition-duration: 0.5s;
} */

.menu-box ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 0;
  height: 100%;
  background-color: #007a55;
  transition: ease-out;
  transition-duration: 0.5s;
  z-index: -1;
}

.menu-box ul li a:hover::after {
  width: 100%;
  transition: ease-out;
  /* transition-delay: 0.5s; */
  transition-duration: 0.5s;
}

.menu-box ul li.active a {
  color: #fff;
}

.menu-box ul li.active a::after {
  width: 100%;
}

.menu-box ul li a.active {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  color: #28b16d;
}

.menu-box li:hover > ul {
  display: block;
  position: absolute;
  z-index: 1000;
  background-color: #000000;
  left: 0px;
  width: 230px;
  text-align: left;
  top: 38px;
}

.menu-box li > ul > li > a {
  border: none;
  padding: 13px 20px !important;
  color: #fff !important;
  overflow: hidden;
  font-size: 13px;
  line-height: 20px;
}

.menu-box li > ul > li,
.menu-box li > ul > li > a {
  display: block;
  margin: 0;
}

.menu-box li > ul > li > a:before,
.menu-box li > ul > li > a:after {
  display: none;
}

.menu-box li:hover li {
  float: none;
}

.menu-box li ul li a:hover {
  background-color: #ffffff;
  color: #000000 !important;
}

.menu-box ul ul ul {
  left: 100%;
  top: 0;
}

/* .menuSec ul:before,
.menuSec ul:after {
    content: "";
    display: table;
} */

/* .menuSec ul:after {
    clear: both;
} */

.menuSec li > ul > li:hover > ul {
  left: 230px;
  top: 0px;
  width: 270px;
}

.header-prof {
  display: flex;
  align-items: center;
  justify-content: right;
  height: 70px;
  width: 70px;
  border-radius: 100px;
  margin: 0 0 0 auto;
  overflow: hidden;
}

.header-prof a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.header-prof a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.header-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 50%;
  border-radius: 5px;
  overflow: hidden;
}

.header-logo a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  background-color: #fff;
  padding: 20px;
}

.header-logo a img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

/*header css start */

/*banner css start */

section.main_slider {
  /* height: 100vh; */
  overflow: hidden;
}

.carousel-item {
  height: 100vh;
}

.carousel-caption .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
  width: 100%;
  padding: 210px 0 0 0;
}

.banner-text-main {
  position: relative;
  padding: 60px 30px;
  border-radius: 10px;
  overflow: hidden;
}

.banner_text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.banner-text-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  filter: blur(20px);
}

.banner_text p {
  color: #000;
  width: 95%;
  margin: 0 auto 0 0;
}

.main-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-inner > .item > a > img,
.carousel-inner > .item > img {
  width: 100%;
}

.carousel-control.right,
.carousel-control.left {
  background: none;
  opacity: 1;
  width: 50px;
  height: 50px;
  top: initial;
  top: 40%;
  background: rgba(255, 255, 255, 0.1);
  text-shadow: none;
}

.carousel-control.right:hover,
.carousel-control.left:hover {
  background: rgba(255, 27, 27, 0.6);
  color: #fff;
}

.carousel-control.right .fa,
.carousel-control.left .fa {
  position: relative;
  top: 12px;
  font-size: 20px;
  color: #fff;
  opacity: 0.5;
}

.carousel-control.right {
  right: 0px;
}

.carousel-control.left {
  left: 0px;
}

.carousel-indicators {
}

.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 10px;
  height: 12px;
  padding: 0;
  margin: 3px !important;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 1;
  /* transition: opacity 0.6s ease; */
  border-radius: 20px;
}

.carousel-caption {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: left;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(0, 122, 85, 1) 0%,
    rgba(0, 122, 85, 0.38) 28%,
    rgba(0, 122, 85, 1) 100%
  );
}

.carousel-indicators li {
  border: none;
  border-radius: 100%;
  -webkit-border-radius: 100%;
  -moz-border-radius: 100%;
  background: #fff;
  width: 12px;
  height: 12px;
  margin: 0;
}

.carousel-indicators .active {
  margin: 0;
  background-color: #28b16d;
  width: 10px;
  height: 12px;
}

.banner-btn-main {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
}

/*banner css end*/

/*Inner Banner Css Starts*/

section.inner-banner .carousel-caption .container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: center;
  height: 100%;
  width: 100%;
  padding: 0;
}

section.inner-banner .carousel-item {
  height: 500px;
}

section.inner-banner .banner-text-main {
  padding: 20px;
}

/*Inner Banner Css Ends*/

/*Live Impact Dashboard Sec Css Starts*/

.lid-card-main {
  display: flex;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 20px;
  border: 1px solid #00000040;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.lid-card-main:hover {
  border: 1px solid #a4f4cf;
  background-color: #ecfdf5;
  transition: ease-out;
  transition-duration: 0.5s;
}

.lid-card-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.lid-card-txt .counter-txt {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.lid-card-txt h6 {
  font-size: 14px;
  line-height: 30px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Montserrat";
}

.lid-card-txt h5 {
  font-size: 30px;
  line-height: 35px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Oswald";
  color: #000;
}

.lid-card-txt .counter-txt .counter {
  font-size: 35px;
  line-height: 40px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Oswald";
  color: #000;
}

.lid-card-txt .counter-txt h6 {
  font-size: 35px;
  line-height: 40px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Oswald";
  color: #000;
}

.lid-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  width: 55px;
  background-color: #f3f4f6;
  border-radius: 5px;
  overflow: hidden;
  padding: 15px;
  transition: ease-in;
  transition-duration: 0.5s;
}

.lid-card-main:hover .lid-card-icon {
  background-color: #d0fae5;
  transition: ease-out;
  transition-duration: 0.5s;
}

.lid-card-icon img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
  transition: ease-in;
  transition-duration: 0.5s;
}

.lid-card-main:hover .lid-card-icon img {
  filter: brightness(0) saturate(100%) invert(35%) sepia(31%) saturate(1453%)
    hue-rotate(116deg) brightness(93%) contrast(101%);
  transition: ease-out;
  transition-duration: 0.5s;
}

/*Live Impact Dashboard Sec Css Ends*/

/*Active Causes Sec Css Starts*/

section.active-causes-sec {
  background-color: #f9fafb;
}

.active-causes-heading-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.active-causes-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  padding: 30px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #00000052;
  background-color: #fff;
  gap: 20px;
}

span.causes-tag {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 20px;
  border-radius: 100px;
  overflow: hidden;
  font-size: 14px;
  font-weight: 500;
  color: #000;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

span.causes-active {
  background-color: #d0fae5;
}

span.causes-closed {
  background-color: #e5e7eb;
}

.active-causes-card-tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.active-causes-card-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.active-causes-card-heading h4 {
  font-family: "Montserrat";
  color: #000;
  font-weight: 600;
  text-transform: capitalize;
  font-size: 21px;
  line-height: 30px;
}

.active-causes-card-loc {
  display: flex;
  align-items: center;
  justify-content: start;
}

.active-causes-card-loc a {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  color: #939393;
}

.active-causes-card-loc h5 {
  font-family: "Montserrat";
  color: #000;
  font-weight: 500;
  text-transform: capitalize;
  font-size: 17px;
  line-height: 25px;
  opacity: 0.7;
}

.active-causes-card-list {
  width: 100%;
}

.active-causes-card-list ul {
  width: 90%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.active-causes-card-list ul li .active-causes-card-list-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
  padding: 10px;
  background-color: #f9fafb;
  border-radius: 10px;
}

.active-causes-card-list-icon-txt {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.active-causes-card-list-icon-txt img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  object-fit: contain;
}

.active-causes-card-list ul li .active-causes-card-list-txt h5 {
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 1;
  color: #000;
  opacity: 0.7;
}

.active-causes-card-list ul li .active-causes-card-list-txt h6 {
  font-family: "Oswald";
  font-size: 18px;
  line-height: 1;
  color: #000;
  font-weight: 600;
}

.active-causes-card-progress-main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.active-causes-card-progress-txt {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.active-causes-card-progress-txt h6 {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 1;
  color: #000;
}

.active-causes-card-progress-txt h5 {
  font-family: "Montserrat";
  font-size: 14px;
  line-height: 1;
  color: #08be63;
}

.active-causes-card-progress-bar {
  width: 100%;
}

.active-causes-card-progress-bar .progress {
  height: 10px;
}

.active-causes-card-progress-bar .progress .progress-bar {
  background-color: #009966;
}

.active-causes-card-btn {
  width: 100%;
}

.active-causes-card-btn a {
  width: 100%;
}

/*Active Causes Sec Css Ends*/

/*Recent Verified Donations Sec Css Starts*/

section.rvd-sec {
  /* background-color: #f9fafb; */
}

.rvd-card-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  padding: 20px;
  border: 1px solid #00000040;
  border-radius: 10px;
  overflow: hidden;
  height: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.rvd-card-top-main {
  width: 100%;
}

.rvd-card-top-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  width: 100%;
}

.rvd-card-top-heading-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.rvd-card-bottom-txt-main {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.counter-txt {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 5px;
}

.rvd-card-bottom-txt {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 5px;
}

.rvd-card-top-heading-txt h5 {
  font-size: 20px;
  line-height: 25px;
  font-family: "Montserrat";
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
}

.rvd-card-top-heading-txt h6 {
  font-size: 16px;
  line-height: 1;
  font-family: "Montserrat";
  text-transform: capitalize;
  font-weight: 500;
  color: #000;
}

.rvd-card-bottom-txt-main .counter-txt .counter,
.rvd-card-bottom-txt-main .counter-txt h6 {
  font-size: 35px;
  line-height: 40px;
  text-transform: capitalize;
  font-weight: 500;
  font-family: "Oswald";
  color: #007a55;
}

.rvd-card-top-heading-icon i {
  font-size: 20px;
  color: #007a55;
}

/*Recent Verified Donations Sec Css Ends*/

/*Built on Trust & Transparency Sec Css Starts*/

section.trust-sec {
  background-color: #ecfdf5;
}

.trust-card-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 20px;
}

.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  width: 70px;
  background-color: #d0fae5;
  border-radius: 100px;
}

.trust-card-icon i {
  font-size: 30px;
  color: #007a55;
}

.trust-card-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/*Built on Trust & Transparency Sec Css Ends*/

/*Footer Sec Css Starts*/

footer {
  padding: 80px 0 0 0;
  margin: 80px 0 0 0;
  box-shadow: 0 0 20px 0 #00000012;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  width: 100px;
  overflow: hidden;
}

.footer-logo img {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.footer-heading h5 {
  font-size: 30px;
  line-height: 35px;
  color: #000;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}

.footer-link ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.footer-link ul li a {
  display: flex;
  align-items: center;
  justify-content: start;
  font-size: 16px;
  line-height: 1;
  color: #000;
  font-weight: 400;
}

.footer-copy {
  padding: 20px 0;
  margin: 50px 0 0 0;
  border-top: 1px solid #0000002b;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-copy-txt p {
  font-size: 18px;
  line-height: 1;
  color: #000;
  font-weight: 500;
}

.footer-copy-txt p a {
  position: relative;
  font-size: 18px;
  line-height: 1;
  color: #000;
  font-weight: 500;
  transition: ease-in;
  transition-duration: 0.5s;
}

.footer-copy-txt p a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  border-bottom: 1px solid #000;
  transition: ease-out;
  transition-duration: 0.5s;
}

.footer-copy-txt p a:hover::before {
  width: 100%;
  transition: ease-in;
  transition-duration: 0.5s;
}

.active-causes-tabs-wrap {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  width: 100%;
  height: 100%;
}

.active-causes-tabs-btns {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  width: 100%;
}

.active-causes-tabs-btns ul {
  display: flex;
  align-items: center;
  justify-content: start;
  gap: 10px;
  margin: 0 !important;
  width: 100%;
}

.active-causes-tabs-btns ul li .nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 20px;
  border-radius: 5px;
  overflow: hidden;
  background-color: #ffffff;
  border: 1px solid #00000030;
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  outline: none;
}

.active-causes-tabs-btns ul li .nav-link.active {
  background-color: #007a55;
  border: 1px solid #0000;
}

.active-causes-tabs-content {
  display: flex;
  align-items: start;
  justify-content: start;
  width: 100%;
}

.active-causes-tabs-content .tab-content {
  width: 100%;
}

/*Footer Sec Css Ends*/

/*Incidentm Details Sec Css Starts*/

.categories-card {
  background-color: #ffffff;
  width: 100%;
  padding: 40px;
  border-radius: 20px;
  box-shadow:
    0 4px 6px -1px rgba(0, 0, 0, 0.05),
    0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
}

.categories-chat .categories-card h5 {
  margin: 0 0 32px 0;
  font-size: 20px;
  font-weight: 700;
  color: #111827;
}

.categories-chat .chart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .categories-chat .chart-layout {
    grid-template-columns: 1fr 1fr;
  }
}

.categories-chat .chart-wrapper {
  position: relative;
  height: 250px;
  width: 100%;
  max-width: 400px;
}

.categories-chat .legend-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.categories-chat .category-legend-item {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.2s ease;
  border: 1px solid transparent;
}

.categories-chat .category-legend-item:hover {
  background-color: #f3f4f6;
  transform: translateX(5px);
  border-color: #e5e7eb;
}

.categories-chat .item-info {
  display: flex;
  align-items: center;
}

.categories-chat .color-box {
  width: 12px;
  height: 12px;
  border-radius: 4px;
  margin-right: 12px;
}

/* Color assignments */
.categories-chat .bg-green {
  background-color: #10b981;
}

.categories-chat .bg-blue {
  background-color: #3b82f6;
}

.categories-chat .bg-orange {
  background-color: #f59e0b;
}

.categories-chat .label {
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}

.categories-chat .value {
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.categories-chat {
  padding: 24px;
  margin: 36px 0px;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

.categories-chat h5 {
  margin-bottom: 20px;
}

.incident-details-impact-overview-box {
  padding: 24px;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

.supporting-box .ngo-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.supporting-box .ngo-item {
  display: flex;
  padding: 16px;
  align-items: center;
  border-radius: 16px;
  transition: all 0.2s ease;
  background-color: #fbf9fa;
  border: 1px solid transparent;
  justify-content: space-between;
}

.supporting-box .ngo-item:hover {
  background-color: #f3f4f6;
  transform: translateY(-2px);
}

.supporting-box .ngo-main {
  display: flex;
  align-items: center;
  gap: 16px;
}

.supporting-box .ngo-icon {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e7eb;
  color: #059669;
}

.supporting-box .ngo-info h6 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #111827;
}

.supporting-box .ngo-info p {
  margin: 2px 0 0 0;
  font-size: 13px;
  color: #6b7280;
}

/* Verified Badge */
.supporting-box .verified-badge {
  background-color: transparent;
  color: #007a55;
  border: 1px solid #a4f4cf;
  padding: 0px 8px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.supporting-box {
  padding: 24px;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

.supporting-box > h5 {
  margin-bottom: 20px;
}

.incident-details-impact-overview-box {
  margin-bottom: 40px;
}

.incident-details-impact-overview-card-main {
  background-color: #f9fafb;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  transition: transform 0.2s ease;
}

/* Highlight the 3rd card (Funds Collected) as per image */
.col-xl-4:last-child .incident-details-impact-overview-card-main {
  background-color: #f0fdf4;
  /* Light green */
  border: 1px solid #dcfce7;
}

.incident-details-impact-overview-card-icon {
  margin-bottom: 12px;
  opacity: 0.7;
}

.incident-details-impact-overview-card-icon img {
  width: 32px;
  height: auto;
}

.incident-details-impact-overview-card-txt p {
  margin: 0 0 8px 0;
  font-size: 13px;
  font-weight: 500;
  color: #6b7280;
}

.incident-details-impact-overview-card-txt h5 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #111827;
  letter-spacing: -0.02em;
}

/* Value color for green card */
.col-xl-4:last-child .incident-details-impact-overview-card-txt h5 {
  color: #166534;
}

/* --- Progress Bar Styling --- */
.active-causes-card-progress-main {
  margin-top: 24px;
}

.active-causes-card-progress-txt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.active-causes-card-progress-txt h6 {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #4b5563;
}

.active-causes-card-progress-txt h5 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: #059669;
  /* Green color from image */
}

.progress {
  height: 12px;
  background-color: #f1f5f9;
  border-radius: 100px;
  overflow: hidden;
  width: 100%;
}

.progress-bar {
  background-color: #059669;
  height: 100%;
  border-radius: 100px;
  transition: width 1s ease-in-out;
}

/* ===== Incident Header (Top) ===== */
.incident-breadcrumb {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
}
.incident-breadcrumb span {
  margin: 0 6px;
  opacity: 0.6;
}

.incident-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
  /* flex-wrap: wrap; */
}

.incident-top-left {
  /* flex: 1; */
  /* min-width: 280px; */
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 10px;
}

.incident-top-right {
  flex: 0 0 auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
}

/* Title sizing like image */
.incident-title h2 {
  font-size: 44px;
  line-height: 1.05;
  margin: 10px 0 10px 0;
}

/* Meta line */
.incident-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 0 0 12px 0;
  flex-wrap: wrap;
}
.incident-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #6b7280;
  font-family: "Montserrat";
  font-size: 13px;
}
.incident-meta li i {
  color: #6b7280;
}
.incident-desc {
  color: #4b5563;
  font-size: 14px;
  line-height: 22px;
  max-width: 920px;
}

/* Small top donate button variant */
.theme1.theme1--sm {
  height: 44px;
  padding: 0 58px 0 16px;
  box-shadow: none;
}
.theme1.theme1--sm span.theme1-icon {
  height: 40px;
  width: 40px;
  left: 72%;
}

/* ===== Sidebar ===== */
.incident-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Card base */
.incident-side-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  padding: 18px;
}

.incident-side-card h5 {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #111827;
}

.incident-side-card p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 14px;
  line-height: 18px;
}

/* Make a Difference green tint like image */
.make-difference {
  background: #ecfdf5;
  border-color: #a4f4cf;
}

/* Recent donations */
.recent-donations .donation-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid #e5e7eb;
}
.recent-donations .donation-item:first-of-type {
  border-top: none;
  padding-top: 0;
}
.donation-left h6 {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 6px 0;
  color: #111827;
}
.donation-left p {
  margin: 0;
  font-size: 12px;
  color: #6b7280;
}
.donation-left p strong {
  color: #007a55;
  font-weight: 700;
}
.donation-right span {
  font-size: 11px;
  font-family: "Montserrat";
  color: #9ca3af;
  white-space: nowrap;
}

/* Green card in Impact Overview */
.incident-details-impact-overview-card-main.is-green {
  background-color: #f0fdf4;
  border: 1px solid #dcfce7;
}
.incident-details-impact-overview-card-main.is-green
  .incident-details-impact-overview-card-txt
  h5 {
  color: #166534;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .incident-title h2 {
    font-size: 34px;
  }
  .incident-top-right {
    width: 100%;
    justify-content: flex-start;
  }
  .theme1.theme1--sm {
    width: max-content;
  }
}
@media (max-width: 575px) {
  .incident-title h2 {
    font-size: 28px;
  }
}

/*Incidentm Details Sec Css Ends*/

/*Donation Wall Page Css Starts*/

.donation-wall-box {
  gap: 12px;
  padding: 24px;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  align-items: center;
  background-color: #fff;
  justify-content: flex-start;
  border: 1px solid #e5e5e5;
}

.donation-wall-box h4 span {
  display: block;
  font-size: 14px;
  color: #4a5565;
  font-family: "Poppins";
}

.donation-wall-box i {
  height: 48px;
  width: 48px;
  display: flex;
  font-size: 24px;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}

.donation-wall-box i.fa-circle-check {
  color: #007a55;
  background-color: #d0fae5;
}

.donation-wall-box i.fa-user {
  color: #1447e6;
  background-color: #dbeafe;
}

.donation-wall-box i.fa-building {
  color: #8200db;
  background-color: #f3e8ff;
}

.donation-filters-select {
  position: relative;
  width: 100%;
}

.donation-filters-box {
  padding: 24px;
  margin: 40px 0px;
  border-radius: 12px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
}

.filter-clare-btn button {
  border: none;
  font-size: 14px;
  padding: 4px 7px;
  border-radius: 6px;
  transition: ease-in;
  transition-duration: 0.5s;
  background-color: transparent;
}

.filter-clare-btn button:hover {
  color: #030213;
  transition: ease-in-out;
  transition-duration: 0.5s;
  background-color: #e9ebef;
}

.donation-filters-box-txt {
  gap: 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.donation-filters-box-txt i {
  color: #4a5565;
  font-size: 20px;
}

.select-header {
  display: flex;
  cursor: pointer;
  user-select: none;
  padding: 10px 16px;
  border-radius: 10px;
  align-items: center;
  transition: all 0.2s ease;
  justify-content: space-between;
  background-color: var(--bg-gray);
}

.select-header:hover {
  border-color: #d1d5db;
}

.select-header span {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
}

.chevron-icon {
  width: 18px;
  height: 18px;
  color: #9ca3af;
  transition: transform 0.3s ease;
}

.donation-filters-select {
  margin-bottom: 16px;
}

/* Dropdown Menu */
.select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  box-shadow: var(--shadow);
  z-index: 50;
  padding: 4px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.donation-filters-select.open .select-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.donation-filters-select.open .chevron-icon {
  transform: rotate(180deg);
}

/* Individual Options */
.select-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 2px;
}

.select-option:last-child {
  margin-bottom: 0;
}

.select-option:hover {
  background-color: #f8fafc;
}

.select-option span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}

/* Selected State */
.select-option.active {
  background-color: var(--active-bg);
}

.check-icon {
  width: 16px;
  height: 16px;
  color: #6b7280;
  display: none;
}

.select-option.active .check-icon {
  display: block;
}

.donation-list-box-txt {
  padding: 24px;
  border-radius: 15px;
  border: 1px solid #e5e5e5;
  background-color: var(--white);
}

.donation-list-box-txt {
  gap: 25px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.donation-list-box-txt-detail {
  gap: 16px;
  display: flex;
  align-items: baseline;
  justify-content: flex-start;
}

.donation-list-box-txt-detail .fa-circle-check {
  width: 32px;
  height: 32px;
  display: flex;
  color: #007a55;
  font-size: 10px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background-color: #d0fae5;
}

.donation-list-box-txt-detail h5 {
  margin-bottom: 5px;
}

.donation-list-box-txt-detail h6 {
  font-size: 14px;
  margin-bottom: 5px;
  font-family: "Montserrat";
}

.donation-list-box-txt-detail h6 span {
  color: #007a55;
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 8px;
  border: 1px solid #a4f4cf;
}

.donation-list-box-txt-detail p {
  font-size: 14px;
  color: #4a5565;
}

.donation-list-box-txt-detail p span {
  font-weight: 600;
}

.donation-list-box-txt h2 {
  font-size: 30px;
  font-weight: 700;
  color: #007a55;
  font-family: "Poppins";
}

/*Donation Wall Page Css Ends*/

/*Impact & Transparency Page Css Starts*/
section.impact-transparency-sec {
  background-color: #f9fafb;
}
.impact-transparency-heading {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
  margin: 0 0 20px 0;
}
.impact-stat-card,
.impact-card,
.ngo-card,
.use-card,
.commitment-card,
.achieved-card {
  transition: all 0.25s ease;
}
.impact-stat-card:hover,
.ngo-card:hover,
.use-card:hover,
.commitment-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #a4f4cf;
}
.impact-stat-card:hover {
  background: #ecfdf5;
}
.ngo-card:hover .ngo-verified {
  background: #d0fae5;
}
.use-card:hover {
  background: #fff;
}

.impact-stats-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.impact-stat-card {
  flex: 1;
  min-width: 260px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.impact-stat-card--active {
  border: 1px solid #a4f4cf;
  background: #ecfdf5;
}
.impact-stat-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.impact-stat-ic {
  height: 44px;
  width: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.25s ease;
}
.impact-ic--green {
  background: #d0fae5;
  color: #007a55;
}
.impact-ic--blue {
  background: #dbeafe;
  color: #1447e6;
}
.impact-ic--purple {
  background: #f3e8ff;
  color: #8200db;
}
.impact-stat-card:hover .impact-stat-ic {
  transform: scale(1.06);
}
.impact-stat-txt p {
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 1.2;
  color: #4a5565;
  margin: 0 0 6px;
}
.impact-stat-txt h5 {
  font-family: "Oswald";
  font-size: 22px;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.impact-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
}
.impact-card-head h4 {
  font-family: "Montserrat";
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #000;
  margin: 0 0 14px;
}

#impactChart.impact-chart-wrap {
  display: flex;
  gap: 18px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 18px;
  width: 100%;
  max-width: 100%;
}
#impactChart .impact-y-axis {
  width: 95px;
  position: relative;
  padding-right: 14px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #6b7280;
  font-family: "Montserrat";
  font-size: 12px;
  line-height: 1;
  border-right: 2px solid #9ca3af;
  height: 320px;
  flex: 0 0 auto;
}
#impactChart .impact-y-axis .impact-y-tick {
  position: relative;
  display: inline-block;
  padding-right: 10px;
}
#impactChart .impact-y-axis .impact-y-tick::after {
  content: "";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 2px;
  background: #9ca3af;
}
#impactChart .impact-y-axis .impact-y-label {
  position: absolute;
  left: -62px;
  top: 50%;
  transform: rotate(-90deg) translateY(-50%);
  transform-origin: left center;
  white-space: nowrap;
  color: #6b7280;
  font-size: 12px;
}

#impactChart .impact-bars-area {
  --xpad: 36px;
  position: relative;
  flex: 1 1 auto;
  height: 320px;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 12px var(--xpad) 12px;
  overflow: hidden;
  min-width: 0;
}
#impactChart .impact-bars-area::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--xpad);
  height: 2px;
  background: #9ca3af;
  z-index: 1;
  pointer-events: none;
}
#impactChart .impact-grid {
  position: absolute;
  inset: 0 0 var(--xpad) 0;
  pointer-events: none;
  z-index: 0;
}
#impactChart .impact-hline {
  position: absolute;
  left: 0;
  right: 0;
  bottom: var(--p);
  border-top: 1px dashed #d1d5db;
  opacity: 0.95;
}

#impactChart .impact-bar-col {
  position: relative;
  flex: 1 1 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 0 10px;
  z-index: 2;
}
#impactChart .impact-bar-col + .impact-bar-col {
  border-left: 1px dotted #d1d5db;
}
#impactChart .impact-bar-col::before {
  content: "";
  position: absolute;
  left: 6px;
  right: 6px;
  top: 0;
  bottom: var(--xpad);
  background: #e5e7eb;
  opacity: 0;
  border-radius: 6px;
  transition: opacity 0.2s ease;
  z-index: 0;
}
#impactChart .impact-bar-col.is-active::before,
#impactChart .impact-bar-col:hover::before {
  opacity: 0.85;
}

#impactChart .impact-bar-pair {
  position: relative;
  z-index: 2;
  height: calc(100% - var(--xpad));
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
}
#impactChart .impact-bar {
  height: var(--h, 0%);
  width: min(110px, 45%);
  border-radius: 0;
  transform: scaleY(0);
  transform-origin: bottom;
  transition:
    transform 0.6s ease,
    filter 0.2s ease,
    opacity 0.2s ease;
  display: block;
}
#impactChart.is-ready .impact-bar {
  transform: scaleY(1);
}
#impactChart .impact-bar--need {
  background: #9ca3af;
  margin-right: 2px;
}
#impactChart .impact-bar--collected {
  background: #10b981;
}
#impactChart .impact-bar-col:hover .impact-bar {
  filter: brightness(0.97);
}

#impactChart .impact-bar-col p {
  position: absolute;
  bottom: 8px;
  z-index: 3;
  font-family: "Montserrat";
  font-size: 12px;
  color: #4a5565;
  margin: 0;
  white-space: nowrap;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
}

#impactChart .impact-tooltip {
  position: absolute;
  top: 0;
  left: 0;
  min-width: 170px;
  max-width: 220px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  z-index: 20;
  transition: opacity 0.15s ease;
  transform: translate(10px, 10px);
}
#impactChart .impact-tooltip.show {
  opacity: 1;
}
#impactChart .impact-tooltip-title {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 700;
  color: #000;
  margin: 0 0 8px;
}
#impactChart .impact-tooltip-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: "Montserrat";
  font-size: 12px;
  margin-bottom: 6px;
}
#impactChart .impact-tooltip-row:last-child {
  margin-bottom: 0;
}
#impactChart .impact-tooltip-prefix {
  font-weight: 700;
}
#impactChart .impact-tooltip-row--need {
  color: #9ca3af;
}
#impactChart .impact-tooltip-row--col {
  color: #10b981;
}

.impact-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.legend-item {
  font-family: "Montserrat";
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  user-select: none;
  padding: 4px 8px;
  border-radius: 8px;
  transition:
    background 0.2s ease,
    opacity 0.2s ease;
}
.legend-item:hover {
  background: #f3f4f6;
}
.legend-item.is-off {
  opacity: 0.45;
}
.legend-dot {
  height: 10px;
  width: 10px;
  border-radius: 2px;
  display: inline-block;
}
.legend-dot--need {
  background: #9ca3af;
}
.legend-dot--collected {
  background: #10b981;
}
.legend-item:first-child {
  color: #9ca3af;
}
.legend-item:last-child {
  color: #10b981;
}
#impactChart.hide-need .impact-bar--need {
  opacity: 0.18;
}
#impactChart.hide-collected .impact-bar--collected {
  opacity: 0.18;
}

.impact-block-title {
  margin: 28px 0 14px;
}
.impact-block-title h3 {
  font-family: "Oswald";
  font-size: 26px;
  line-height: 1.2;
  color: #000;
  margin: 0;
}

.ngo-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 16px;
  height: 100%;
}
.ngo-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  width: 100%;
}
.ngo-name {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.ngo-name i {
  color: #007a55;
  margin-top: 3px;
}
.ngo-name h5 {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 700;
  color: #000;
  margin: 0;
}
.ngo-name p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin: 2px 0 0;
}
.ngo-verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #a4f4cf;
  background: #ecfdf5;
  color: #007a55;
  font-family: "Montserrat";
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 100px;
  white-space: nowrap;
}
.ngo-stats {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
  width: 100%;
}
.ngo-stat {
  background: #f9fafb;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}
.ngo-stat p {
  font-family: "Montserrat";
  font-size: 11px;
  color: #6b7280;
  margin: 0 0 6px;
}
.ngo-stat h6 {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  color: #007a55;
  margin: 0;
}
.ngo-foot {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: #ecfdf5;
  border: 1px solid #a4f4cf;
  width: 100%;
}
.ngo-foot i {
  color: #007a55;
}
.ngo-foot p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #007a55;
  margin: 0;
}

.achieved-card {
  background: linear-gradient(
    180deg,
    rgba(237, 253, 246, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  border-radius: 12px;
  padding: 30px;
  border: 1px solid #007a5594;
}
.achieved-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.achieved-head i {
  color: #007a55;
}
.achieved-head h4 {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  color: #000;
  margin: 0;
}
.achieved-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.achieved-left {
  padding-right: 18px;
  border-right: 1px solid #a4f4cf;
}
.achieved-left h6,
.achieved-right h6 {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  color: #000;
  margin: 0 0 12px;
}

.dist-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #a4f4cf;
}
.dist-item:last-child {
  border-bottom: none;
}
.dist-left h5 {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #000;
}
.dist-left p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}
.dist-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}
.dist-right h6 {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  color: #007a55;
  margin: 0;
}
.dist-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 100px;
  font-family: "Montserrat";
  font-size: 11px;
  font-weight: 700;
  border: 1px solid transparent;
}
.dist-tag--active {
  background: #d0fae5;
  color: #007a55;
  border-color: #a4f4cf;
}
.dist-tag--closed {
  background: #e5e7eb;
  color: #4a5565;
  border-color: #d1d5db;
}

.use-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 10px;
}
.use-card:last-child {
  margin-bottom: 0;
}
.use-card h5 {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 600;
  color: #000;
  margin: 0 0 5px;
}
.use-card p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

.commitment-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 18px;
}
.commitment-card h4 {
  font-family: "Montserrat";
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
  color: #000;
}
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.commitment-item {
  border-radius: 12px;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  text-align: center;
  padding: 16px 10px;
}
.commitment-item:hover {
  background: #ecfdf5;
  border: 1px solid #a4f4cf;
  box-shadow: var(--shadow);
}
.commitment-ic {
  height: 56px;
  width: 56px;
  border-radius: 100px;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.25s ease;
}
.commitment-item:hover .commitment-ic {
  transform: scale(1.06);
}
.commitment-ic--green {
  background: #d0fae5;
  color: #007a55;
}
.commitment-ic--blue {
  background: #dbeafe;
  color: #1447e6;
}
.commitment-ic--purple {
  background: #f3e8ff;
  color: #8200db;
}
.commitment-item h6 {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 8px;
  color: #000;
}
.commitment-item p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #impactChart .impact-y-axis {
    height: 280px;
  }
  #impactChart .impact-bars-area {
    height: 280px;
    min-height: 280px;
    --xpad: 34px;
  }
  .achieved-grid {
    grid-template-columns: 1fr;
  }
  .achieved-left {
    border-right: none;
    padding-right: 0;
    border-bottom: 1px solid #a4f4cf;
    padding-bottom: 14px;
    margin-bottom: 14px;
  }
  .commitment-grid {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 520px) and (max-width: 767px) {
  #impactChart.impact-chart-wrap {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  #impactChart .impact-y-axis {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 2px solid #9ca3af;
    padding: 0 0 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  #impactChart .impact-y-axis .impact-y-tick {
    padding-right: 0;
    flex: 1;
    text-align: center;
  }
  #impactChart .impact-y-axis .impact-y-tick::after {
    display: none;
  }
  #impactChart .impact-y-axis .impact-y-label {
    display: none;
  }
  #impactChart .impact-bars-area {
    height: 260px !important;
    min-height: 260px !important;
    --xpad: 44px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px var(--xpad) 8px;
  }
  #impactChart .impact-bar-col {
    flex: 0 0 190px;
    padding: 0 8px;
  }
  #impactChart .impact-bar {
    transform: scaleY(1) !important;
  }
  .impact-legend {
    gap: 10px;
  }
}

@media only screen and (min-width: 300px) and (max-width: 519px) {
  .impact-stat-card {
    min-width: 100%;
  }
  .ngo-stats {
    grid-template-columns: 1fr;
  }
  #impactChart.impact-chart-wrap {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  #impactChart .impact-y-axis {
    width: 100%;
    height: auto;
    border-right: none;
    border-bottom: 2px solid #9ca3af;
    padding: 0 0 10px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    font-size: 11px;
  }
  #impactChart .impact-y-axis .impact-y-tick {
    padding-right: 0;
    flex: 1;
    text-align: center;
  }
  #impactChart .impact-y-axis .impact-y-tick::after {
    display: none;
  }
  #impactChart .impact-y-axis .impact-y-label {
    display: none;
  }
  #impactChart .impact-bars-area {
    height: 240px !important;
    min-height: 240px !important;
    --xpad: 46px;
    overflow-x: auto;
    overflow-y: hidden;
    justify-content: flex-start;
    -webkit-overflow-scrolling: touch;
    padding: 0 8px var(--xpad) 8px;
  }
  #impactChart .impact-bar-col {
    flex: 0 0 175px;
    padding: 0 8px;
  }
  #impactChart .impact-bar {
    width: 48%;
    transform: scaleY(1) !important;
  }
  #impactChart .impact-bar-col p {
    font-size: 11px;
    bottom: 10px;
    max-width: 160px;
    text-align: center;
  }
  .impact-legend {
    gap: 10px;
  }
  .legend-item {
    font-size: 11px;
  }
}

/*Impact & Transparency Page Css Ends*/

/*Donation Page Css Starts*/

.donation-sec {
  background: #ffffff;
}

.donation-topbar {
  display: flex;
  justify-content: start;
  margin-bottom: 16px;
}

.donation-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Montserrat";
  font-size: 13px;
  color: #111827;
  padding: 8px 12px;
  border-radius: 10px;
  transition: all 0.2s ease;
}
.donation-back i {
  color: #111827;
  font-size: 14px;
}
.donation-back:hover {
  background: #f3f4f6;
  transform: translateY(-1px);
}

.donation-page-head {
  text-align: center;
  justify-content: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  margin: 0 0 30px 0;
}
.donation-page-head h2 {
  font-family: "Oswald";
  font-size: 46px;
  line-height: 1.1;
  margin: 0 0 6px 0;
  color: #111827;
}
.donation-page-head p {
  font-family: "Montserrat";
  font-size: 14px;
  color: #6b7280;
}

.donation-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.donation-form-card {
  padding: 18px 18px 16px;
}

.donation-card-head h5 {
  font-family: "Montserrat";
  font-size: 14px;
  font-weight: 800;
  margin: 0 0 6px 0;
  color: #111827;
}
.donation-card-head p {
  font-family: "Montserrat";
  font-size: 12px;
  color: #6b7280;
  margin: 0 0 14px 0;
}

.donation-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.donation-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.donation-label {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 700;
  color: #111827;
}
.req {
  color: #dc2626;
}

.donation-input {
  height: 44px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f9fafb;
  padding: 0 14px;
  font-family: "Montserrat";
  font-size: 13px;
  color: #111827;
  transition: all 0.2s ease;
}
.donation-input:focus {
  background: #fff;
  border-color: #a4f4cf;
  box-shadow: 0 0 0 4px rgba(164, 244, 207, 0.35);
}
.donation-help {
  font-family: "Montserrat";
  font-size: 11px;
  color: #9ca3af;
}

/* NGO Select Cards */
.ngo-select-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.ngo-radio-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.ngo-card {
  display: flex;
  align-items: center;
  justify-content: start;
  /* flex-direction: column; */
  gap: 14px;
  padding: 14px 14px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  background: #fff;
  width: 100%;
  cursor: pointer;
  transition: all 0.2s ease;
}
section.impact-transparency-sec .ngo-card {
  flex-direction: column;
}
.ngo-card:hover {
  background: #f9fafb;
  transform: translateY(-1px);
  border-color: #d1d5db;
}

.ngo-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ngo-ic {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007a55;
  transition: all 0.2s ease;
}
.ngo-card:hover .ngo-ic {
  background: #d0fae5;
  border-color: #a4f4cf;
  transform: scale(1.03);
}

.ngo-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.ngo-name {
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}
.ngo-sub {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.ngo-badge {
  font-family: "Montserrat";
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  color: #007a55;
  background: #ecfdf5;
  border: 1px solid #a4f4cf;
}
.ngo-bank {
  font-family: "Montserrat";
  font-size: 11px;
  color: #6b7280;
}

.ngo-dot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  border: 2px solid #d1d5db;
  background: #fff;
  transition: all 0.2s ease;
}

/* Selected NGO state */
.ngo-radio-card input:checked + .ngo-card {
  border-color: #a4f4cf;
  background: #ecfdf5;
}
.ngo-radio-card input:checked + .ngo-card .ngo-dot {
  border-color: #007a55;
  background: #007a55;
  box-shadow: 0 0 0 4px rgba(0, 122, 85, 0.15);
}

/* Checkbox */
.donation-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  user-select: none;
}
.donation-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check-ui {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}
.donation-check:hover .check-ui {
  background: #f3f4f6;
}
.donation-check input:checked + .check-ui {
  background: #007a55;
  border-color: #007a55;
}
.donation-check input:checked + .check-ui::after {
  content: "";
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 2px;
}
.check-text {
  font-family: "Montserrat";
  font-size: 12px;
  color: #111827;
}

/* Dropzone */
.donation-dropzone {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.donation-dropzone:hover {
  background: #f9fafb;
  border-color: #a4f4cf;
  transform: translateY(-1px);
}
.donation-dropzone input[type="file"] {
  display: none;
}
.dz-ic {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  color: #007a55;
}
.dz-title {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 800;
  color: #111827;
}
.dz-sub {
  font-family: "Montserrat";
  font-size: 11px;
  color: #6b7280;
}
.dz-filename {
  font-family: "Montserrat";
  font-size: 11px;
  color: #007a55;
  font-weight: 700;
}

/* Submit */
.donation-submit {
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #007a55;
  color: #fff;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.2s ease;
}
.donation-submit:hover {
  filter: brightness(0.95);
  transform: translateY(-1px);
  box-shadow: 0 10px 18px -10px rgba(0, 122, 85, 0.7);
}
.donation-submit:active {
  transform: translateY(0px);
}

/* Sidebar */
.donation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.donation-side-card {
  padding: 16px;
}

.donation-side-green {
  background: #ecfdf5;
  border-color: #a4f4cf;
}

.donation-side-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.donation-side-head h5 {
  margin: 0;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}
.side-ic {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: #d0fae5;
  border: 1px solid #a4f4cf;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #007a55;
}
.side-ic-muted {
  background: #f3f4f6;
  border-color: #e5e7eb;
  color: #111827;
}

/* Steps + Trust list */
.verify-steps {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Montserrat";
  font-size: 12px;
  color: #374151;
}
.verify-steps li {
  line-height: 18px;
}

.trust-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.trust-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-family: "Montserrat";
  font-size: 12px;
  color: #374151;
  line-height: 18px;
}
.trust-list li i {
  color: #007a55;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 991px) {
  .donation-page-head h2 {
    font-size: 34px;
  }
}
@media (max-width: 575px) {
  .donation-card {
    padding: 14px;
  }
  .donation-page-head h2 {
    font-size: 28px;
  }
}

/* Payment Instructions Box */
.payment-instructions {
  margin-top: 14px;
  padding: 16px 18px;
  border-radius: 14px;
  background: #eff6ff; /* light blue */
  border: 1px solid #bfdbfe; /* blue border */
  transition: all 0.25s ease;
}

.payment-instructions:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px -16px rgba(0, 0, 0, 0.35);
}

.payment-instructions h6 {
  margin: 0 0 12px 0;
  font-family: "Montserrat";
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

.pi-accounts {
  display: grid;
  gap: 12px;
}

.pi-card {
  padding: 14px 16px;
  border: 1px solid rgba(34, 197, 94, 0.14);
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
}

.pi-card__title {
  margin-bottom: 10px;
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #15803d;
}

.pi-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 14px;
  align-items: center;
  padding: 8px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
}

.pi-row:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.pi-label {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 700;
  color: #374151;
}

.pi-value {
  font-family: "Montserrat";
  font-size: 12px;
  font-weight: 800;
  color: #111827;
}

.pi-note {
  margin: 12px 0 0 0;
  font-family: "Montserrat";
  font-size: 11px;
  color: #6b7280;
}

.pi-empty {
  padding: 14px 16px;
  border: 1px dashed rgba(100, 116, 139, 0.28);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.8);
  font-family: "Montserrat";
  font-size: 12px;
  color: #64748b;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 575px) {
  .pi-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

/*Donation Page Css Ends*/
