/* Reset & Box Model Fix */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Root Variables */
:root {
  --font-primary: "Montserrat", sans-serif;
  --font-size-base: 16px;
  --font-color: #000000;
  --bg-color: #ffffff;
  --link-color: #000000;
  --link-hover-color: #333333;
  --transition-fast: 0.5s ease-in-out;
  --yellow-color: #67bf13;
  --pink-color: #67bf13;
  --white-color: #ffffff;
  --pastel-orange: #dcf1ca;
}

/* Font-Face Setup */
@font-face {
  font-family: "gotham-black";
  src: url("../fonts/gotham-black-webfont.woff2") format("woff2"),
    url("../fonts/gotham-black-webfont.woff2") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "gotham-bold";
  src: url("../fonts/gotham-bold-webfont.woff2") format("woff2"),
    url("../fonts/gotham-bold-webfont.woff2") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Gotham-Regular";
  src: url("../fonts/Gotham-Regular.woff2") format("woff2"),
    url("../fonts/Gotham-Regular.woff2") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "gotham-medium";
  src: url("../fonts/gotham-medium-webfont.woff2") format("woff2"),
    url("../fonts/gotham-medium-webfont.woff2") format("woff");
  font-display: swap;
}

/* Base HTML */
html {
  font-size: clamp(14px, 1.5vw, 16px);
  scroll-behavior: smooth;
}

body {
  width: 100%;
  height: 100%;
  font-family: "Gotham-Regular";
  color: var(--font-color);
  background-color: var(--bg-color);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: clamp(15px, 1.25vw, 22px);
  overflow-x: hidden;
}
/* [data-aos="fade-left"] {
  transform: translateX(-50px); 
}
[data-aos="fade-right"] {
  transform: translateX(50px); 
  opacity: 0;
  transition-property: transform, opacity;
  transition-duration: 800ms;
  transition-timing-function: ease-in-out;
}

[data-aos="fade-right"].aos-animate {
  transform: translateX(0);
  opacity: 1;
} */

/* Typography */
p {
  margin: 0 0 1em;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.5em;
  font-weight: 700;
}

ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  color: var(--white-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover,
a:focus {
  color: var(--yellow-color);
  outline: none;
}

/* Accessibility */
:focus-visible {
  outline: 2px dashed #888;
  outline-offset: 4px;
}

/* Utility */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: 1px solid var(--pink-color);
  background: none;
  background-color: var(--pink-color);
  color: var(--white-color);
  border-radius: 20px;
  transition: color var(--transition-fast);
}

.padding-60 {
  padding: 50px 0;
}
.heading {
  font-size: clamp(20px, 2.3vw, 34px);
  line-height: normal;
  padding: 0 0 16px 0;
  margin: 0 0 12px 0;
  position: relative;
}

.heading span {
  color: var(--yellow-color);
  font-family: "gotham-black";
  font-size: clamp(24px, 2.8vw, 38px);
}

/* .heading::after {
    position: absolute;
    content: "";
    width: 165px;
    height: 15px;
    left: 0;
    bottom: 0;
    background-image: url("../images/line.webp");
    background-repeat: no-repeat;
    background-size: contain;
} */
.heading.heading_center {
  text-align: center;
}
.heading.heading_center::after {
  left: 0;
  right: 0;
  margin: 0 auto;
}
/* HEADER SECTION START */
/* header {
  background-color: var(--pastel-orange);
  padding: 10px 0;
} */
.header-mainBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logoBox {
  max-width: 20%;
  margin: 0 0 -40px 0;
  z-index: 10;
}
.header-logoBox a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-logoBox a .heart-icon {
  max-width: 25%;
  animation: scale-up-center 1.5s ease-in-out infinite alternate both;
}
@keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    opacity: 0.8;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
.header-buttonBox a {
  background-color: var(--white-color);
  padding: 14px 30px;
  border-radius: 40px;
  cursor: pointer;
  transition: var(--transition-fast);
  box-shadow: rgb(206 206 206) 0px 0px 11px 0px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: center;
}
.header-buttonBox a .textBox {
  line-height: normal;
  font-size: clamp(12px, 1.25vw, 22px);
  font-family: "gotham-black";
  color: var(--font-color);
}

.header-buttonBox a .textBox span {
  display: block;
  font-size: clamp(14px, 1.3vw, 24px);
  font-family: "Gotham-Regular";
  line-height: normal;
  color: var(--pink-color);
  font-weight: 600;
}

.header-buttonBox a::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--pink-color);
  width: 50%;
  padding-top: 150%;
  transition: var(--transition-fast);
  transform: rotate(25deg);
  top: -100%;
  left: -190%;
}
.header-buttonBox a:hover {
  box-shadow: none;
  background: var(--pink-color);
}
.header-buttonBox a:hover:after {
  left: 130%;
}
header {
  position: absolute;
  z-index: 9999;
  left: 0;
  right: 0;
  padding: 30px 0;
}
/* HEADER SECTION END */
/* BANNER SECTION START */
.banner_heading {
  color: var(--yellow-color);
  text-transform: uppercase;
  font-family: "gotham-black";
  font-size: clamp(30px, 3.5vw, 65px);
  line-height: normal;
  text-align: left;
  position: relative;
  padding: 0 0 35px 0;
  margin: 0 0 12px 0;
}

.banner_heading::after {
  position: absolute;
  content: "";
  width: 180px;
  height: 27px;
  left: 10%;
  bottom: 0;
  background-image: url("../images/line.webp");
  background-repeat: no-repeat;
  background-size: contain;
  transform: translateX(-50%);
}
.banner_subText {
  text-transform: uppercase;
  font-size: clamp(18px, 1.97vw, 45px);
  text-align: left;
  line-height: 1.2;
  color: var(--white-color);
}
.desktop_banner {
  display: block;
}
.mobile_banner {
  display: none;
}
.banner_subText span {
  display: block;
}
.banner_box {
  display: grid;
  position: relative;
}
/* .banner_box::before {
  z-index: 1;
  background-image: url(../images/side1.webp);
  background-position: center;
  background-size: contain;
  content: "";
  position: absolute;
  top: 0;
  width: 63px;
  height: 268px;
  background-repeat: no-repeat;
  bottom: 0;
  margin: auto;
  animation: slide-upDown 2s ease-in-out infinite alternate-reverse;
} */
.banner_box::after {
  z-index: 1;
  background-image: url(../images/side2.webp);
  background-position: right bottom;
  background-size: contain;
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 100px;
  width: 100px;
}
.banner_box > * {
  grid-area: 1/1;
}
.banner_textBox {
  align-items: center;
  align-self: self-end;
  margin: 0 0 70px 0;
  z-index: 10;
}
.banner_imageBox {
  position: relative;
}
.banner_imageBox .overlay {
  background-color: #00000091;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
}
.banner_mainBox {
  position: relative;
}
/* .banner_mainBox::before {
  z-index: 2;
  background-image: url(../images/zigimg.webp);
  background-position: top center;
  background-size: 100%;
  content: "";
  position: absolute;
  top: 0;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
} */
.banner_mainBox::after {
  z-index: 2;
  background-image: url(../images/zig_whiteimg.webp);
  background-position: bottom center;
  background-size: 100%;
  content: "";
  position: absolute;
  bottom: -1px;
  width: 100%;
  height: 100px;
  background-repeat: no-repeat;
}
/* BANNER SECTION END */
/* ABOUT SECTION START */
.about_section {
  position: relative;
}
.sprade-shape {
  position: absolute;
  top: 0px;
  right: 1%;
  transform: rotate(58deg);
  animation: scale-up-center 2s ease-in-out infinite alternate-reverse;
}
.sprade-shape img {
  max-width: 70%;
}
.about_imageBox {
  border-radius: 20px;
}
.about_img {
  border-radius: 20px;
}
.about_img img {
  border-radius: 20px;
  border: 6px solid var(--yellow-color);
}
.about_textBox .heading span {
  display: block;
}
.about_content p {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.5;
  font-family: "gotham-medium";
}
.about_content p span {
  color: var(--pink-color);
}
/* ABOUT SECTION END */
/* OUR JOURNEY SECTION START */
.journey_section {
  padding: 40px 0 50px 0;
  position: relative;
  /* background-color: #fffaf4; */
}
.footer_copywrite {
  display: flex;
  justify-content: center;
  align-items: center;
}
.journey_section::before {
  background-color: #fffaf4;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.journey_section::after {
  background: #ffffff;
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.92) 3%,
    rgba(87, 199, 133, 0) 20%
  );
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 1;
}
.journey_mainBox {
  text-align: center;
}
.journey_listingBox {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  margin: 40px 0 0;
}
.journey_list {
  /* border: 2px solid var(--yellow-color); */
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border-radius: 20px;
  padding: 30px 25px;
  position: relative;
  background-color: var(--white-color);
  transition: var(--transition-fast);
}
/* .journey_list::after {
    position: absolute;
    content: "";
    background-image: url('../images/path.webp');
    background-position: top left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 138px;
    width: 180px;
    left: -34px;
    top: -23%;
    z-index: -1;
    opacity: 0.2;
    transition: var(--transition-fast);
} */
@keyframes slide-tr {
  0% {
    transform: translateY(3px) translateX(-3px);
  }
  100% {
    transform: translateY(-3px) translateX(3px);
  }
}
.journey_text {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.2;
}
.journey_title {
  /* background-color: var(--pink-color);
  color: var(--white-color); */
  font-size: clamp(12px, 1.2vw, 18px);
  padding: 8px 12px;
  width: fit-content;
  border-radius: 10px;
  text-align: center;
  margin: 0px auto 20px auto;
  font-family: "gotham-bold";
  transition: var(--transition-fast);
}

.journey_list:hover::after {
  opacity: 1;
  animation: slide-tr 1.5s linear infinite alternate-reverse both;
}
/* .journey_list:hover .journey_title{
  background-color: var(--font-color);
  color: var(--white-color);
} */
/* OUR JOURNEY SECTION END */
/* HOPE SECTION START */
.hope_section {
  text-align: center;
  position: relative;
}
.hope-carousel .hope_listingBox img {
  border-radius: 20px;
  border: 8px solid #fffaf4;
}
.hope_listingBox {
  display: grid;
}
.hope_listingBox > * {
  grid-area: 1/1;
}
.meher_locationBox .hope_textBox {
  width: 12%;
}
.hope_textBox {
  align-self: self-end;
  background-color: var(--white-color);
  color: #000000;
  width: fit-content;
  border-radius: 10px;
  padding: 6px 10px;
  justify-self: center;
  font-size: clamp(15px, 1.25vw, 22px);
  margin: 0 0 20px 0;
  font-family: "gotham-bold";
}

.hope_listingBox {
  transform: scale(0.85);
  transform-origin: center;
  margin: 5px 0px 5px;
  transition: transform 0.3s ease;
}

.center .hope_listingBox {
  transform: scale(1);
  margin: 0;
}
.center .hope_listingBox .hope_textBox {
  font-size: clamp(15px, 1.25vw, 22px);
}
.hope-carousel .owl-nav,
.hope-carousel .owl-nav.disabled {
  display: flex !important;
  gap: 20px;
  justify-content: center;
}
.founder-carousel .owl-nav,
.founder-carousel .owl-nav.disabled {
  display: flex !important;
  gap: 20px;
  justify-content: center;
}
.nav_btn:hover .gray_to_yellow {
  fill: var(--yellow-color);
}
.hope_section .hand {
  position: absolute;
  z-index: -1;
  top: 5%;
  inset-inline-start: 0px;
}
.hope_section .hand img {
  max-width: 20vw;
  min-width: 30px;
  animation: moveUpDown 5s ease-in-out infinite alternate-reverse;
}
@keyframes moveUpDown {
  0% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
    opacity: 0.5;
  }
}
/* HOPE SECTION END */
/* WHERE WE SERVE SECTION START */
.serve_section {
  background-color: #6a9047;
}
.serve_mainBox {
  display: grid;
  align-items: end;
}
.serve_mainBox > * {
  grid-area: 1/1;
}
.serve_hand_mainBox {
  padding: 50px 0 90px;
}
.serve_section .heading {
  color: var(--white-color);
}
.serve_section .heading span {
  color: var(--white-color);
}
.meher_locationBox {
  color: var(--white-color);
  /* box-shadow: 0 4px 4px #e2e2e2; */
  padding: 25px 0 15px 0;
  /* border-radius: 20px; */
  margin: 0 auto 0 auto;
  text-align: center;
  font-size: clamp(16px, 1.2vw, 20px);
  /* position: absolute; */
  left: 0;
  right: 0;
  /* width: 65%; */
  z-index: 1;
}
.meher_locationBox span {
  display: block;
  color: var(--pink-color);
  font-family: "gotham-bold";
}
.meher_data_contentBox {
  padding: 130px 40px 60px;
}
.meher_data_contentBox.content-right {
  text-align: right;
  background-color: #fcfae5;
}
.meher_data_contentBox.content-left {
  text-align: left;
  background-color: #dcf1ca;
}
.meher_serve_twoBox {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.meher_data_heading {
  font-size: clamp(16px, 1.4vw, 24px);
  font-family: "gotham-bold";
  padding: 0 0 30px 0;
}

.meher_data_content {
  max-width: 80%;
}
.meher_data_contentBox.content-right .meher_data_content {
  max-width: 80%;
  margin: 0 0 0 auto;
}
.meher_data_content {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1;
}
.meher_data_content p span {
  display: block;
  line-height: 1;
}
.custom_list ul {
  margin: 10px 0;
}
.custom_list ul li {
  position: relative;
  padding: 4px 0 4px 10px;
}
.custom_list ul li::before {
  position: absolute;
  background-color: var(--font-color);
  height: 1.3px;
  width: 6px;
  content: "";
  top: 10px;
  left: 0;
}
/* .serve_sectionData{
  padding: 0 0 50px 0;
} */
.meher_serve_twoBox {
  position: relative;
}
.meher_serve_twoBox::after {
  background-image: url("../images/shadow.webp");
  content: "";
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
  height: 40.5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
}
/* WHERE WE SERVE SECTION END */
.founder_new .founder_imgBox {
  width: 20%;
}
.founder_new .founder_imgBox img {
  border-radius: 50%;
}
.founder_new {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 45px;
}
/* OUR FOUNDER SECTION START */
.founder_section {
  position: relative;
}
.nature-shape {
  position: absolute;
  top: 10%;
  right: 3%;
  max-width: 9%;
  opacity: 0.8;
  animation: slide-bl 3s ease-in-out infinite alternate-reverse;
}
@keyframes slide-bl {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
  100% {
    -webkit-transform: translateY(30px) translateX(-10px);
    transform: translateY(30px) translateX(-10px);
  }
}
.founder_contentBox {
  text-align: center;
}
.founder_profile_list {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transition: var(--transition-fast);
}
.founder_profileBox {
  width: auto;
  padding: 5px 15px;
  border-radius: 10px;
  transition: var(--transition-fast);
  text-align: center;
  font-size: 15px;
}
.founder_profileBox.list1 {
  background-color: #fbe9ce;
}
.founder_profileBox.list2 {
  background-color: #ffedf2;
}
.founder_profileBox.list1:hover {
  background-color: var(--yellow-color);
  color: var(--white-color);
}
.founder_profileBox.list2:hover {
  background-color: var(--pink-color);
  color: var(--white-color);
}
.founder_contentBox {
  max-width: 85%;
  margin: 0 auto;
}
.founder-carousel .founder_imgBox img {
  border: 6px solid #fffaf4;
  filter: opacity(0.5);
}
/* .founder-carousel .owl-nav {
    display: flex !important;
    gap: 20px;
    justify-content: center;
} */
.nav_btn:hover .gray_to_yellow {
  fill: var(--yellow-color);
}
.center .founder_imgBox img {
  filter: opacity(1);
  border: 6px solid var(--bg-color);
  position: relative;
  z-index: 1;
}
.founder_section .sliderBox {
  padding: 70px 0 40px;
  position: relative;
}
.founder_section .sliderBox::after {
  position: absolute;
  background-color: #f4f4f4;
  height: 84%;
  width: 37%;
  top: 33px;
  bottom: 0;
  left: 0;
  right: 0;
  content: "";
  margin: auto;
}

/* OUR FOUNDER SECTION END */
/* DONATE SECTION START  */
.donate_img_mainBox {
  position: relative;
}
.donate_img_mainBox img {
  border-radius: 20px;
}
.donate_img_mainBox::before {
  background-color: var(--pastel-orange);
  content: "";
  position: absolute;
  top: -10%;
  left: 0;
  width: 75%;
  height: 80px;
  border-radius: 20px;
  z-index: -1;
}
.amount_toggle_box {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}

.amount_toggle_box label {
  position: relative;
  cursor: pointer;
}

.amount_input {
  display: none; /* Hide actual radio button */
}

.amount_number {
  height: 50px;
  width: 50px;
  background-color: var(--pastel-orange);
  border-radius: 5px;
  color: var(--font-color);
  transition: var(--transition-fast);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 1.5vw, 16px);
}

.amount_input:checked + .amount_number {
  background-color: var(--pink-color);
  color: #fff;
}
.donation_amountBox {
  display: block;
  margin: 0 0 20px 0;
}
.donation_amountBox .form-control {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  border-radius: 5px;
  color: var(--font-color);
  transition: var(--transition-fast);
  border: 0;
  margin: 0 0 20px 0;
}
.form_heading {
  font-size: clamp(16px, 1.3vw, 24px);
  font-family: "gotham-medium";
  padding: 0 0 5px 0;
}
button.btn {
  background-color: var(--font-color);
  color: var(--white-color);
  font-size: clamp(14px, 1.5vw, 16px);
  border-radius: 30px;
  transition: var(--transition-fast);
}
.btn-check:focus + .btn,
.btn:focus {
  outline: 0;
  box-shadow: none !important;
}
button.btn:hover {
  background-color: var(--pastel-orange);
  color: var(--font-color);
  box-shadow: 0 0 4px 0px #b0b0b0;
}
.payment_box {
  display: flex;
  gap: 10px;
}
.payment_box label {
  display: flex;
  align-items: center;
  gap: 5px;
}
.payment_methods {
  font-size: clamp(14px, 1.5vw, 16px);
}
.payment_box {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.payment_box label {
  cursor: pointer;
  position: relative;
  text-align: center;
}

.payment_input {
  display: none; /* hide actual radio */
}
.payment_methodBox {
  margin: 0 0 20px 0;
}
.payment_methods {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--font-color);
  filter: grayscale(1);
  transition: var(--transition-fast);
}

.payment_methods img {
  width: 15px;
  height: 15px;
  transition: var(--transition-fast);
}

/* Show selected radio image at full opacity */
.payment_input:checked + .payment_methods {
  filter: grayscale(0);
}

.submit_btn {
  background-color: var(--pink-color);
  color: var(--white-color);
  padding: 7px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(14px, 1.5vw, 16px);
  position: relative;
  overflow: hidden;
}
.submit_btn img {
  max-width: 25px;
}
.submit_btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: var(--yellow-color);
  width: 50%;
  padding-top: 150%;
  transition: var(--transition-fast);
  transform: rotate(25deg);
  top: -100%;
  left: -190%;
}

.submit_btn:hover::after {
  left: 130%;
}
.grid-line {
  position: absolute;
  top: -25%;
  right: -10px;
  transition: var(--transition-fast);
  animation: slide-upDown 2s ease-in-out infinite alternate-reverse;
}
@keyframes slide-upDown {
  0% {
    -webkit-transform: translateY(0) translateX(0);
    transform: translateY(0) translateX(0);
  }
  100% {
    -webkit-transform: translateY(30px) translateX(-10px);
    transform: translateY(30px) translateX(-10px);
  }
}
.grid-line img {
  max-width: 65%;
}
/* DONATE SECTION END  */
/* FOOTER START */
footer {
  background-color: var(--pink-color);
  color: var(--white-color);
  padding: 20px 0 10px 0;
  position: relative;
}
footer::before {
  z-index: 2;
  background-image: url(../images/zig_whiteimg.webp);
  background-position: bottom center;
  background-size: 100%;
  content: "";
  position: absolute;
  top: -1px;
  width: 100%;
  height: 25px;
  background-repeat: no-repeat;
  transform: rotate(180deg);
}

.footer_mainBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 15px 0 5px;
}
.footer_mainBox img {
  max-width: 65%;
}
/* FOOTER END */
/* Popup overlay */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup box */
.popup-content {
  position: relative;
  background: #fffaf4;
  padding: 40px;
  border-radius: 10px;
  max-width: 1000px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  animation: fadeIn 0.3s ease-in-out;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.popup-content img {
  max-width: 100%;
  border-radius: 8px;
}

/* Close "X" button */
.close-x {
  position: absolute;
  top: -30px;
  right: -18px;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
}
.popup_qr{
  display: flex;
  justify-content: center;
  align-items: center;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========= RESPONSIVE START ========== */
@media (max-width: 1920px) {
}
@media (max-width: 1200px) {
  .journey_title {
    padding: 8px 8px;
  }
  .founder_profileBox {
    padding: 5px 10px;
  }
  .founder_contentBox {
    max-width: 85%;
  }
}
@media (max-width: 1024px) {
  /* OUR JOURNEY SECTION START */
  /* .journey_listingBox > *:nth-child(3):last-child {
      grid-column: 1 / -1; 
      justify-self: center; 
  } */
  /* OUR JOURNEY SECTION END */
  .meher_locationBox {
    width: 75%;
  }
  .meher_data_contentBox.content-left .meher_data_content,
  .meher_data_contentBox.content-right .meher_data_content {
    max-width: 100%;
  }
}
@media (max-width: 991.98px) {
  .header-logoBox {
    max-width: 32%;
    margin: 0 0 -31px 0;
    z-index: 10;
  }

  .journey_listingBox {
    grid-template-columns: 1fr 1fr;
  }
  .journey_listingBox > *:nth-child(3):last-child {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 48%;
  }
  .journey_title {
    padding: 8px 15px;
  }
  .meher_locationBox {
    width: 85%;
    margin: -7% auto 0 auto;
  }
  .founder_contentBox {
    max-width: 100%;
  }
  .founder_new {
    flex-wrap: wrap;
  }
  .founder_new .founder_imgBox {
    width: 31%;
  }
  .meher_locationBox .hope_textBox {
    width: 30%;
  }
  .serve_mainBox > * {
    grid-area: unset;
  }
  .serve_section .heading {
    margin: 0;
    padding: 0;
  }
  .founder_new .founder_imgBox {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .about_img,
  .donate_img_mainBox {
    margin: 0 0 20px 0;
  }
  .meher_locationBox {
    width: 100%;
    /* margin: 20px 0; */
    /* box-shadow: 0px 0px 10px #e2e2e2; */
    position: relative;
  }
  .meher_serve_twoBox {
    grid-template-columns: 1fr;
  }
  .meher_data_contentBox {
    padding: 40px;
  }
  .meher_data_heading {
    padding: 0 0 20px 0;
  }
  .meher_data_contentBox.content-right {
    text-align: left;
  }
  .meher_serve_twoBox::after {
    bottom: -32px;
  }
  .footer_mainBox img {
    margin: 0 auto 20px auto;
  }
  .footer_mainBox {
    justify-content: center;
  }
  .founder_section .sliderBox::after {
    display: none;
  }
  .founder-carousel .founder_imgBox img {
    filter: opacity(1);
  }
  .desktop_banner {
    display: none;
  }
  .mobile_banner {
    display: block;
  }
  .serve_mainBox > * {
    grid-area: unset;
  }
  .serve_section .heading {
    margin: 0;
    padding: 0;
  }
}
@media (max-width: 479px) {
  .popup-content {
      max-width: 350px;
  }
  .header-buttonBox a {
    padding: 10px 14px;
  }
  .header-logoBox {
    max-width: 32%;
    margin: 0;
  }
  .banner_box::before {
    width: 16px;
    height: 100px;
  }
  .banner_box::after {
    height: 60px;
    width: 60px;
  }
  .banner_mainBox::after {
    width: 100%;
    height: 10px;
  }
  .banner_textBox {
    margin: 0 0 20px 0;
    z-index: 10;
  }
  /* OUR JOURNEY SECTION START */
  .journey_listingBox {
    grid-template-columns: 1fr;
  }
  .journey_listingBox > * {
    max-width: 90% !important;
    margin: 0 auto;
  }
  .journey_list::after {
    height: 100px;
    width: 145px;
    left: -26px;
    opacity: 1;
    animation: slide-tr 1.5s linear infinite alternate-reverse both;
  }
  .nature-shape {
    position: absolute;
    top: 0;
    right: 2%;
    max-width: 14%;
  }
  .serve_hand_mainBox {
    padding: 35px 0;
  }
  .founder_section .sliderBox {
    padding: 40px 10px 0;
    position: relative;
  }
  /* OUR JOURNEY SECTION END */
  .founder-carousel .owl-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 15px 0 0 0;
  }
  .padding-60,
  .journey_section {
    padding: 30px 0;
  }
  .footer_mainBox {
    padding: 0;
  }
}
