@import url('https://fonts.googleapis.com/css2?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 VARIABLE */
:root {
  --themeColor: #f25a0d;
  --primaryColor: #ff8c32;
  --textLight: #847062;
  --backgroundColor: #f6f4f0;
  --white: #fff;
  --black: #000;
  --textDark: #32241b;
  --textGray: #eee;
}

/* CUSTOM CSS HERE */
* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  line-height: normal !important;
}

body {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: 100dvh;
  font-weight: 400;
  box-sizing: border-box;
  line-height: normal;
  background-color: var(--backgroundColor) !important;
}

.page-scroll-area {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Custom Scrollbar */
.page-scroll-area::-webkit-scrollbar {
  width: 4px;
}

.page-scroll-area::-webkit-scrollbar-track {
  background: #b1b1b1c0;
  border-radius: 10px;
}

.page-scroll-area::-webkit-scrollbar-thumb {
  background: var(--themeColor);
  border-radius: 10px;
}

.font-inter {
  font-family: "Inter", sans-serif;
}

.container {
  max-width: 1260px !important;
}

body::-webkit-scrollbar {
  display: none;
}

a {
  text-decoration: none !important;
}

.clip-path {
  clip-path: border-box;
}


/* FONT SIZE */
.font-58 {
  font-size: clamp(1.625rem, 1.2046rem + 2.0382vw, 3.625rem);
}

.font-48 {
  font-size: clamp(1.375rem, 1.0459rem + 1.6456vw, 3rem);
}

.font-42 {
  font-size: clamp(1.25rem, 0.9715rem + 1.3924vw, 2.625rem);
}

.font-34 {
  font-size: clamp(1.375rem, 2.8vw, 34px);
}

.font-30 {
  font-size: clamp(1.25rem, 2.5vw, 30px);
}

.font-24 {
  font-size: clamp(1rem, 0.8949rem + 0.5096vw, 1.5rem);
}

.font-22 {
  font-size: clamp(18px, 2vw, 22px);
}

.font-20 {
  font-size: clamp(1rem, 0.95rem + 0.25vw, 1.25rem);
}

.font-18 {
  font-size: clamp(0.875rem, 0.825rem + 0.25vw, 1.125rem) !important;
}

.font-16 {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.font-14 {
  font-size: clamp(0.6875rem, 0.65rem + 0.1875vw, 0.875rem) !important;
}

.font-12 {
  font-size: clamp(0.625rem, 0.6rem + 0.125vw, 0.75rem);
}

.font-10 {
  font-size: 10px;
}

/* Gap */

.scalable-gap-24-16 {
  gap: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
}

.scalable-gap-16-12 {
  gap: clamp(0.75rem, 0.7rem + 0.25vw, 1rem);
}

.scalable-gap-12 {
  gap: 12px;
}

.scalable-gap-20 {
  gap: clamp(1rem, 0.9322rem + 0.339vw, 1.25rem);
}

.scalable-p-12 {
  padding: 12px;
}

/* FONT WEIGHT */
.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

/* COLOR */

.themeColor {
  color: var(--themeColor);
}

.textLight {
  color: var(--textLight);
}

.textDark {
  color: #32241b;
}

.black {
  color: var(--black);
}


:focus-visible {
  outline: var(--Primary-color) auto 0px;
}

.lh-0 {
  line-height: 0;
}

/* Section Scroll animation */
section {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Navbar */
.navbar {
  width: 100%;
  padding: 16px clamp(0rem, -0.2785rem + 1.3924vw, 1.375rem) !important;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo img {
  width: 160px;
  transition: 0.3s ease;
  scale: 1.2;
}

.nav-logo img:hover {
  transform: scale(1.05);
}

.nav-toggle {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  width: 100%;
  height: 3px;
  background: var(--black);
  border-radius: 4px;
  transition: 0.4s;
}

.navbar-list {
  align-items: start;
  flex-direction: column;
  gap: 12px;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 75px;
  right: 22px;
  background: var(--white);
  width: 250px;
  padding: 25px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
  gap: 18px;
}

.nav-link-list {
  color: var(--black);
  text-decoration: none;
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  font-weight: 500;
  transition: 0.3s ease;
  position: relative;
}

.nav-link-list.active {
  color: var(--themeColor);
  font-weight: 500;
}

.nav-link-list:not(.nav-btn)::after {
  content: "";
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f25a0d, #e9942ce0);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link-list:hover::after {
  width: 20%;
}

.navbar {
  transition: 0.4s ease;
}

.navbar.scrolled {
  background: rgb(155 120 40 / 29%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .25);
  position: fixed;
  top: 0;
  z-index: 999;
}

.topbar {
  background: linear-gradient(90deg, #f25a0d, #e9942ce0);
  color: var(--white);
  font-size: 14px;
  padding: 8px 0;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.topbar-left a {
  color: var(--white);
  text-decoration: none;
  transition: color 0.4s ease, transform 0.4s ease;
  font-size: clamp(0.5625rem, 0.4992rem + 0.3165vw, 0.875rem);
}

.topbar-left svg {
  height: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
  width: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.topbar-left a:hover {
  color: var(--black);
  transform: translateY(-1px);
  text-decoration: underline;
}


.social-media-icon {
  color: var(--themeColor);
  background-color: var(--white);
  border-radius: 50%;
  height: clamp(1.5rem, 1.4241rem + 0.3797vw, 1.875rem);
  width: clamp(1.5rem, 1.4241rem + 0.3797vw, 1.875rem);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.social-media-icon svg {
  height: clamp(0.75rem, 0.6741rem + 0.3797vw, 1.125rem);
  width: clamp(0.75rem, 0.6741rem + 0.3797vw, 1.125rem);
}

.social-media-icon:hover {
  color: var(--white);
  background-color: var(--themeColor);
  transform: scale(1.2);
}


/* Contact Button */
.primary-btn {
  padding: 10px clamp(1rem, 0.9494rem + 0.2532vw, 1.25rem);
  color: var(--white);
  background: linear-gradient(180deg, #f25a0d 0%, #e9942ce0 100%);
  border: none;
  position: relative;
  overflow: hidden;
  transition: transform .4s ease;
  border-radius: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(0.8125rem, 0.7745rem + 0.1899vw, 1rem);
  font-weight: 500;
}

.primary-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(255, 184, 65, .4);
}

.outline-btn {
  transition: .35s ease;
  background: linear-gradient(135deg, #2b1d14, #2b1d14) padding-box,
    linear-gradient(180deg, #ffce83, #ff8c32) border-box;
  border: 2px solid transparent;
  padding: 10px 24px;
  color: var(--white);
  border-radius: 12px;
}

.outline-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(255, 140, 50, .45);
}

.donateNow-btn,
.outline-btn {
  flex: 1;
  text-align: center;
  width: clamp(9.375rem, 8.7421rem + 3.1646vw, 12.5rem);
}

/* Shine Swipe Effect */
.primary-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .6), transparent);
  transform: skewX(-25deg);
  transition: .6s;
}

.primary-btn:hover::after {
  left: 130%;
}

/* Hero Section */
.hero-slide {
  height: 80vh;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 40px;
  background: rgba(255, 255, 255, .18);
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25) inset,
    0 10px 40px rgba(0, 0, 0, .25);
  letter-spacing: .3px;
  transition: .4s ease;
}

.hero-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 50px rgba(0, 0, 0, .35);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgb(232 96 27 / 5%), rgb(232 96 27 / 90%));
  backdrop-filter: blur(3px);
}

.carousel-caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 24px;
}

.carousel.carousel-fade .carousel-item {
  transition: opacity 1s ease-in-out;
}

.fade-content {
  opacity: 0;
  transform: translateY(20px);
  transition: all .9s ease;
}

.carousel-item.active .fade-content {
  opacity: 1;
  transform: translateY(0);
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  width: 50px;
  height: 50px;
  background: #ffffff10;
  border: 2px solid var(--white);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1 !important;
}

#heroCarousel .carousel-control-prev {
  left: 30px;
}

#heroCarousel .carousel-control-next {
  right: 30px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: none;
}

#heroCarousel .carousel-control-prev,
#heroCarousel .carousel-control-next {
  animation: pulse 1.5s infinite ease-in-out;
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
  width: 24px !important;
  height: 24px !important;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.8);
  }

  100% {
    box-shadow: 0 0 25px 15px rgba(255, 255, 255, 0);
  }
}


/* Section css */
.gradiant-button {
  background: linear-gradient(180deg, #f25a0d 0%, #e9942ce0 100%);
  border-radius: 60px;
  padding: 8px 24px;
  border: 0;
  font-size: clamp(0.875rem, 0.8497rem + 0.1266vw, 1rem);
}

.section-title {
  color: #32241b;
  font-size: clamp(1.5rem, 1.4241rem + 0.3797vw, 1.875rem);
  font-weight: 700;

  span {
    background: linear-gradient(180deg, #f25a0d 0%, #e9942c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

.section-gap {
  gap: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
}

/* FAQ SECTION */
.faqs-section {
  background: #f0ece6;
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0;
}

.faqs-section {
  body.light-theme .faqs-section {
    background: var(--white);
  }

  .accordion {
    width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .accordion-item {
    border-radius: 12px !important;
    overflow: hidden;
    transition: all 0.3s ease;
    background: linear-gradient(180deg, #fff, #fff) padding-box, linear-gradient(180deg, #e9942e00, #f25a0d69) border-box;
    border: 1px solid transparent !important;
  }

  .accordion-item:hover {
    background: linear-gradient(180deg, #fff, #fff) padding-box, linear-gradient(180deg, #e9942e00, #f25a0d) border-box;
    border: 1px solid transparent !important;
    box-shadow: 0 4px 12px rgba(223, 173, 0, 0.1);
  }

  body.light-theme .accordion-item {
    background-color: var(--white);
    border-color: #e0e4e8;
  }

  body.light-theme .accordion-item:has(.accordion-collapse.show) {
    background-color: #f5f7fa;
    border-color: #e0e4e8;
  }

  .accordion-button {
    background-color: transparent;
    color: #847062;
    padding: 20px 24px;
    font-size: 16px;
    width: 100%;
    text-align: left;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .accordion-button:not(.collapsed) {
    background-color: var(--cardBg);
    color: #212529;
    box-shadow: none;
  }

  .accordion-header {
    padding: 0;
    align-items: center;
    margin: 0;
  }

  .accordion-header span {
    color: var(--themeColor);
    font-weight: 600;
  }

  .accordion-button::after {
    content: '';
    position: absolute;
    right: 24px;
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--themeColor);
    border-bottom: 2px solid var(--themeColor);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    background: transparent;
    box-shadow: none;
  }

  .accordion-button:not(.collapsed)::after {
    transform: rotate(-135deg);
    background: transparent;
  }

  .accordion-button.collapsed::after {
    transform: rotate(45deg);
    background: transparent;
  }

  .accordion-button:focus {
    box-shadow: none;
    border: none;
  }

  .accordion-body {
    padding: 0 24px 24px 24px;

    h5 {
      color: #847062;
    }
  }

}

/* Certifications section */
.certification-card-container {
  height: 100%;
  padding-bottom: clamp(3.125rem, 2.6187rem + 2.5316vw, 5.625rem);
}

.certification-section {
  padding-top: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem);
}

.certification-section-gap {
  gap: clamp(6.25rem, 5.769rem + 2.4051vw, 8.625rem);
}

.certification-card {
  background: linear-gradient(180deg, #fff, #fff) padding-box,
    linear-gradient(180deg, #f25a0d, #e9942c1c) border-box;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 60px 44px 44px;
  position: relative;
  transition: .35s ease-in-out;
  height: 100%;

  h4 {
    line-height: 22px;
    transition: .3s;
  }

  &:hover {
    transform: translateY(-10px);
    background: linear-gradient(180deg, #fff, #fff) padding-box,
      linear-gradient(180deg, #f25a0d, #e9942c1c) border-box;
    border-color: #f25a0d;
    box-shadow: 0 25px 60px #ffc2a363;
  }

  .certification-icon {
    transition: .35s ease;
  }

  &:hover .certification-icon {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 8px 25px rgba(0, 0, 0, .4));
  }
}

.certification-card-icon {
  position: absolute;
  z-index: 9;
  display: flex;
  justify-content: center;
  align-items: center;
  top: -50px;
  background: linear-gradient(180deg, #f25a0d 0%, #e9942c 100%);
  height: 80px;
  width: 80px;
  border-radius: 50%;
}

.certification-card-icon svg {
  stroke: var(--white);
}

.view-btn {
  background-color: #f9e8dd;
  border-radius: 8px;
  padding: 6px 12px;
  color: var(--themeColor);
  margin-top: 14px;
}


/* Sewa Programs cards css */
.sewa-programs-section {
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0px;
}

.sewa-programs-card {
  padding: 20px;
  background: var(--white);
  border: 2px solid transparent;
  border-radius: 25px 0 25px 0;
  backdrop-filter: blur(6px);
  transition: all 0.4s ease-in-out;
  position: relative;
  box-shadow: 0px 0px 20px #f16c1b00;
}

.sewa-programs-card:hover {
  border-top: 2px solid #e9942ce0;
  border-left: 2px solid #e9942ce0;
  border-bottom: 2px solid var(--themeColor);
  border-right: 2px solid var(--themeColor);
  box-shadow:
    rgb(240 105 24 / 40%) 5px 5px, rgb(241 101 21 / 30%) 10px 10px;
  transform: translateY(-8px);
}

.sewa-programs-card-img {
  width: 100%;
  height: 65%;
  position: relative;
}

.sewa-programs-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.4s ease;
}

.sewa-programs-card-date {
  position: absolute;
  right: 0;
  top: 0;
  background: linear-gradient(180deg, #f25a0d 0%, #e9942ce0 100%);
  padding: 4px 6px;
  border-radius: 0px 8px 0px 8px;
}

.sewa-programs-card-btn {
  display: inline-block;
  padding: 6px 20px;
  border: 2px solid #e9942ce0;
  border-radius: 20px;
  text-decoration: none;
  color: var(--themeColor);
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  width: 90%;
  align-items: center;
  text-align: center;
}

.sewa-programs-card-btn:hover {
  transform: scale(1.1);
  border-color: var(--themeColor);
}

@media (max-width: 575px) {
  .sewa-programs-wrapper {
    display: flex;
    flex-wrap: nowrap !important;
    gap: 16px;
    /* overflow: hidden; */
    animation: sewaAutoRow 25s linear infinite;
  }

  .sewa-programs-wrapper>.col-md-4 {
    flex: 0 0 auto;
    width: 260px;
    max-width: 260px;
  }

  @keyframes sewaAutoRow {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-60%);
    }
  }
}


/* About Section */
.about-section {
  padding: clamp(3.4375rem, 3.0892rem + 1.5924vw, 5rem) 0 clamp(3.4375rem, 3.0892rem + 1.5924vw, 5rem);
  background-color: #f0ece6;
  ;
}

.about-cards {
  background-color: var(--white);
  border-radius: 16px;
  padding: 8px clamp(0.75rem, 0.5981rem + 0.7595vw, 1.5rem);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);

}

.about-icon {
  color: var(--themeColor);
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 45px;
  align-items: center;
}

.about-images {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 18px;
  padding: clamp(0rem, -0.2532rem + 1.2658vw, 1.25rem);
}

.about-images .img-large {
  grid-column: 2 / 6;
  grid-row: 1 / 5;
}

.about-images .img-large img,
.about-images .img-small-top img,
.about-images .img-small-bottom img {
  transition: transform 0.5s ease, box-shadow 0.4s ease;
}

.about-images .img-large:hover img {
  transform: scale(1.04);
}

.about-images .img-small-top:hover img {
  transform: scale(1.04);
}

.about-images .img-small-bottom:hover img {
  transform: scale(1.04);
}

.about-images .img-large img {
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
}

.about-images .img-small-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.img-small-top {
  height: 270px;
}

.img-small-bottom img {
  object-fit: cover;
  width: 471px;
  position: absolute;
  bottom: 12px;
  height: 201px;
  border: 6px solid var(--white);
  border-radius: 18px;
  left: 16px;
}

.badge-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-badge {
  width: 130px;
  height: 130px;
  background: var(--themeColor);
  color: var(--white);
  border-radius: 50%;
  text-align: center;
  font-weight: 600;
  animation: rotateBadge 10s linear infinite;
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.circular-badge:hover {
  transform: scale(1.05);
}

.badge-svg {
  width: 80%;
  height: 80%;
}

.circle-text {
  font-size: 52px;
  fill: var(--white);
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.arrow line {
  stroke: var(--white);
  stroke-width: 6;
  stroke-linecap: round;
}

/* Round Badge */

@keyframes rotateBadge {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.about-content h2 {
  margin-bottom: 20px;
}

/*  Our programs section */

.our-programs-section {
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0px;
}

.program {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--textGray);
}

.program img {
  width: 95px;
  height: 75px;
  object-fit: cover;
  border-radius: 10px;
  transition: all .35s ease;
}

.program:hover img {
  transform: scale(1.08);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .2);
}

.program a {
  font-size: clamp(0.75rem, 0.7247rem + 0.1266vw, 0.875rem);
  color: var(--themeColor);
  font-weight: 600;
  position: relative;
  transition: all .3s ease;
}

.program a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--themeColor);
  transition: width .3s ease;
}

.program:hover a {
  color: var(--black);
  padding-left: 5px;
}

.program:hover a::after {
  width: 100%;
}

/* Stack Slider Change a Life */

.life-section {
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0px clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem);
  background-color: #f0ece6;
}

.stack-slider {
  position: relative;
  height: 490px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.stack-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  background: var(--white);
  border-radius: 20px;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0.4;
  transition: all 0.6s ease;
  overflow: hidden;
}

.stack-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.stack-item .content {
  padding: 14px;
  text-align: center;
}

.stack-item button {
  margin-top: 8px;
  background: var(--themeColor);
  color: var(--white);
  border: none;
  padding: 7px 14px;
  border-radius: 8px;
}

.stack-item.active {
  transform: translate(-50%, -50%) scale(1.1);
  opacity: 1;
  z-index: 5;
}

.stack-item.prev {
  transform: translate(-147%, -50%) scale(0.9);
  opacity: 0.6;
  z-index: 4;
}

.stack-item.next {
  transform: translate(47%, -50%) scale(0.9);
  opacity: 0.6;
  z-index: 4;
}

.stack-item.prev2 {
  transform: translate(-232%, -50%) scale(0.8);
  opacity: 0.4;
  z-index: 2;
}

.stack-item.next2 {
  transform: translate(132%, -50%) scale(0.8);
  opacity: 0.4;
  z-index: 2;
}

.stack-item .card-img {
  position: relative;
}

.stack-item .card-img img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.stack-item .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(180deg, #f25a0d 0%, #e9942c 100%);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.stack-item .content {
  padding: 14px 16px 18px;
  text-align: left;
}

.stack-item h4 {
  margin: 0px 0px 8px;
  font-size: 16px;
  font-weight: 600;
}

.stack-item .info {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  color: var(--textLight);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.info svg {
  color: var(--themeColor);
}

.stack-item .info li {
  margin-bottom: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stack-item .adopt-btn {
  margin-top: 12px;
  width: 100%;
  background: linear-gradient(180deg, #f25a0d 0%, #e9942c 100%);
  border: none;
  color: var(--white);
  padding: 8px 10px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 14px;
}

.stats-section {
  position: relative;
  background: linear-gradient(135deg, #ff6f3c, #ff935c);
  color: var(--white);
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0px;
  text-align: center;
  overflow: hidden;
}

.stats-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/png/counters-img.jpg') center/cover no-repeat;
  filter: blur(8px);
  opacity: 0.5;
  z-index: 0;
}

.stats-section * {
  position: relative;
  z-index: 1;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.15);
  padding: clamp(1rem, 0.8861rem + 0.5696vw, 1.5625rem) 15px;
  border-radius: 12px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}

.stat-card h3 {
  font-size: clamp(1.5rem, 1.3987rem + 0.5063vw, 2rem);
  font-weight: 700;
  margin-bottom: clamp(0rem, -0.1013rem + 0.5063vw, 0.5rem);
}

.stat-card p {
  font-size: clamp(0.75rem, 0.6994rem + 0.2532vw, 1rem);
}

.stat-card:hover {
  transform: translateY(-5px);
}

.btn-cta {
  text-decoration: none;
  background: var(--white);
  color: var(--themeColor);
  padding: clamp(0.625rem, 0.5997rem + 0.1266vw, 0.75rem) clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem);
  border-radius: 8px;
  font-weight: 600;
  font-size: clamp(0.8125rem, 0.7745rem + 0.1899vw, 1rem);
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta:hover {
  background: var(--themeColor);
  color: var(--white);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  background-color: #533d2d;
  border-top: 1px solid var(--white);
  border-radius: 25px 25px 0px 0px;
  padding: clamp(1.875rem, 1.7484rem + 0.6329vw, 2.5rem) clamp(0rem, -0.5063rem + 2.5316vw, 2.5rem) clamp(2.1875rem, 1.9976rem + 0.9494vw, 3.125rem);
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
}

.footer-logo {
  width: 200px;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}

.footer p {
  color: #a3a3a3;
  line-height: 22px;
}

.footer-col ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-col ul li {
  color: #a3a3a3;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);

  a {
    color: #a3a3a3;
    transition: all 0.3s ease;
    font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
  }
}

.footer-col ul li:hover {
  color: var(--themeColor);
  padding-left: 4px;

  a {
    color: var(--themeColor);
  }
}

.footer-social img {
  width: 28px;
  margin-right: 8px;
}

.copyright {
  color: #a3a3a3;
}

.footer-icon {
  width: 44px;
  height: 44px;
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-icon img {
  filter: brightness(0) invert(1);
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.footer-icon:hover {
  background-color: var(--themeColor);
  transform: scale(1.15) translateY(-4px);
  box-shadow: 0 6px 16px rgba(223, 173, 0, 0.3);
}

.fill-primary {
  fill: var(--themeColor);
  outline: 0;
  color: var(--themeColor);
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #ffffff30;
}



/* Adopt page css */

/* Donation-banner  */
.donation-banner {
  padding: clamp(2.5rem, 2.2468rem + 1.2658vw, 3.75rem) 0px;
}

.donation-container {
  width: 100%;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  z-index: 99;
}

.donation-banner-content {
  margin: -60px auto 0;
  background: var(--white);
  padding: clamp(1.25rem, 1.1234rem + 0.6329vw, 1.875rem);
  border-radius: 18px;
  text-align: center;
  position: relative;
  z-index: 9999;
}

.donation-banner-content::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -50px;
  width: 245px;
  height: 180px;
  background: radial-gradient(#f6d1b5 10%, transparent 11%);
  background-size: 20px 20px;
  opacity: .3;
  z-index: -1;
}

.donate-donor-card {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 0px 4px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.highlight {
  background: linear-gradient(180deg, #f25a0d, #e9942c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.typewriter {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  animation: typing 6s steps(30, end) infinite;
}

@keyframes typing {
  0% {
    max-width: 0;
  }

  40% {
    max-width: 100%;
  }

  60% {
    max-width: 100%;
  }

  100% {
    max-width: 0;
  }
}


.highlight {
  color: var(--themeColor);
  font-weight: 700;
}

.stats {
  background: #fafafa;
  padding: clamp(0.625rem, 0.5491rem + 0.3797vw, 1rem) clamp(0.75rem, 0.6487rem + 0.5063vw, 1.25rem);
  border-radius: 12px;
  text-align: center;
}

/* recent donars */
.donor-slider {
  height: 100px;
  overflow: hidden;
  position: relative;
}

.donate-donor-card {
  position: absolute;
  width: 100%;
  transition: all 0.6s ease;
  opacity: 0;
  transform: translateY(100%);
}

.donate-donor-card.active {
  opacity: 1;
  transform: translateY(0);
}

.donate-donor-card.exit {
  opacity: 0;
  transform: translateY(-100%);
}

.donate-donor-card.active {
  background: var(--white);
  border: 1px solid #ff8b32b6;
}

.donation-content-card {
  position: relative;
  z-index: 9999;
}

.image-header {
  position: relative;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  z-index: 9;
}

.image-header img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.donation-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--white);
  text-align: center;
  padding: 20px;
  border-radius: 20px;
  z-index: 9;
}

.points span {
  background: #fff1e7;
  padding: clamp(0.25rem, 0.1994rem + 0.2532vw, 0.5rem) clamp(0.5rem, 0.4241rem + 0.3797vw, 0.875rem);
  border-radius: 999px;
  font-size: clamp(0.5625rem, 0.5245rem + 0.1899vw, 0.75rem);
  color: var(--textDark);
  display: flex;
  align-items: center;
}

.points i {
  margin-right: 6px;
  color: var(--themeColor);
}

.page-content {
  padding: 30px;
}

/* Donation Divine Card */
.donation-divine-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #dedede;
  padding: 22px;
}

.badge-seva {
  background: linear-gradient(180deg, #f25a0d, #e9942c);
  color: var(--white);
  width: max-content;
  border-radius: 22px;
  padding: 4px 12px;
}

.badge-btn {
  border-radius: 6px;
  padding: 2px clamp(0.4375rem, 0.4248rem + 0.0633vw, 0.5rem);
}

.badge-verified {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge-tax {
  background: #eef2ff;
  color: #3730a3;
}

.progress-wrap {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, #fb923c, #f97316);
}

.form-input {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #ddd;
  outline: none;
  transition: all 0.3s ease;
  background-color: var(--white);
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 10px 12px;
}

.form-input:hover {
  border-color: var(--themeColor);
  box-shadow: 0 0 5px rgba(242, 90, 13, 0.2);
}

.form-input:focus,
.form-select:focus {
  border-color: var(--themeColor) !important;
  box-shadow: 0 0 8px rgba(242, 90, 13, 0.3) !important;
}

/* Adopt page tabs css */
.tabs-section {
  position: relative;
}

.tabs-wrapper {
  position: relative;
}

.tabs-container-list {
  position: sticky;
  top: 77px;
  background-color: var(--white);
  border-radius: 50px;
  padding: 8px 54px 8px 16px;
  z-index: 9;
}

.tabs-container-list.stop-sticky {
  position: absolute;
  top: auto;
  bottom: 0;
}

.tabsScroll {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #ff7a18 #f1f1f1;
}

.tabsScroll::-webkit-scrollbar {
  height: 6px;
}

.tabsScroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 50px;
}

.tabsScroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #ff6a00, #ff9f1c);
  border-radius: 50px;
}

.tabsScroll::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #ff5a00, #ff8c00);
}

.tab {
  flex: 0 0 auto;
  padding: 8px 24px;
  border-radius: 50px;
  border: none;
  background: none;
  cursor: pointer;
  font-size: 14px;
  transition: 0.3s;
  white-space: nowrap;
  min-width: 150px;
}

.tab:hover {
  background: #f0f0f0;
}

.tab.active {
  background: linear-gradient(180deg, #f25a0d, #e9942c);
  color: var(--white);
  font-weight: 600;
}


.tabs-content {
  padding: clamp(0rem, -0.2532rem + 1.2658vw, 1.25rem) clamp(0rem, -0.2532rem + 1.2658vw, 1.25rem);
}

.tab-panel {
  animation: fadeSlide 0.35s ease;
  padding-bottom: clamp(1.875rem, 1.6218rem + 1.2658vw, 3.125rem);
  min-height: 400px;
  scroll-margin-top: 120px;
}

/* Animation */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Gallery Card */
/* wrapper */
.auto-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.auto-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: autoScroll 30s linear infinite;
  /* speed yahin control */
}

.auto-slide {
  min-width: 260px;
  height: 200px;
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--black);
  cursor: pointer;
}

.auto-slide img,
.auto-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.auto-slide:hover img,
.auto-slide:hover video {
  transform: scale(1.15);
}

.auto-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.7),
      rgba(0, 0, 0, 0.1));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.auto-slide:hover .auto-overlay {
  opacity: 1;
}

@keyframes autoScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}


/* Vedio gallery */
.video-gallery {
  padding: 50px 15px;
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  background: var(--white);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-width: 260px;
  height: 200px;
  flex-shrink: 0;
}

.video-card:hover {
  transform: translateY(-5px);
}

.video-thumb,
.video-card video,
.video-card iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 15px;
  transition: transform 0.6s ease;
}

.video-card:hover .video-thumb,
.video-card:hover video,
.video-card:hover iframe {
  transform: scale(1.12);
}

.play-btn {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 36px;
  color: var(--white);
  pointer-events: none;
}

.play-btn::before {
  content: "▶";
  background: rgba(0, 0, 0, 0.6);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.75),
      rgba(0, 0, 0, 0.05));
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.video-card:hover .video-overlay {
  opacity: 1;
}


/* Benefits Section */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
  gap: 28px;
}

.benefit-card {
  background: var(--white);
  border-radius: 18px;
  padding: 25px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
  overflow: hidden;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
  box-shadow: 0 12px 25px rgba(0, 0, 0, .03);
}

/* subtle background glow layer */
.benefit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left,
      rgba(242, 90, 13, 0.12),
      transparent 60%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}

.benefit-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 55px rgba(0, 0, 0, .12);
  border-color: var(--themeColor);
}

.benefit-card:hover::before {
  opacity: 1;
}

.icon-wrap {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffe9d1, #fff3e6);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border: 1px solid rgb(240 105 24 / 33%);
}

.icon-wrap img {
  width: 36px;
}

.benefit-card h3 {
  font-size: 18px;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 6px;
}

.benefit-card p {
  font-size: 14px;
  color: #6f6f6f;
  line-height: 22px;
  margin-bottom: 0px;
}


/* Certificates */
.cert-section {
  padding: 20px 0;
  overflow: hidden;
  border-radius: 20px;
}

.cert-scroll {
  width: 100%;
  overflow: hidden;
}

.cert-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scrollCards 18s linear infinite;
}

.cert-card {
  background: #fffaf6;
  border: 1.5px solid #3a2a1f;
  border-radius: 18px;
  padding: 28px 20px;
  text-align: center;
}

.cert-card img {
  max-width: 90px;
  margin-bottom: 15px;
}

.cert-card p {
  font-size: 14px;
  color: #2b2b2b;
  line-height: 1.6;
  margin: 0;
}

/*  Animation */
@keyframes scrollCards {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* ngo-section Highlights */
.ngo-section {
  padding: 30px clamp(0.625rem, 0.4984rem + 0.6329vw, 1.25rem);
}

.ngo-bar {
  position: relative;
  background: #8b1c1c;
  color: var(--themeColor);
  text-align: center;
  padding: 12px 20px;
  font-size: clamp(0.625rem, 0.5997rem + 0.1266vw, 0.75rem);
  letter-spacing: 0.5px;
  font-weight: 600;
}

.ngo-card {
  padding: 0px clamp(0rem, -0.2532rem + 1.2658vw, 1.25rem);
}

/* Ribbon ends */
.ngo-bar::before,
.ngo-bar::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
  background: #6f1414;
}

.ngo-bar::before {
  left: -14px;
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
}

.ngo-bar::after {
  right: -14px;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

/*  Donors */
/* Tabs */
.donor-tabs {
  border: 1.5px solid var(--primaryColor);
  border-radius: 30px;
  width: fit-content;
}

.donor-tabs .nav-link {
  border: none;
  color: var(--primaryColor);
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
}

.donor-card {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.donor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.donor-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: clamp(2.1875rem, 2.0989rem + 0.443vw, 2.625rem);
  height: clamp(2.1875rem, 2.0989rem + 0.443vw, 2.625rem);
  border-radius: 50%;
  background: var(--primaryColor);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.amount {
  border: 1.5px solid var(--primaryColor);
  color: var(--primaryColor);
  padding: 6px 10px;
  border-radius: 8px;
  font-size: clamp(0.625rem, 0.5997rem + 0.1266vw, 0.75rem);
  font-weight: 600;
  white-space: nowrap;
}

.donor-tabs {
  .nav-link.active {
    background: var(--primaryColor);
    color: var(--white) !important;
  }

  .nav-link:focus,
  .nav-link:hover {
    color: var(--black);
  }
}

/* sewa */
.donation-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  transition: transform .35s ease, box-shadow .35s ease;
}

.donation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.14);
}

.donation-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.donation-avtar-icon {
  filter: brightness(0) saturate(100%) invert(100%) sepia(5%) saturate(19%) hue-rotate(212deg) brightness(106%) contrast(106%);
}

.user-donors {
  margin-left: -5px;
}

.donation-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.donation-tag {
  display: inline-block;
  background: var(--themeColor);
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
  font-weight: 600;
}

.donation-body p {
  font-size: 12px;
  color: #444;
  margin-bottom: 10px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.donation-link {
  font-size: 13px;
  color: var(--themeColor);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 12px;
}

.donate-btn {
  width: 100%;
  background: transparent;
  color: var(--themeColor);
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  border: 1px solid #f15a0dab;
}

.donate-btn.outline {
  background: transparent;
  color: var(--themeColor);
  border: 1.5px dashed var(--themeColor);
}

/* Any Amount */
.donation-input {
  display: flex;
  align-items: center;
  border: 1.5px solid #ddd;
  border-radius: 10px;
  overflow: hidden;
}

.donation-input span {
  padding: 8px 10px;
  background: #f7f7f7;
}

.donation-input button {
  background: var(--themeColor);
  color: var(--white);
  border: none;
  padding: 7px 14px;
  border: 1px solid #ddd;
  border-radius: 0px 12px 12px 0px;
}



/* Testimonails */
.testimonails-section {
  padding: clamp(3.125rem, 2.8718rem + 1.2658vw, 4.375rem) 0px clamp(3.125rem, 2.8718rem + 1.2658vw, 4.375rem);
}

.swiper-container {
  width: 100%;
  height: 100%;
  margin: 20px auto;
}

.swiper-slide-container {
  font-size: 15px;
  background: var(--white);
  height: 90%;
  padding: 15px;
  border-radius: 15px;
}

.swiper-slide {
  width: 300px !important;
}

.img-container {
  position: relative;
  border-radius: 15px;
  width: 100%;
  height: 250px;
  background-size: cover !important;
}

.img-container:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: inline-block;
  border-radius: 15px;
  background: linear-gradient(to bottom,
      rgba(243, 251, 255, 0) 0%,
      rgba(0, 0, 0, 0.644) 100%);
}

.name-video {
  position: absolute;
  top: 80%;
  left: 0%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.name-video {
  .title {
    color: var(--white);
    padding-left: 10px;
    padding-right: 30px;
  }
}

/* video palayer css */
.video-play-button {
  transform: translateX(-50%) translateY(-0%);
  box-sizing: content-box;
  display: block;
  width: 10px;
  height: 18px;
  border-radius: 50%;
  padding: 5px 13px 5px 14px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  -webkit-animation: pulse-border 1500ms ease-out infinite;
  animation: pulse-border 1500ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button:hover:after {
  background-color: var(--black);
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 15px solid var(--themeColor);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

@-webkit-keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}


/*  REVIEW CARD  */
.review-card-modern {
  background: var(--white);
  border-radius: 20px;
  padding: 30px 20px 20px;
  text-align: center;
  position: relative;
  transition: transform 0.4s, box-shadow 0.4s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
  opacity: 0.5;
  transform: scale(0.9);
  transition: all 0.4s ease;
}

.review-card-modern:nth-child(even) {
  transform: rotate(1deg);
}

.avatar-wrapper {
  width: 90px;
  height: 90px;
  margin: -50px auto 15px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--themeColor);
  background: var(--white);
}

.avatar-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stars {
  color: #f5a623;
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.testimonial-slider-wrapper {
  overflow: hidden;
  width: 100%;
}

.testimonial-slide.center .review-card-modern {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-15px);
  box-shadow: 0 15px 0 5px rgb(255 134 56);
}

.testimonial-slider-wrapper {
  overflow: hidden;
  padding-top: clamp(1.875rem, 1.4953rem + 1.8987vw, 3.75rem);

}


/* modal css */
.donation-modal {
  border-radius: 20px;
  background: #fff7f4;
}

.donation-header {
  border-bottom: 0;
  padding: 18px 22px;
  background: linear-gradient(90deg, #f25a0d2b, #e9942c33);
}

.donation-total {
  background: var(--themeColor);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  margin-left: auto;
  margin-right: 12px;
  white-space: nowrap;
}

.donation-item-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: 0 2px 2px rgb(242 90 13 / 60%);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
  position: relative;
}

.donation-item-card:hover {
  transform: translateY(-8px);
}

.item-img-wrap img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.donation-item-card:hover .item-img-wrap img {
  transform: scale(1.08);
}

.item-img-wrap img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.item-rating {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--white);
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
}

.item-content {
  padding: 14px;
}

.item-price .old {
  text-decoration: line-through;
}

.qty-box button {
  width: 26px;
  height: 26px;
  border: none;
  background: var(--themeColor);
  color: var(--white);
  border-radius: 6px;
  font-size: 16px;
}

.donation-btn {
  background-color: var(--themeColor);
  padding: 7px 14px;
}

.donation-footer {
  border-top: 0;
  padding: 16px 22px;
  background: var(--white);
}

.mini-box {
  background: #fff7f2;
  padding: 8px;
  border-radius: 10px;
}

.mini-box img {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  object-fit: cover;
}

.qty-pill {
  background: var(--white);
  border-radius: 8px;
  padding: 4px 8px;
  box-shadow: 0 0px 6px rgba(0, 0, 0, .08);
}

.qty-btn {
  width: 20px;
  height: 20px;
  border: none;
  background: #f25a0dc2;
  color: var(--white);
  border-radius: 5px;
  font-size: 14px;
}

.desc-text {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 6px;
}

.desc-text.show-full {
  -webkit-line-clamp: unset;
}

/* Bottom to Top Button */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--themeColor, #f25a0d);
  color: var(--white);
  border: none;
  cursor: pointer;
  display: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  z-index: 99999;
  font-size: 20px;
}

.back-to-top:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.3);
}


/* OFFCANVAS */
.cart-offcanvas {
  width: 360px;
}

.cart-header {
  background: linear-gradient(90deg, #f25a0d, #e9942c);
}

.cart-body {
  padding: 16px;
  background: #faf6f085;
}

.cart-item {
  display: flex;
  gap: 10px;
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  align-items: center;
  box-shadow: 0px 0px 4px #988b8b21;
}

.cart-item img {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: cover;
}

.remove-item {
  border: none;
  background: #f2f2f2;
  border-radius: 50%;
  width: 24px;
  height: 24px;
}

.cart-footer {
  padding: 14px;
  border-top: 1px solid var(--textGray);
  background: var(--white);
}

.custom-checkbox {
  width: 14px;
  height: 14px;
  border: 1px solid #8A92A6;
  border-radius: 3px;
  margin: 0;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  position: relative;
  transition: all 0.3s ease;
}

.custom-checkbox:checked {
  background-color: var(--white);
  border-color: var(--themeColor);
}

.custom-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(6deg);
  color: var(--themeColor);
  font-size: 10px;
  font-weight: bold;
}

.custom-checkbox:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgb(242 89 13 / 18%);
}

.cart-scroll-area {
  height: 155px;
  overflow-y: auto;
  padding: 4px;
}





/*======================= About page css here========================= */

/* About hero section */
.about-flow {
  position: relative;
  padding: clamp(3.75rem, 3.3703rem + 1.8987vw, 5.625rem) 0px clamp(3.75rem, 3.3703rem + 1.8987vw, 5.625rem);
  margin: auto;
  background: url("../images/png/about-banner-img.jpg") center / cover no-repeat;
}

.about-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.78);
  z-index: 0;
}

.about-flow>* {
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: clamp(36px, 7vw, 72px);
  line-height: 1.1;
  font-weight: 700;
}

.about-title span {
  color: var(--themeColor);
}

.about-text {
  max-width: 800px;
  font-size: clamp(0.875rem, 0.7991rem + 0.3797vw, 1.25rem);
  line-height: 1.9;
  color: #333;
  margin-bottom: 70px;
}

.stats-band {
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 18px 0;
}

.stats-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: scrollStats 18s linear infinite;
}

.stats-track span {
  font-size: 22px;
  font-weight: 600;
  color: #222;
}

@keyframes scrollStats {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Where it ll Began */
.begin-section {
  padding: clamp(2.5rem, 1.8671rem + 3.1646vw, 5.625rem) 0px;
  background: var(--white);
}

.begin-wrap {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.begin-mantra {
  color: var(--themeColor);
  font-size: 14px;
  letter-spacing: 1px;
  font-weight: 600;
}

.begin-content {
  gap: 30px;
}

.story-box {
  background: #f7c3891f;
  border-radius: 18px;
  padding: 18px 20px;
}

.frame-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.frame-wall figure {
  background: var(--white);
  padding: 10px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  margin-bottom: 0px;
}

.frame-wall figure {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.frame-wall img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.frame-wall figure:hover {
  transform: translateY(-6px);
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.25);
}

.frame-wall figure:hover img {
  transform: scale(1.04);
  filter: brightness(1.05) saturate(1.1);
}

/* Purpose-section  */
.purpose-section {
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0;
}

.purpose-content {
  gap: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
  text-align: center;
}

.purpose-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
}

.purpose-item {
  text-align: center;
  min-width: 90px;
}

.icon-box {
  width: 64px;
  height: 64px;
  background: #fff7ec;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin: auto;
}

.purpose-item p {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #333;
}

.line {
  width: 36px;
  height: 2px;
  background: linear-gradient(to right, #ff7a00, transparent);
}

/* Our Core Values */
.core-section {
  background-color: var(--white);
}

.core-values-best {
  padding: clamp(3.125rem, 2.6187rem + 2.5316vw, 5.625rem) 20px;
  gap: clamp(2.5rem, 2.2468rem + 1.2658vw, 3.75rem);
}

.values-layout {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}

.center {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.side {
  display: flex;
  justify-content: center;
}

.value-card {
  background: var(--white);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.07);
  transition: 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
}

.value-card h4 {
  font-size: 18px;
  margin: 14px 0 8px;
}

.value-card p {
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


.value-card.highlight-text {
  background: linear-gradient(180deg, #fff1e6, #ffffff);
  border: 1px solid #ffe2cf;
}

.icon {
  width: 56px;
  height: 56px;
  margin: auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.orange {
  background: #fff0e5;
}

.purple {
  background: #f1ebff;
}

.green {
  background: #edf8f1;
}

.yellow {
  background: #fff6dd;
}

.saffron {
  background: #ffe8d2;
}

/* Our Celebrity Guest */
.celebrities-section {
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0 0px;

}

.collage-slider {
  width: 100%;
  overflow: hidden;
}

.collage-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 220px;
  gap: 14px;
  animation: collageScroll 35s linear infinite;
}

.collage-track img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

@keyframes collageScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Help section css */
.help-section {
  padding: clamp(2.5rem, 1.9937rem + 2.5316vw, 5rem) 0;
}

.help-card {
  max-width: 1100px;
  margin: auto;
  background: var(--white);
  border-radius: 18px;
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
  position: relative;
}

.help-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px rgba(255, 122, 0, 0.12);
  pointer-events: none;
}

.help-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: clamp(0.75rem, 0.7247rem + 0.1266vw, 0.875rem);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.help-pill span {
  font-weight: 600;
}

.help-pill.primary {
  background: var(--themeColor);
  color: var(--white);
}

.help-pill.primary:hover {
  transform: translateY(-2px);
}

.help-pill.secondary {
  background: var(--white);
  color: var(--themeColor);
  border: 1px solid var(--themeColor);
}

.help-pill.secondary:hover {
  transform: translateY(-2px);
}

/* Contribute Section */
.contribute-section {
  position: relative;
  height: 500px;
  overflow: hidden;
  background-image: url(../images/png/contribute-banner.jpg);
  background-size: cover;
}

.contribute-section-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.35),
      rgba(0, 0, 0, 0.6));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.contribute-section-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 30px 20px;
  color: var(--white);
  gap: 40px;
}

.contribute-section-title {
  padding-bottom: 100px;
}

.contribute-section-content p {
  opacity: 0.9;
}

.contribute-section-btn {
  border-radius: 50px;
  padding: 10px 30px;
}

/* Disclaimer */
.contribute-disclaimer-box {
  background-color: var(--white);
  color: var(--textDark);
  position: absolute;
  bottom: 0;
  padding: 24px;
  line-height: 1.5 !important;
}

/* Guided by Visionaries */
.ix-slider {
  background: #9f420c54;
  padding: clamp(3.125rem, 2.6187rem + 2.5316vw, 5.625rem) 0;
}

.ix-slider-content {
  gap: clamp(2.5rem, 2.3734rem + 0.6329vw, 3.125rem);
}

.ix-viewport {
  max-width: 1200px;
  margin: auto;
}

.gx-viewport {
  max-width: 1300px;
  margin: auto;
  overflow: hidden;
  padding: clamp(0rem, -0.8861rem + 4.4304vw, 4.375rem) 0px 0px;
}

.gx-track {
  display: flex;
  gap: 26px;
  transition: transform .6s ease;
}

.gx-card {
  min-width: 240px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 22px;
  padding: 16px;
  text-align: center;
  transform: scale(.88);
  opacity: 1;
  transition: all .45s ease;
}

.gx-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 18px;
}

.gx-card.gx-active {
  transform: scale(1.08) translateY(-14px);
  opacity: 1;
  background: var(--white);
}

.gx-card h4 {
  font-size: 16px;
  color: var(--themeColor);
  margin: 8px 0 2px;
}

.gx-card p {
  font-size: 14px;
  margin: 0;
  color: #555;
}

.gx-indicators {
  width: 200px;
  height: 5px;
  background: rgba(0, 0, 0, .18);
  border-radius: 20px;
  margin: 45px auto 0;
  position: relative;
  overflow: hidden;
}

.gx-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 100%;
  background: var(--themeColor);
  border-radius: 20px;
  transition: transform .4s ease;
}

/* Donation Page */
.donation-logo {
  width: 250px;
}

.donation-page {
  width: 100%;
  padding: 40px 15px;
  background: repeating-radial-gradient(circle at 0 0,
      rgba(255, 170, 120, 0.15) 0,
      rgba(255, 170, 120, 0.15) 1px,
      transparent 1px,
      transparent 30px);
  animation: bgShift 20s linear infinite;
}

@keyframes bgShift {
  from {
    background-position: 0 0;
  }

  to {
    background-position: 200px 200px;
  }
}

.donation-box {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  max-width: 460px;
  margin: auto;
  padding: 22px;
}

.donation-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(255, 106, 0, 0.15);
}

.donation-block {
  background: #fff8f1;
  padding: 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.donation-form {
  .form-input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 12px;
    border: 1px solid #ddd;
  }
}

/* Donation page animation bubble */
.donation-page {
  position: relative;
}

.donation-hint {
  position: absolute;
  right: -260px;
  top: 190px;
  z-index: 4;
}

.hint-bubble {
  background: var(--white);
  padding: 14px 18px;
  border-radius: 24px 24px 24px 10px;
  /* speech feel */
  max-width: 210px;
  font-size: 13px;
  line-height: 1.4;
  color: #333;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  animation: bubbleFloat 3.8s ease-in-out infinite;
  position: relative;
}

.hint-bubble::before,
.hint-bubble::after {
  content: "";
  position: absolute;
  background: var(--white);
  border-radius: 50%;
}

.hint-bubble::before {
  width: 20px;
  height: 20px;
  bottom: -6px;
  left: 24px;
}

.hint-bubble::after {
  width: 12px;
  height: 12px;
  bottom: -14px;
  left: 14px;
}

.hint-arrow {
  margin-top: 10px;
  width: 90px;
  height: 2px;
  background: linear-gradient(to right, #ff6a00, transparent);
  position: relative;
  animation: arrowPulse 1.8s ease-in-out infinite;
}

.hint-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #ff6a00;
  border-bottom: 2px solid #ff6a00;
  transform: rotate(-45deg);
}

@keyframes bubbleFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes arrowPulse {
  0% {
    opacity: 0.4;
    transform: translateX(0);
  }

  50% {
    opacity: 1;
    transform: translateX(6px);
  }

  100% {
    opacity: 0.4;
    transform: translateX(0);
  }
}

.hint-bubble strong {
  color: #ff6a00;
  font-weight: 600;
}


/* Contact Us page */
.contact-banner {
  height: 320px;
  background: url("../images/png/contact-banner-img.jpg") center/cover no-repeat;
  position: relative;
}

.contact-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.banner-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--white);
}

.contact-section {
  padding: 60px 0px;
  background: var(--white);
}


.contact-form {
  background: #fafafa;
  padding: 36px;
  border-radius: 12px;
  border: 1px solid var(--textGray);

  .form-input {
    padding: 10px 12px;
  }

}

.contact-map {
  width: 100%;
}

.contact-map iframe {
  width: 100%;
  height: 380px;
  border: 0;
  display: block;
}


.contact-locations {
  padding: 80px 0px;
  background: #fafafa;
}

.contact-location-card {
  gap: 50px;

}

.contact-heading-section {
  padding-bottom: 60px;
}

.info-item {
  background: var(--white);
  padding: 22px 24px;
  border-radius: 8px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}


.info-icon-box {
  min-width: 42px;
  height: 42px;
  background: #fff3ea;
  color: var(--themeColor);
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.location-card-new {
  background: var(--white);
  padding: 24px 26px;
  border-radius: 6px;
  position: relative;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.location-card-new::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--themeColor);
  border-radius: 4px 0 0 4px;
}

.location-head img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
}

.contact-location-content {
  gap: 50px;
}

/* Adopt a Batuk */
.batuk-adoption-section {
  padding: 0px 0px 70px;
}

.batuk-card {
  max-width: 1200px;
  margin: auto;
  background: #fffaf3;
  border-radius: 16px;
  padding: 24px;
}

.batuk-name-box {
  background-color: #fff1e7;
  padding: 6px 14px;
  border-radius: 10px;
  color: var(--themeColor);
}

.batuk-details {
  display: flex;
  gap: 50px;
}

.batuk-details-content {
  display: flex;
  flex-direction: column;

}

.batuk-image {
  position: relative;
}

.batuk-image img {
  width: 320px;
  object-fit: cover;
  border-radius: 14px;
}

.batuk-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #16a34a;
  color: var(--white);
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 20px;
}

.batuk-info {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.batuk-support {
  padding-left: 18px;
}

.batuk-support li {
  font-size: clamp(0.75rem, 0.7247rem + 0.1266vw, 0.875rem);
  color: #555;
}

.batuk-cta {
  background: var(--white);
  border-radius: 14px;
  padding: 26px 24px;
  border: 1px solid var(--textGray);
}

.benefit-list {
  padding-left: 18px;
}

.benefit-list li {
  font-size: clamp(0.75rem, 0.7247rem + 0.1266vw, 0.875rem);
  color: #444;
}

.benefit-note {
  background: #fff4ea;
  padding: 10px 12px;
  border-radius: 8px;
}

/* Charitable Activity */
.charitable-activity-section .campaign-card {
  border-radius: 16px;
  overflow: hidden;
}

.charitable-activity-section {
  .donation-body h5 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }

  .donation-body p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .donation-card {
    height: 100%;
  }
}

.charitable-activity-section .campaign-img {
  position: relative;
}

.charitable-activity-section .campaign-img img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.charitable-activity-section .verified-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #e8f7ee;
  color: #1a7f37;
  font-size: 10px;
  padding: 4px 8px;
  border-radius: 20px;
  font-weight: 600;
}

.charitable-activity-section .campaign-progress {
  height: 6px;
  width: 100%;
  border-radius: 10px;
  background: var(--textGray);
  overflow: hidden;
}

.charitable-activity-section .campaign-progress .progress-bar {
  height: 100%;
  background: #28a745;
  border-radius: 10px;
}

.charitable-activity-section .campaign-footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.charitable-activity-section .donor-info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.charitable-activity-section .donor-avatars img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -6px;
}

.charitable-activity-section .donor-count {
  font-size: 13px;
  color: #444;
}

.donor-img img {
  height: 24px;
  width: 24px;
  object-fit: cover;

}

.donor-img {
  .user-donors {
    margin-left: -10px;
  }
}

/* Flip Form */
.auto-form-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  z-index: 9999;
}

.flip-form {
  width: 420px;
  height: 460px;
  perspective: 1200px;
}

.flip-title {
  font-size: 32px;
}

.flip-form>div {
  width: 100%;
  position: absolute;
  border-radius: 16px;
  backface-visibility: hidden;
  transition: transform 0.8s ease;
}

.flip-front {
  position: relative;
  background: url("../images/png/flip-img.png") center/cover no-repeat;
  overflow: hidden;
  padding-top: 24px;
}

.flip-front::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  filter: blur(2px);
  z-index: 0;
}

.flip-front::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(0 0 0 / 53%);
  z-index: 1;
}

.flip-front * {
  position: relative;
  z-index: 2;
  text-align: center;
}

.flip-back {
  background: var(--white);
  padding: 24px;
  transform: rotateY(180deg);
}

.flip-form.flipped .flip-front {
  transform: rotateY(180deg);
}

.flip-form.flipped .flip-back {
  transform: rotateY(360deg);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}


textarea {
  min-height: 80px;
  resize: none !important;
}

.close-btn {
  cursor: pointer;
  aspect-ratio: 1;
  transition: all 0.25s ease;
}

.close-btn:hover {
  background: rgba(0, 0, 0, 0.08);
  transform: rotate(90deg) scale(1.1);
}

/* Sewa page css */
.video-banner {
  position: relative;
  width: 100%;
  height: 280px;
  overflow: hidden;
  border-radius: 16px;
  aspect-ratio: 16 / 9;
}

.video-banner iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  display: none;
}

.video-thumb {
  position: absolute;
  inset: 0;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vedio-mobile-view {
  display: none;
}

.sewa-vedio-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.below-video-timer {
  background: #fff7f0;
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.upcoming-badge {
  background: var(--themeColor);
  color: var(--white);
  font-size: 12px;
  padding: 6px 14px;
  border-radius: 999px;
  width: fit-content;
}

.upcoming-date {
  font-size: 13px;
  color: #555;
  margin: 0;
}

.timer-cards {
  gap: 10px;
}

.t-card {
  background: var(--white);
  border-radius: 12px;
  padding: 6px 10px;
  min-width: 56px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.t-card b {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--themeColor);
  line-height: 1;
}

.t-card small {
  font-size: 10px;
  color: #555;
}

#s {
  animation: secPulse 1s ease-in-out infinite;
}

@keyframes secPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

/* sewas right card  */
.sewas-buttons {
  width: 100%;
}

.book-puja-btn {
  position: relative;
  z-index: 1;
  padding: clamp(0.4375rem, 0.3995rem + 0.1899vw, 0.625rem) clamp(1rem, 0.9494rem + 0.2532vw, 1.25rem);
}

.book-puja-btn::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(90deg,
      #ff7a18,
      #ffd36a,
      #ff7a18);
  background-size: 300% 300%;
  animation: pujaBorderFlow 4s linear infinite;
  z-index: -1;
}

@keyframes pujaBorderFlow {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 300% 50%;
  }
}

.w-50-btn {
  width: 50%;
}

.share-now-btn {
  background: transparent;
  color: #f25a0d;
  border: 2px solid #f25a0d;
  padding: clamp(0.4375rem, 0.3995rem + 0.1899vw, 0.625rem) clamp(1rem, 0.9494rem + 0.2532vw, 1.25rem);
  border-radius: 10px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.share-now-btn:hover {
  background: linear-gradient(0deg,
      rgba(242, 90, 13, 0.08),
      rgba(242, 90, 13, 0.08));
  box-shadow:
    inset 0 0 0 2px rgba(242, 90, 13, 0.15),
    0 0 12px rgba(242, 90, 13, 0.35);
}

.sewa-card {
  position: relative;
  height: 100%;
}

.fav-icon-bg .fav {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(180deg, #f25a0d 0%, #e9942c 100%);
  color: var(--white);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.price-badge {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, #f25a0d, #e9942c);
  border-radius: 0px 10px 0px 0px;
  padding: 2px 4px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
}

/* Thank you page */

.thankyou-wrapper {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;

  background:
    linear-gradient(rgba(20, 10, 0, 0.65), rgba(20, 10, 0, 0.85)),
    url("../images/png/thankyou-banner.png");
  background-size: cover;
  background-position: center;
}

.thankyou-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 215, 120, 0.25) 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 180, 80, 0.15) 1px, transparent 1px);
  background-size: 140px 140px, 220px 220px;
  animation: particles 22s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes particles {
  from {
    background-position: 0 0, 50px 50px;
  }

  to {
    background-position: 0 -900px, 50px -1200px;
  }
}

.spiritual-chakra {
  position: absolute;
  width: 650px;
  height: 650px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.65;

  background:
    repeating-conic-gradient(from 0deg,
      rgba(255, 200, 120, 0.9) 0deg 8deg,
      rgba(255, 150, 60, 0.25) 8deg 16deg),
    radial-gradient(circle,
      rgba(255, 210, 140, 0.6),
      rgba(255, 120, 40, 0.25),
      transparent 65%);

  filter:
    blur(0.6px) drop-shadow(0 0 35px rgba(255, 170, 90, 0.7));

  animation: chakraRotate 60s linear infinite;
}

@keyframes chakraRotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.thankyou-card {
  max-width: 520px;
  background: linear-gradient(180deg, #fff6ea, #fff1df);
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    inset 0 0 30px rgba(255, 174, 66, 0.18);
  transform: scale(0.85);
  opacity: 0;
  animation: cardIn 1s ease forwards;
  position: relative;
  z-index: 2;
}

@keyframes cardIn {
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-image {
  position: relative;
}

.thankyou-image::before {
  content: "";
  position: absolute;
  inset: -25px;
  background: radial-gradient(circle, rgba(255, 200, 120, 0.6), transparent 70%);
  filter: blur(22px);
}

.thankyou-image img {
  width: 150px;
  position: relative;
  filter: drop-shadow(0 0 14px rgba(255, 140, 0, 0.45));
  scale: 1.5;
}

.float {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.thankyou-title {
  font-size: 34px;
  margin-bottom: 10px;
}

.glow-text {
  color: #e76f00;
  animation: glow 2.5s infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 6px rgba(255, 150, 60, 0.6);
  }

  to {
    text-shadow: 0 0 18px rgba(255, 130, 0, 0.9);
  }
}

.subtitle {
  font-size: 16px;
  color: #6b4a1f;
  margin-bottom: 14px;
}

.message {
  font-size: 16px;
  color: #4a3b2a;
  line-height: 1.75;
  margin-bottom: 14px;
}

.message.small {
  font-size: 14px;
  color: #6a5742;
}

.highlight {
  color: #d65f00;
  font-weight: 600;
}

.thankyou-divider {
  width: 70%;
  height: 1px;
  margin: 20px auto;
  background: linear-gradient(to right, transparent, #e0a84a, transparent);
}

.blessing {
  font-size: 14px;
  color: #b36b00;
}

.thankyou-btn {
  display: inline-block;
  margin-top: 26px;
  padding: 14px 34px;
  background: linear-gradient(135deg, #ff9d2f, #ff6a00);
  color: var(--white);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(255, 122, 0, 0.45);
  position: relative;
  overflow: hidden;
}

.thankyou-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: translateX(-120%);
  transition: 0.5s;
}

.thankyou-btn:hover::after {
  transform: translateX(120%);
}

.pulse {
  animation: pulse 2.3s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0.5);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(255, 122, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 122, 0, 0);
  }
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 0.9s forwards;
}

.delay-1 {
  animation-delay: 0.4s;
}

.delay-2 {
  animation-delay: 0.7s;
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* Login css */
.auth-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  background:
    linear-gradient(rgba(12, 7, 3, .75),
      rgba(12, 7, 3, .85)),
    url("../images/png/login-bg-img.jpg") center/cover no-repeat;

  position: relative;
  overflow: hidden;
}

.auth-wrapper::before {
  content: "";
  position: absolute;
  inset: -40%;
  background:
    linear-gradient(120deg,
      transparent 46%,
      rgba(255, 200, 120, .08) 50%,
      transparent 54%);
  animation: lightMove 14s linear infinite;
  pointer-events: none;
}

@keyframes lightMove {
  from {
    transform: translateX(-25%) rotate(0deg);
  }

  to {
    transform: translateX(25%) rotate(360deg);
  }
}

.auth-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 190, 120, .15) 0 2px, transparent 3px),
    radial-gradient(circle at 70% 60%, rgba(255, 190, 120, .12) 0 2px, transparent 3px),
    radial-gradient(circle at 40% 80%, rgba(255, 190, 120, .1) 0 2px, transparent 3px);
  animation: floatDust 18s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatDust {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0);
  }
}

.auth-wrapper {
  box-shadow:
    inset 0 0 120px rgba(255, 200, 120, .12);
}

.auth-flip {
  perspective: 1200px;
}

.auth-card {
  width: 420px;
  height: 520px;
  position: relative;
}

.auth-inner {
  width: 100%;
  height: 100%;
  position: relative;
  transform-style: preserve-3d;
  transition: transform .8s ease;
}

.auth-inner.flipped {
  transform: rotateY(180deg);
}

.card-face {
  position: absolute;
  inset: 0;
  padding: 35px 30px;
  border-radius: 22px;
  background: rgba(255, 255, 255, .18);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, .3);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .45);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  gap: 28px;
}

.card-face.back {
  transform: rotateY(180deg);
}

.auth-header img {
  height: 50px;
  scale: 1.2;
}

.auth-header p {
  color: #f2d9b3;
}

.google-btn {
  background: rgba(255, 255, 255, .95);
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 500;
  box-shadow: 0 8px 25px rgba(0, 0, 0, .25);
  transition: all .25s ease;
}

.google-btn img {
  height: 18px;
}

.google-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .35);
}

.login-btn {
  width: 100%;
  padding: 12px 0;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #ff9d2f, #ff7a18);
  letter-spacing: .3px;
  box-shadow:
    0 6px 18px rgba(255, 140, 40, .45),
    inset 0 0 10px rgba(255, 255, 255, .25);
  cursor: pointer;
  transition: all .25s ease;
}
.cursor-pointer{
  cursor: pointer;
}
.login-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 26px rgba(255, 140, 40, .6),
    inset 0 0 12px rgba(255, 255, 255, .3);
}

.login-btn:active {
  transform: scale(.98);
}

.google-login-btn {
  width: 100%;
  padding: 11px 0;
  background: transparent;
  color: #828181;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  border-radius: 52px;
  border: 1px solid #828181;
}

.google-login-btn:hover {
  transform: translateY(-1px);
}






































































/* Media Query Home Page */

@media (max-width: 1260px) {
  .container {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}


@media (max-width: 1200px) {

  .about-images .img-large img {
    width: 100%;
  }

  .about-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .img-small-bottom img {
    width: 380px;
    height: 180px;
  }

  .img-small-top {
    height: 240px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(233px, 1fr)) !important;
  }

  .benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 992px) {
  .about-images {
    max-width: 600px;
    margin: 0 auto;
  }

  .about-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .img-small-bottom img {
    position: static;
    width: 100%;
    height: 180px;
    margin-top: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }

  .donation-section {
    padding-right: 0px;
  }
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none;
  }

  .nav-menu {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
    width: 100%;
    gap: 50px;
    justify-content: end;
  }

  .nav-menu a {
    font-size: clamp(0.8125rem, 0.775rem + 0.1875vw, 1rem);
    font-weight: 400;
    color: #5a4f47;
    white-space: nowrap;
  }

  .nav-menu a:hover::after {
    width: 100%;
  }

  .navbar-list {
    align-items: center;
    gap: 24px;
    flex-direction: row;
  }
}


@media (max-width: 768px) {
  .img-large {
    grid-column: 1 / 3 !important;
  }

  .img-small-top,
  .img-small-bottom {
    position: static;
    height: auto;
  }

  .img-small-bottom img {
    width: 100%;
    height: auto;
    border-width: 4px;
    margin-top: 10px;
  }

  .program {
    flex-direction: column;
    align-items: flex-start;
  }

  .program img {
    width: 100%;
    height: 140px;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .stack-item {
    width: 85%;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }


  .topbar-right {
    margin-top: 6px;
    width: 100%;
  }

  .topbar-left {
    width: 100%;
  }

  .benefit-section {
    padding: 30px 0 10px;
  }

  .benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
  }

  .benefit-card {
    padding: 18px;
    border-radius: 14px;
  }

  .icon-wrap {
    width: 55px;
    height: 55px;
  }

  .icon-wrap img {
    width: 30px;
  }

  .benefit-card h3 {
    font-size: 16px;
  }

  .benefit-card p {
    font-size: 13px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .about-images {
    display: block;
  }

  .about-images img {
    width: 100% !important;
    height: auto !important;
  }

  .about-badge {
    width: 95px;
    height: 95px;
    font-size: 10px;
    padding: 18px 8px;
  }

  .badge-container {
    display: none;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .copyright {
    text-align: center;
  }

  .topbar-right {
    width: 100%;
  }

  .hero-slide {
    height: 70vh;
  }

  .carousel-control-prev,
  .carousel-control-next {
    display: none !important;
  }

  .img-large,
  .img-small-top {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr)) !important;
  }

  .stack-slider {
    height: 390px;
  }

  .section-title {
    text-align: start;
    font-size: 22px !important;
  }

  .section-header h3 {
    text-align: start;
  }

  .footer-inner {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 20px;
  }


  .footer-col.brand {
    grid-column: 1 / -1 !important;
  }

  .footer-col:last-child {
    grid-column: 1 / -1 !important;
  }

  .carousel-caption {
    align-items: flex-start;
    bottom: -0.75rem !important;
    left: 5% !important;
  }

  .video-overlay {
    font-size: 14px;
  }

  .points {
    .col-4 {
      padding: 0px 4px;
    }

    span {
      flex-direction: column;
    }
  }

  .stats-row {
    .col-4 {
      padding: 0px 4px;
    }

    h6 {
      font-size: 12px !important;
    }
  }

  .donate-card-right {
    order: -1;
  }

  .below-video-timer {
    flex-direction: column;
    align-items: flex-start;
  }

  .video-banner iframe {
    height: 220px;
  }

  .video-banner {
    height: 215px;
  }

  .vedio-desktop-view {
    display: none;
  }

  .vedio-mobile-view {
    display: block;
  }
}


@media (max-width: 500px) {
  .benefit-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: 16px;
  }
}

@media (max-width: 400px) {
  .about-badge {
    width: 85px;
    height: 85px;
    font-size: 9px;
    padding: 15px 6px;
  }

  .about-para {
    font-size: 14px;
  }

  .about-bottom-btn {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cards {
    width: 60%;
  }

  .outline-btn,
  .donateNow-btn {
    padding: 8px 12px;
  }

  .topbar-left a {
    font-size: 7px;
  }
}

@media (max-width: 350px) {
  .topbar-left a {
    font-size: 6px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .nav-menu {
    gap: 20px;
    padding-right: clamp(9.375rem, 95.4861rem + -138.8889vw, 0rem);
  }

  .navbar-list {
    overflow-x: auto;
    width: 60%;
  }
}

/* add other pages */

@media (max-width: 1023px) and (min-width: 575px) {

  .batuk-image {
    grid-area: image;
  }

  .batuk-details {
    grid-area: details;
  }

}

@media (max-width: 1024px) {
  .batuk-image {
    grid-area: image;
  }

  .batuk-details {
    grid-area: details;
  }
}

@media (max-width: 992px) {
  .donation-hint {
    display: none;
  }

  .batuk-row {
    .col-md-8 {
      width: 100%;
    }

    .col-md-4 {
      width: 50%;
    }
  }

  .batuk-details {
    gap: 30px;
  }

  .location-grid {
    grid-template-columns: repeat(2, 1fr);

  }
}

@media (max-width: 767px) {

  .batuk-image {
    width: 100%;
  }

  .batuk-name-box {
    align-self: flex-start;
  }

  .batuk-info {
    margin-bottom: 16px;
  }

  .batuk-support li {
    width: 100%;
  }

  .batuk-cta {
    margin-top: 10px;
  }

  .location-card-new {
    padding: 20px;
  }

  .location-head h3 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .batuk-card {
    padding: 16px;
    gap: 20px;
  }

  .benefit-list {
    padding-left: 16px;
  }
}

@media (max-width: 576px) {
  .info-item {
    padding: 18px;
    gap: 14px;
  }

  .info-icon-box {
    min-width: 38px;
    height: 38px;
  }

  .batuk-details {
    flex-direction: column;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .batuk-image img {
    height: 300px;
    width: 100%;
  }

  .batuk-row {
    .col-md-4 {
      width: 100%;
    }
  }
}

@media (max-width: 480px) {
  .batuk-name-box {
    font-size: 16px;
    padding: 6px 10px;
  }

  .batuk-cta {
    padding: 20px;
  }

  .benefit-note {
    font-size: 12px;
  }

  .flip-form {
    width: 90%;
    height: 480px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .sewas-buttons {
    flex-direction: column;
  }

  .w-50-btn {
    width: 100%;
  }
}





































































/* Media Query */

@media (min-width: 1200px) {
  .purpose-track {
    flex-wrap: nowrap;
  }
}

@media (min-width: 768px) and (max-width: 992px) {
  .sewas-buttons {
    flex-direction: column;
  }

  .w-50-btn {
    width: 100%;
  }
}

@media (max-width: 992px) {
  .purpose-track {
    gap: 22px;
  }

  .line {
    display: none;
  }

  .begin-wrap {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }

  .begin-content {
    gap: 26px;
  }

  .frame-wall {
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
  }

  .frame-wall img {
    height: 210px;
  }

  .testimonial-track {
    justify-content: center;
  }

  .testimonial-slide {
    flex: 0 0 100%;
    max-width: 100%;
    display: none;
  }

  .testimonial-slide.center {
    display: flex;
    justify-content: center;
  }

  .testimonial-slide.center .review-card-modern {
    width: 95%;
    padding: 40px 24px 28px;
  }

  .faqs-section {
    .accordion {
      width: auto;
    }
  }
}

@media (max-width: 768px) {
  .stats-track span {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .purpose-track {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .purpose-item {
    min-width: auto;
  }

  .icon-box {
    width: 56px;
    height: 56px;
    font-size: 22px;
  }

  .purpose-item p {
    font-size: 12px;
  }

  .begin-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 14px;
  }

  .begin-content {
    gap: 22px;
  }

  .story-box {
    padding: 16px 16px;
    border-radius: 16px;
  }

  .frame-wall {
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    order: -1;
  }

  .frame-wall figure {
    border-radius: 8px;
    padding: 3px;
    margin: 0;
  }

  .frame-wall img {
    height: 200px;
    border-radius: 16px;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 8px;
  }

  .donation-form {
    .donor-tabs .nav-link {
      font-size: 10px;
      padding: 8px 14px;
    }
  }
}

@media (max-width: 360px) {
  .purpose-track {
    grid-template-columns: repeat(2, 1fr);
  }
}



@media (max-width: 992px) {

  .values-layout {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  /* center ko full width do */
  .center {
    grid-column: 1 / -1;
    order: 3;
  }

  .side {
    justify-content: center;
  }

  .value-card {
    padding: 26px 22px;
  }
}


@media (max-width: 576px) {

  .values-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* center sabse upar aaye */
  .center {
    order: -1;
    gap: 20px;
  }

  .side {
    justify-content: center;
  }

  .value-card {
    padding: 22px 18px;
    border-radius: 18px;
  }

  .value-card h4 {
    font-size: 16px;
  }

  .value-card p {
    font-size: 14px;
    -webkit-line-clamp: 4;
  }

  .icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }
}


@media (max-width: 992px) {
  .gx-card {
    min-width: 260px;
  }

  .gx-indicators {
    display: none;
  }

  .celebrities-section {
    .donor-tabs {
      overflow-x: scroll;
      flex-wrap: nowrap !important;
      width: 100%;
    }

  }
}

/* MOBILE – 1 card */
@media (max-width: 576px) {
  .gx-track {
    gap: 16px;
  }

  .gx-card {
    min-width: 80vw;
    transform: scale(1);
    opacity: 1;
  }

  .gx-card.gx-active {
    transform: scale(1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .25);
  }

  .contribute-section-title {
    padding-bottom: 150px;
  }
}