@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");

:root {
  --primary-text-color: #282828;
  --secondary-light-black-color: #737373;
  --blue-heading-color: #252b42;
  --main-bold-color: #000;
  --white-light-color: #eef1e8;
  --yellow-color: #f0be18;
  --green-strip-color: #9fbb6c;
  --primary-light-green-color: #c2ea66;
  --light-green-color: #a9c96e;
  --dark-green-color: #023f2d;
  --red-color: #f00;
  --banner-rounded-green-circle: #a9c96e;
  --banner-middle-box-color: #e6e6e6;
  --post-light-color: #707070;
  --post_bold-color: #121212;
  --news-readmore-button-color: #ef991f;
  --news-right-side-discription-color: #6d6d6d;
  --ourWork-heading-color: #1d2130;
  --ourWork-third-section-color: #e0e8cf;
  --dotataion-section-color: #828282;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
}

.main-width {
  max-width: 1600px;
  margin: auto;
  width: 90%;
}

.navbar_color {
  color: var(--primary-text-color);
}

.banner_green_frames {
  border-radius: 44.182px;
  background: rgba(255, 255, 255, 0.15);
}

.banner_right_frames {
  border-radius: 44.182px;
  background: rgba(0, 0, 0, 0.3);
}

.bannner_rounded {
  background-color: var(--banner-rounded-green-circle);
}

.banner_middle_box {
  background-color: var(--banner-middle-box-color);
  border-radius: 49.091px;
  box-shadow: 5.358px -5.358px 10.716px 0px rgba(184, 184, 184, 0.2);
}

.banner_center_yellow_frames {
  border-radius: 44.182px;
  background: var(--yellow-color);
}

.green_border_color {
  background: var(--green-strip-color);
  border-radius: 151px;
}

.blue_heading_color {
  color: var(--blue-heading-color);
}

.about_para_color {
  color: var(--secondary-light-black-color);
}

.founder_section_color {
  background-color: var(--primary-light-green-color);
  border-radius: 30px;
}

/* blog cards  */
.Blog_card {
  border-radius: 17.888px;
  background: #fff;
  box-shadow: 1.789px 0.894px 4.472px 0px rgba(0, 0, 0, 0.12);
}

.blog_post_text {
  color: var(--post-light-color);
  font-size: 12.522px;
  font-style: normal;
  font-weight: 500;
}

.blog_post_text_heading {
  color: var(--post_bold-color);
}

.blog_post_text_heading_span {
  color: var(--green-strip-color);
}

/* news section  */
.news_dark_cards {
  border-radius: 23px;
  background: linear-gradient(0deg, #023f2d 0%, #023f2d 100%), #fff;
}

.news_light_cards {
  border-radius: 23px;
  background: linear-gradient(0deg, #036b4c 0%, #036b4c 100%), #fff;
}

.news_read_more {
  color: var(--news-readmore-button-color);
  font-size: 12.452px;
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

.news_right_side {
  border-radius: 23px;
  background: var(--white-light-color);
}

.news_right_side_heading {
  font-size: 19.326px;
}

.news_right_side_dis {
  color: var(--news-right-side-discription-color);
}

.news_right_side_date {
  color: var(--red-color);
}

/* footer  */
.form_bg {
  background-color: var(--light-green-color);
  border-radius: 17.29px;
}

.footerbg {
  background-color: var(--dark-green-color);
}

.link {
  position: relative;
  display: inline-block;
}

.link:hover::after,
.link.active::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

.link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--light-green-color);
  transform: scaleX(0);
  transform-origin: bottom right;
  transition: transform 0.45s ease-out;
}

/* our work */
.our_work_section {
  background-color: var(--primary-light-green-color);
}

.our_work_heading {
  color: var(--ourWork-heading-color);
}

.ourWork_second_section {
  background-color: var(--dark-green-color);
}

.ourWork_third_section {
  background-color: var(--ourWork-third-section-color);
}

.splide__slide {
  display: block;
  width: 100%;
  transition: transform 400ms;
  transform: scale(.9);
  transform-origin: center center;
}
.splide__pagination__page{
  background: #252b42 !important;
  transform: scale(1.2) !important;
}
.splide__pagination__page.is-active{
  background: #252b42 !important;
  transform: scale(1.8) !important;
}
.splide__slide.is-active img {
  transform: scale(1);
}
.splide__pagination__page{
margin: 5px !important;
}
.splide .splide__arrow {
  top: 0;
  bottom: 0;
  height: 100%;
  transform: none;
  border-radius: unset;
  width: 50px;
  opacity: .9;
  fill: transparent;
}
.splide__arrow{
    background:transparent !important;
}
.splide_arrow.splide_arrow--prev,
.splide_arrow.splide_arrow--next {
  background-color: transparent;
}

.splide_arrow.splide_arrow--prev {
  left: 0;
}

.splide_arrow.splide_arrow--next {
  right: 0;
}

.accordion-header {
  cursor: pointer;
  padding: 30px 45.781px;
  background-color: #fff;
  border-radius: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-content-wrapper {
  overflow: hidden;
  border-radius: 22px;
  background-color: #fff;
  transition: height 0.3s ease-in-out;
}

.accordion-content {
  padding: 4px 45.781px;
  border-radius: 22px;
  padding-bottom: 30px;
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}

.accordion-item.active .accordion-content-wrapper {
  height: auto;
}

.accordion-item.active .accordion-content {
  transform: translateY(0);
}

.rotate-icon {
  transition: transform 0.3s ease-in-out;
}

.accordion-item.active .rotate-icon {
  transform: rotate(180deg);
}

/* patient */
.patient_buttion_bg {
  background-color: var(--news-readmore-button-color);
}

.donation_section_text_color {
  color: var(--dotataion-section-color);
}

.custom-radio .radio-dot {
  transition: background-color 0.2s, opacity 0.2s;
}

.custom-radio input:checked ~ .radio-label .radio-dot {
  background-color: #10b981;
  opacity: 1;
}

.custom-radio input:not(:checked) ~ .radio-label .radio-dot {
  background-color: transparent;
  opacity: 0;
}

/* Dynamic styling for frequency */
.frequency-monthly:checked ~ div .amount-radio,
.frequency-onetime:checked ~ div .amount-radio {
  border-color: #10b981;
  background-color: #f0fff4;
}

.frequency-onetime:checked ~ div .amount-radio-label {
  color: #10b981;
}

.frequency-onetime:checked ~ div #onetime-label {
  border-color: #10b981;
  background-color: #f0fff4;
  color: #000;
}

.frequency-monthly:checked ~ div #monthly-label {
  border-color: #10b981;
  background-color: #f0fff4;
  color: #000;
}

/* Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 37px;
  height: 22px;
  cursor: pointer;
  z-index: 20;
  background: transparent;
  border: none;
}

.hamburger .line {
  width: 100%;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
}

/* Transform hamburger to X */
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Navigation */
.mobile-nav {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--dark-green-color);
  color: white;
  transition: left 0.3s ease;
  z-index: 90;
  overflow-y: auto;
  padding-top: 20px;
}

.mobile-nav.active {
  left: 0;
}

/* Mobile Navigation Links */
.mobile-nav ul {
  list-style: none;
  padding: 20px;
}

.mobile-nav ul li {
  padding: 15px 0;
}

.mobile-nav ul li a {
  text-decoration: none;
}

/* Close Hamburger Button */
.close-hamburger {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  border-radius: 50%;
  cursor: pointer;
}

.close-hamburger .line {
  position: absolute;
  width: 50%;
  height: 3px;
  background-color: #000;
  transition: all 0.3s ease;
}

/* Cross (X) Style for Close Button */
.close-hamburger .line:nth-child(1) {
  transform: rotate(0);
}

.close-hamburger .line:nth-child(2) {
  transform: rotate(0);
}

.close-hamburger.active .line:nth-child(1) {
  transform: rotate(45deg);
}

.close-hamburger.active .line:nth-child(2) {
  transform: rotate(-45deg);
}

/* Prevent Scrolling */
body.nav-open {
  overflow: hidden;
}


