
/* 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: #ffa415;
  --pink-color: #bb5c76;
  --white-color: #FFFFFF;
  --pastel-orange: #ffedd8;
}

/* 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: 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: 18px;
  overflow-x: hidden;
}

/* 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: 30px;
  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: 35px;
}

.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: 25%;
    margin: 0 0 -40px 0;
    z-index: 10;
}
.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: 18px;
  font-family: 'gotham-black';
  color: var(--font-color);
}

.header-buttonBox a .textBox span {
  display: block;
  font-size: 20px;
  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;
}
.header-buttonBox a:hover:after {
  left: 130%;
}
/* HEADER SECTION END */
/* BANNER SECTION START */
.banner_heading {
  color: var(--yellow-color);
  text-transform: uppercase;
  font-family: 'gotham-black';
  font-size: 45px;
  line-height: normal;
  text-align: center;
  position: relative;
  padding: 0 0 35px 0;
  margin: 0 0 12px 0;
}

.banner_heading::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 27px;
    left: 50%;
    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: 25px;
  text-align: center;
  line-height: 1.2;
  color: var(--white-color);
}

.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: 35px;
    height: 180px;
    background-repeat: no-repeat;
    bottom: 0;
    margin: auto;
}
.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_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: 16px;
  line-height: 1.2;
  font-family: 'gotham-medium';
}
.about_content p span {
  color: var(--pink-color);
}
/* ABOUT SECTION END */
/* OUR JOURNEY SECTION START */
.journey_section {
    padding: 40px 0;
    position: relative;
    /* background-color: #fffaf4; */
}
.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_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);
    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: 17px;
    line-height: 1.2;
}
.journey_title {
  background-color: var(--pink-color);
  color: var(--white-color);
  font-size: 15px;
  padding: 8px 12px;
  width: fit-content;
  border-radius: 10px;
  text-align: center;
  margin: -50px 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;
}
.hope_textBox {
    align-self: self-end;
    background-color: var(--white-color);
    width: fit-content;
    border-radius: 10px;
    padding: 6px 10px;
    justify-self: center;
    font-size: 18px;
    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: 18px;
}
.hope-carousel .owl-nav,
.hope-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(-100px);
    transform: translateY(-100px);
      opacity: 0.5;
  }

  50% {
      -webkit-transform: translateY(0px);
      transform: translateY(0px);
      opacity: 1;
  }
  100% {
      -webkit-transform: translateY(100px);
      transform: translateY(100px);
      opacity: 0.5;
  }
}
/* HOPE SECTION END */
/* WHERE WE SERVE SECTION START */
.serve_section {
    background-color: #885462;
}
.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 {
  background-color: var(--white-color);
  box-shadow: 0 4px 4px #e2e2e2;
  padding: 25px;
  border-radius: 20px;
  margin: -5% auto 0 auto;
  text-align: center;
  font-size: 18px;
  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: #ffc973;
}
.meher_serve_twoBox {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.meher_data_heading {
  font-size: 20px;
  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: 16px;
  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 */
/* OUR FOUNDER SECTION START */
.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);
}
.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: 80%;
    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: 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: 20px;
    font-family: 'gotham-medium';
    padding: 0 0 5px 0;
}
button.btn {
    background-color: var(--font-color);
    color: var(--white-color);
    font-size: 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: 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: 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: 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%;
}
/* DONATE SECTION END  */
/* FOOTER START */
footer {
  background-color: var(--pink-color);
  color: var(--white-color);
  padding: 20px 0 20px 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;
  margin: 10px 0 0 0;
  font-size:15px;
}
.footer_mainBox img {
  max-width: 65%;
}
.icon_img{
    max-height: 32px;
    float: left;
    margin: 0px 10px 0px 0px;
}
.icon_img{
    max-height: 27px;
    float: left;
    margin: 0px 10px 0px 0px;
}
.footer_add{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
    gap: 30px;
    font-size:15px;
}
.footer_copywrite{
    text-align:end;
    font-size:15px;
}
/* FOOTER END */


/* ========= 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%;
  }
  
}
@media (max-width: 991.98px) {
  .header-logoBox {
      max-width: 32%;
      margin: 0 0 -31px 0;
      z-index: 10;
  }
  .meher_data_contentBox.content-left .meher_data_content,
  .meher_data_contentBox.content-right .meher_data_content{
    max-width: 100%;
  }
  .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%;
  }
}
@media (max-width: 767px) {
  .about_img {
      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;
  }
  .footer_add{
    justify-content: center;
    width: 100%;
    gap: 10px;
  }
  .footer_mainBox .icon_img{
    margin: 0 11px 0 0;
  }
  .footer_copywrite {
    text-align: center;
    padding: 20px 0 0 0;
  }
}
@media (max-width: 479px) {
  .header-logoBox {
    max-width: 45%;
  }
  .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;
  }
  .serve_hand_mainBox {
      padding: 35px 0;
  }
  /* OUR JOURNEY SECTION END */
  
}





