/* Targeting the scrollbar */
::-webkit-scrollbar {
  width: 8px;
  /* Width of the scrollbar */
  height: 8px;
  /* Height of the scrollbar (for horizontal scrollbars) */
}

/* Track (background) */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Branding colors */
:root {
  --brand-black: #000000;
  --brand-primary: #63AB6E;
  --brand-primary-dark: #1C5129;
  --brand-primary-second: #B7F1BA;
  --bs-primary-bg-subtle: #B7F1BA;
  --brand-secondary: #EDC034;
  --brand-text-brown: #584400;
  --brand-yellow: #FFEBB7;
  --brand-tertiary: #C82A42;
  --brand-surface: #212121;
  --brand-surface-variant: #EDE8E8;
  --brand-error: #D30202;
  --brand-bg: #F7FBF2;
  --brand-gray-bg: #EFF5F6;
  --brand-surface-bg: #F5FAFB;
  --brand-surface-color: #4E444B;
  --brand-surface-secondary-bg: #E9EFF0;
  --brand-disable: #E9EFF0;
  --brand-disable-color: #80747B;

  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #6c757d;
  --bs-gray-dark: #343a40;
  --bs-primary: var(--brand-primary);
  --bs-secondary: var(--brand-secondary);
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #D30202;
  --bs-light: #F5FAFB;
  --bs-dark: #171D1E;
  --bg-light-green: #B7F1BA;
  --bg-light-yellow: #FFE08E;
  --bg-light-purple: #E9EFF0;
  --bg-light-red: #FFDADA;

  /* --font-heading: 'Lora', serif; */
  --font-heading: 'Noah', sans-serif;
  --font-body: 'Noah', sans-serif;

}

/* Applying the fonts */
body {
  font-family: var(--font-body);
  margin: 0;
  padding: 0;
  font-size: 16px;
  /* Adjust as needed */
  line-height: 1.6;
  color: #333;
  background-color: #F7FBF2;
}
footer {
  background: var(--Schemes-Surface-Container, #E9EFF0);
}
.modal {
  --bs-body-bg: rgba(0, 0, 0, 0) !important;
}

.btn {
  padding: 12px 20px;
}

/* custom */
.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--brand-primary);
  --bs-btn-border-color: var(--brand-primary);
  --bs-btn-hover-color: var(--brand-primary-second);
  --bs-btn-hover-bg: var(--brand-primary);
  --bs-btn-hover-border-color: var(--brand-primary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--brand-primary);
  --bs-btn-active-border-color: var(--brand-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--brand-primary-dark);
  --bs-btn-disabled-border-color: var(--brand-primary-dark);
}

/* Active State */
.btn-primary:active {
  font-weight: 700;
}
.btn-secondary {
  --bs-btn-color: var(--brand-black);
  --bs-btn-bg: var(--brand-surface-bg);
  --bs-btn-border-color: var(--brand-surface-bg);
  --bs-btn-hover-color: var(--brand-surface-color);
  --bs-btn-hover-bg: #F5FAFB;
  --bs-btn-hover-border-color: var(--brand-surface);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: var(--brand-black);
  --bs-btn-active-bg: #EFF5F6;
  --bs-btn-active-border-color: #241A00;
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #80747B;
  --bs-btn-disabled-bg: #80747B;
  --bs-btn-disabled-border-color: #80747B;
  background: var(--Schemes-Surface-Container-Low, #EFF5F6);
  box-shadow: 0px 4px 7.5px 0px rgba(233, 239, 240, 0.45);
  padding: 12px 20px;
}

/* Active State */
.btn-secondary:active {
  font-weight: 700;
}

.card {
  border-radius: 12px;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.03) !important;
}

.card-custom-shadow {
  box-shadow: 0 8px 16px var(--bg-light-purple) !important;
}

.card.our-team img {  
  border-radius: 6px;
}

.bg-light {
  background-color: white !important;
}

.card a {
  color: var(--brand-primary);
}
.active>.page-link, .page-link.active {
  background-color: var(--brand-primary);
  border-color: var(--brand-primary);
  color: var(--bs-pagination-active-color);
}
.card span {
  font-size: 12px;
}
.breadcrumb {
  /* background-color: #f5f8f1; Light greenish background */
  padding: 8px 15px;
}
.breadcrumb-item a {
  padding: 8px 15px;
  color: black; 
  border-radius: 5px;
  text-decoration: none;
}
.breadcrumb-item a:hover {
  /* text-decoration: underline; */
  color: var(--brand-primary);
  border-bottom: 2px var(--brand-primary) solid;
}
.breadcrumb-item.active a {
  /* border-radius: 5px;
  padding: 2px 15px; */
  border-bottom: 2px var(--brand-primary) solid;
  color: var(--brand-primary);
  font-weight: bold;
}
/* Hide default radio */
input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 24px;
  /* height: 24px; */
  border: 2px solid #4A4043; /* Dark brown border */
  border-radius: 50%;
  display: inline-block;
  position: relative;
  background-color: #F5F8F1; /* Light greenish background */
}
input[type="radio"]:checked {
  background-color: white !important;
  border-color: #4A4043 !important;
  margin-left: 6px !important;
}
/* Custom checked style */
input[type="radio"]:checked::before {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #4A4043; /* Dark brown inner circle */
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
/* Text styling */
.D1 {
  /* Display/D1 */
  font-size: 4rem;
  font-style: normal;
  font-weight: 700;
  line-height: 81px; /* 126.563% */
  letter-spacing: -0.25px;
}
.D2 {
  /* Display/D2 */
  font-size: 3rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem; /* 115.556% */
}
.D3 {
  /* Display/D3 */
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem; /* 122.222% */
}
.H1 {
  /* Headings/H1 */
  font-size: 2rem;
  font-style: normal;
  font-weight: 700;
  line-height: 3rem; /* 125% */
}
.H2 {
  /* Headings/H1 */
  font-size: 1.5rem;
  font-style: normal;
  font-weight: 700;
  line-height: 2rem; /* 125% */
}
.H3 {
  /* Headings/H1 */
  font-size: 1.3rem !important;
  font-style: normal;
  font-weight: 700 !important;
  line-height: 1.8rem; /* 125% */
}
.L2 {
  /* Label/L2 */
  font-size: 0.9rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.3rem; /* 142.857% */
  letter-spacing: 0.1px;
}
.Tgreen {
  color: var(--brand-primary);
}
.B0 {
  color: var(--Schemes-On-Surface-Variant, #4E444B);
  /* Body/B0 */
  font-family: Noah;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.8rem; /* 131.818% */
}
/* .card-custom {
  max-width: 700px;
  border-radius: 10px;
  overflow: hidden;
} */
.img-container {
  overflow: hidden;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.badge-custom {
  background-color: #B7F1BA; /* Green color for "Responsibilities" */
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  color: #002109;
  display: inline-block;
}
section.volunteer-section, section.why-donate-section.bottom {
  background-color: var(--brand-surface-secondary-bg);
}
.card .icon {
  background-color: #E9EFF0;
  height: 32px;
  /* width: 32px; */
  border-radius: 4px;
  padding: 5px 10px 10px 10px;
  /* padding-left: calc(8px - var(--bs-card-spacer-x));
  padding-top: calc(10px - var(--bs-card-spacer-y)); */
}
/* Campaing Styling */
.campaing-section {
  background-color: white;
}
.campaing-section .img-container {
  height: 558px;
  min-width: 328px;
}
.campaing-section .img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.goal-card {
  background: #f8f9fa;
  padding: 12px 16px;
  border-radius: 10px;
  text-align: start;
  min-width: 180px;
}
.goal-card h5 {
  margin-top: 16px;
}
.benefit-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
}
.progress-bar {
  background-color: #62c172;
}
/* Campaing Styling */

.form-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 20px;
  /* border-radius: 8px; */
  background: var(--Schemes-Surface-Container, #E8F0F1);
}

.form-label {
  font-weight: bold;
  color: #555; /* Subtle label color */
}

.form-control,
.form-select {
  background-color: #f9fcff; /* Light blue background for inputs */
  border: 1px solid #e3e6ea; /* Subtle border color */
  border-radius: 8px;
  padding: 10px;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--bg-light-green);
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.2);
}

.form-container h1 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
}
/* .top-banner-section {
  min-height: 277px !important;
} */
.top-banner-section > div {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
/* .bottom-banner-section {
  max-height: 353px !important;
} */
@media (min-width: 798px) {
  /* Text styling */
  .D1-lg {
    /* Display/D1 */
    font-size: 64px;
    font-style: normal;
    font-weight: 700;
    line-height: 81px; /* 126.563% */
    letter-spacing: -0.25px;
  }  
  .info-section .d-flex {
    height: 680px;
  }
  .top-banner-section > div,
  .bottom-banner-section > div {
    padding-left: 12vh !important;
    padding-right: 12vh !important;
  }
  .w-sm-100 {
    width: 100% !important;
  }
}
#comment-section {
  max-height: 665px;
  overflow-y: scroll;
}