@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Freehand&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sacramento&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

*,
body {
  color: #161625;
  font-family: 'Satoshi-Variable', 'Satoshi-Light', 'Satoshi-Regular', 'Satoshi-Medium', 'Satoshi-Bold', 'Satoshi-Black', sans-serif;
  font-weight: 300 900;
  font-style: normal;
}

:root {
  --pink: #201ce5;
  --light: #FFF4F9;
  --light-500: rgb(255 255 255 / 40%);
  --light-400: #F5F5F5;
  --dark-500: #2E2E2D;
  --dark: #17181C;
  --muted: #707070;
  --gray: #3D3D3D;
}

.pink {
  color: var(--pink);
}

.light {
  color: var(--light);
}

.light-500 {
  color: var(--light-500);
}

.dark-500 {
  color: var(--dark-500) !important;
}




.dark {
  color: var(--dark);
}

.gray {
  color: var(--gray);
}

.bg-dark {
  background-color: var(--dark);
}

.bg-pink {
  background-color: var(--pink);
}

.bg-pink-light {
  background-color: var(--light);
}

.bg-light-400 {
  background-color: var(--light-400);
}

.muted {
  color: var(--muted);
}

.f-12 {
  font-size: 12px;
  line-height: 12px;
}

.f-14 {
  font-size: 14px;
}

.f-16 {
  font-size: 16px;
}

.f-18 {
  font-size: 18px;
  line-height: 30px;
}


a {
  color: var(--pink);
  text-decoration: none;
}

html {
  scroll-padding-top: 110px !important;
}

/*********************************/
.cm_group_btn {
  display: flex;
  padding: 0;
  border: 0;
  background: transparent;
  width: 100%;
}

.cm-btn-outline {
  padding: 10px 18px 12px;
  border-radius: 60px;
  border: 1px solid var(--dark-500);
  color: var(--dark-500);
  font-size: 18px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0.02em;
  transition: all 0.5s;
  display: inline-flex;
  align-items: center;
}

.cm-btn-outline:hover,
.cm_group_btn:hover .cm-btn-outline {
  background-color: var(--pink);
  border-color: var(--pink);
  color: #fff;
}

.cm-btn-outline .btnIcon {
  width: 0;
  opacity: 0;
  transform: translateX(20px);
  transition: width 0.5s ease, opacity 0.5s ease, transform 0.5s ease;
  overflow: hidden;
  top: -2px;
  position: relative;
}

.cm-btn-outline:hover .btnIcon {
  margin-left: 6px;
  width: 24px;
  opacity: 1;
  transform: translateX(0);
}

.btnIconFill {
  display: none;
}

.btnIconFill,
.btnIconOutline {
  margin-right: 6px;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.cm-btn-outline:hover .btnIconOutline,
.cm_group_btn:hover .btnIconOutline {
  display: none;
}

.cm-btn-outline:hover .btnIconFill,
.cm_group_btn:hover .btnIconFill {
  display: inline-block;
}

.cstmBtn {
  width: 50%;
}

.cm-btn-more {
  transition: all 0.5s;
}

.cm-btn-outline:hover+.cm-btn-more,
.cm-btn-more:hover {
  font-weight: 700;
}

.btnArrow {
  width: 50px;
  margin-left: 16px;
  transform: rotate(0deg);
  transition: 0.3s;
}

.cm-btn-outline:hover~.btnArrow,
.btnArrow:hover {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}


/*****************************/

.cm-btn-outline:hover .cbo-icon {
  color: #fff !important;
}

.cm-btn {
  padding: 12px 24px 12px 24px;
  border-radius: 60px;
  background-color: var(--pink);
  border: 1px solid var(--pink);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.02em;
  transition: 0.5s;
  text-align: center;
}

.cm-btn:hover {
  background-color: #fff;
  color: var(--pink);
}

.ff-bell {
  font-family: "Schoolbell", cursive;
}

/*========== Header CSS =============*/
.logo{
  width: 320px;
}
.hamburger .line {
  width: 35px;
  height: 4px;
  background-color: #000;
  transition: all 0.3s ease;
  margin-bottom: 5px;
  border-radius: 2px;
}

a[aria-expanded="true"] .hamburger .line:nth-child(1) {
  transform: translateY(12px) rotate(45deg);
}

a[aria-expanded="true"] .hamburger .line:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

a[aria-expanded="true"] .hamburger .line:nth-child(2) {
  opacity: 0;
}


.top-13 {
  top: 13px;
}

#offcanvasNavigation {
  height: 36vh;
}

.nav-link {
  color: var(--dark-500);
  font-size: 22px;
  font-weight: 600;
  margin-top: 10px;
}

.nav-link:hover {
  color: var(--pink);
}

.navbar {
  padding: 20px 0;
}

.sticky-header {
  position: sticky;
  top: -100px;
  transition: top 0.3s ease-in-out;
  z-index: 1021;
}

.sticky-header.sticky,
.changed {
  top: 0;
  background-color: rgb(240 240 255 / 70%) !important;
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
}

.changed {
  margin-bottom: 20px;
}

.sticky-header.animate {
  transition: top 0.5s ease-in-out;
}



/*========== Header CSS End =============*/


.bank-details-section {
 background-color: #fff8e6;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.bank-details-container {
  background-color: #fff;
  border-radius: 16px;
  padding: 40px;
  max-width: 1000px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.bank-info h2 {
  color: #5e3bd6;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.bank-info .subtitle {
  color: #5e3bd6;
  font-weight: 600;
  margin-bottom: 20px;
}

.bank-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.bank-info li {
  margin-bottom: 10px;
  font-size: 1rem;
  color: #333;
}

.bank-info strong {
  color: #000;
}

.note {
  font-size: 0.9rem;
  color: #555;
  margin-top: 20px;
}

.support-info {
  text-align: left;
  max-width: 320px;
}

.support-info h3 {
  color: #5e3bd6;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.support-info p {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
}

.support-info i {
  color: #5e3bd6;
  margin-right: 8px;
}

.payment-icons img {
  width: 200px;  /* Adjust as needed */
  height: auto;
  margin-top: 10px;
  opacity: 0.95;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.payment-icons img:hover {
  transform: scale(1.05);
  opacity: 1;
}
@media (max-width: 600px) {
  .payment-icons img {
    width: 150px;
  }
}

@media (max-width: 768px) {
  .bank-details-container {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .support-info {
    text-align: center;
  }
}

/* Hide header by default (desktop view) */
.mobile-header {
  display: none;
}

/* Show only on mobile screens */
/* Mobile Header (smaller version) */
@media (max-width: 768px) {
  .mobile-header {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90deg, #3b2dbd, #5e4ae3);
    color: white;
    font-size: 11px; /* smaller text */
    font-weight: 600;
    text-align: center;
    padding: 6px 10px; /* reduced height */
    position: sticky;
    top: 0;
    z-index: 1000;
    letter-spacing: 0.4px;
    line-height: 1.2;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }
}



/* ===============================
   BEAUTIFUL TEMPLE FOOTER
=============================== */
/* ===============================
   CLEAN FINAL FOOTER
=============================== */

html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.footer {
  background: linear-gradient(180deg, #0a0f3d 0%, #1a237e 100%);
  color: #f1f3ff;
  font-family: "Poppins", sans-serif;
  position: relative;
  padding-top: 60px;
  margin: 0;
  overflow: hidden;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

/* About Section */
.footer-about .footer-logo {
  width: 120px;
  margin-bottom: 15px;
}
.footer-about p {
  font-size: 14px;
  line-height: 1.6;
  color: #d6dbff;
}

/* Links Section */
.footer-links h4,
.footer-contact h4 {
  color: #ffd24a;
  font-weight: 600;
  margin-bottom: 15px;
}
.footer-links ul {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  text-decoration: none;
  color: #e2e5ff;
  font-size: 14px;
  transition: 0.3s;
}
.footer-links a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Contact Section */
.footer-contact p {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e2e5ff;
}
.footer-contact i {
  color: #ffd24a;
}

/* Social Icons */
.footer-social {
  margin-top: 10px;
}
.footer-social a {
  color: #0a0f3d;
  background: #ffd24a;
  border-radius: 6px;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 14px;
  transition: 0.3s;
}
.footer-social a:hover {
  background: #ffe168;
  transform: translateY(-3px);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  padding: 18px 10px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;

}

  .footer-bottom, 
.footer-bottom p, 
.footer-bottom strong {
  color: #ffffff !important;
}


/* Remove whitespace below footer */
body {
  overflow-x: hidden;
}
footer {
  margin: 0 !important;
  padding-bottom: 0 !important;
}

/* Go to Top Button */
#goTopBtn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background-color: #ffd24a;
  color: #0a0f3d;
  border: none;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  font-size: 18px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s;
  z-index: 999;
  display: none;
}
#goTopBtn:hover {
  background-color: #ffe168;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    text-align: center;
  }
  .footer-contact p {
    justify-content: center;
  }
  .footer-social {
    justify-content: center;
  }
}

/*======== Footer CSS End =========*/

/****** Home start ******/
.banner_video {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

.banner_button {
  position: absolute;
  width: 46%;
  bottom: 60px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
}

.section_title {
  font-size: 40px;
  font-weight: 700;
  line-height: 52px;
  color: #000;
  margin-bottom: 0;
}

.swiper {
  width: 100%;
  height: 100%;
}

.campaignSwiper {
  overflow: visible;
}

.campaign_slider_section {
  overflow: hidden;
}

.campaignBox .campaign_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
}

.campaignBox .campaign_tag span {
  padding: 4px 12px 4px 12px;
  gap: 10px;
  border-radius: 20px;
  background-color: var(--light-400);
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
  margin-right: 6px;
  color: hwb(0 0% 100% / 0.50);
}

.campaignBox .campaign_title {
  font-size: 25px;
  font-weight: 700;
  line-height: 28px;
}

.campaignBox .campaign_price {
  font-size: 18px;
  font-weight: 700;
  line-height: 26px;
}

.campaignBox .campaign_price span {
  font-size: 14px;
  font-weight: 500;
  line-height: 12px;
  color: hwb(0 0% 100% / 0.50);
}

.cm-btn-outline:hover .cbo-img {
  filter: invert(1);
}

.pledgeSwiper {
  overflow: visible;
}

.pledge_swiper_section {
  overflow: hidden;
}

.pledgeSwiper .plg_slide_img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 40px;
  object-position: left;
}

.pledgeSwiper .plg_content {
  position: absolute;
  top: 56px;
  left: 50px;
}

.pledgeSwiper .plg_content h6 {
  font-family: "Freehand", cursive;
  font-size: 30px;
  font-weight: 400;
  line-height: 40px;
  color: #FFC1C1;
}

.pledgeSwiper .plg_content h2 {
  font-size: 60px;
  font-weight: 600;
  line-height: 71px;
  color: #fff;
  margin-bottom: 20px;
}

.pledgeSwiper .plg_content a {
  display: block;
  transition: 0.5s;
}

.pledgeSwiper .plg_content a:hover {
  transform: translate3d(0px, -7px, 0px);
}

#cardLeftswipeIcon {
  position: absolute;
  top: 32%;
  left: -60px;
  z-index: 9;
}

#cardRightSwipeIcon {
  position: absolute;
  top: 32%;
  right: -60px;
  z-index: 9;
}

.num_box_1 {
  background-image: url('../images/home/ellipse.png');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 60px 0;
}

.num_box_2 h3 {
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 10px;
}

.num_box_2 h3 span {
  font-size: 20px;
  font-weight: 700;
}

.num_box_2 p {
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  color: var(--gray);
}

.trustee_box {
  box-shadow: 20px 14px 40px 0px #00000014;
  border-radius: 32px;
}

.trustee_img {
  border-radius: 32px;
}

.trustee_box h2 {
  font-size: 46px;
  font-weight: 700;
  line-height: 48px;
}

.trustee_box p {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: var(--muted);
}

.trustee_box h5 {
  font-size: 20px;
  font-weight: 900;
  line-height: 18px;
}

.trustee_box h6 {
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
}

.adoptGirlSwiper {
  overflow: visible;
}

.section_adopt_girl {
  overflow: hidden;
}

.ags_title {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: var(--dark-500);
}

.ags_title span {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 14px;
}

.ags_desc {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--dark-500);
}

.ags_box .ags_main_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: top;
  border-radius: 20px;
}

.ags_box .ags_support_img {
  background-color: #fff;
  padding: 6px;
  border-bottom-right-radius: 20px;
  position: absolute;
  top: 0;
  left: 0;
}

.adoptGirlSwiper .swiper-slide,
.ogs_box {
  box-shadow: 0px 8px 24px 0px #959DA533;
  padding: 24px;
  border-radius: 40px;
  transition: 0.5s;
}

.adoptGirlSwiper .swiper-slide:hover,
.ogs_box:hover {
  box-shadow: 0px 8px 24px 0px #959da58e;
}

.special_day_form .form-control {
  color: var(--gray);
  border: none;
  border-bottom: 1px solid var(--dark-500);
  border-radius: 0;
  background-color: transparent;
  font-weight: 500;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
}

.success_stories_section h1 {
  font-family: "Sacramento", cursive;
  color: var(--dark);
}

.swiper-pagination-bullet-active {
  background: var(--pink);
}

.agg-box {
  display: inline-block;
  position: relative;
  padding: 8px;
}

.agg-img {
  border-radius: 100%;
  width: 160px;
  height: 160px;
  object-fit: cover;
  transition: 0.5s;
}

.agg-overlay {
  display: none;
  position: absolute;
  width: 160px;
  height: 160px;
  line-height: 210px;
  border-radius: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
  transition: filter 0.5s ease;
  z-index: 1;
}

.agg-box:hover .agg-overlay {
  display: block;
}

.agg-box:hover .agg-img {
  filter: grayscale(100%);
}

.agg-overlay p {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 2%;
}

.support_campaign_section .card {
  box-shadow: 0px 7px 29px 0px #64646F33;
  border-radius: 20px;
  padding: 40px;
  border: none;
}

.celebrate_video {
  border-radius: 20px;
  width: 100%;
  height: 100%;
  background-color: #000;
  object-fit: cover;
}

.scs_select {
  width: 100%;
  -webkit-appearance: none;
  /* Remove default arrow */
  -moz-appearance: none;
  appearance: none;
  background: url('../images/home/cheveron.svg') no-repeat right 10px center;
  padding: 15px 40px 15px 20px;
  position: relative;
}

.csr_form .form-control {
  border: 0;
  border-bottom: 1px solid var(--dark);
  color: var(--dark);
  border-radius: 0;
  padding: 16px 0;
}

.section_subtitle {
  font-size: 32px;
  font-weight: 700;
}

.csr_tmal_img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: top;
}

.csr_tmal_row {
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.csr_tmal_title {
  font-size: 54px;
  font-weight: 900;
  color: #fff;
  width: 240%;
  position: relative;
}

.csr_quote_icon {
  position: absolute;
  top: 70px;
  right: 10px;
}

.csr_tmal_desc {
  font-size: 16px;
  padding-top: 44px;
}

.csr_taml_pagination {
  position: absolute;
  left: 50px;
  bottom: 30px;
  z-index: 1;
}

.csr_taml_pagination img {
  height: 34px;
  width: 34px;
}

.testimonialSwiper {
  height: 500px;
}

.footer_sticky_btn {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgb(245 65 143 / 1);
  padding: 10px;
  z-index: 9;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

/****** Home end ******/

/***** campaign details start*****/
.cds_info_icon {
  position: absolute;
  top: -18px;
  right: -14px;
  width: 40px;
  z-index: 9;
}

.cds_product_info {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  background: #DFDFDF;
}

.cds_product_info p {
  display: flex;
  gap: 12px;
  color: #000;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  margin-bottom: 0;
}

.campaign_video {
  width: 100%;
  height: 415px;
  background-color: var(--dark);
  border-radius: 20px;
  object-fit: cover;
}

.cds_gallery .date {
  position: relative;
  top: 5px;
  font-weight: bold;
  font-size: 20px;
}

#leftCdsGalleryIcon img,
#rightCdsGalleryIcon img {
  width: 35px;
  box-shadow: 0 10px 10px #00000033;
  border-radius: 50px;
  margin-left: 10px;
}

.cds_title {
  font-size: 28px;
  font-weight: 700;
  line-height: 34px;
}

.cds_ckeditor h2,
.cds_sub_title {
  font-size: 22px;
  font-weight: 700;
  line-height: 28px;
}

.cds_ckeditor p {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.cds_social_link a {
  display: inline-block;
  margin-right: 10px;
  transition: 0.5s;
}

.cds_social_link a:hover {
  transform: scale(1.09);
}

.cds-pt-110 {
  top: 110px;
}

.cds_form .form-control {
  height: 40px;
}

.cds_form .form-control,
.cds_form .form-control::placeholder,
.cds_form .form-check-label {
  color: #000;
  font-size: 14px;
  font-weight: 600;
  padding-left: 6px;
}

.cds_custom_amt span {
  position: absolute;
  top: 9px;
  left: 12px;
  color: #000;
  font-size: 14px;
  font-weight: 600;
}

.cds_custom_amt .form-control {
  padding-left: 200px;
}

.form-check {
  position: relative;
}

.form-check input[type="checkbox"] {
  display: none;
}

/* Create a custom checkbox */
.form-check .checkmark {
  position: absolute;
  left: 0;
  top: 3px;
  height: 20px;
  width: 20px;
  background-color: white;
  border: 2px solid var(--pink);
  border-radius: 4px;
  display: inline-block;
  cursor: pointer;
}

.form-check input[type="checkbox"]:checked+.checkmark {
  border-color: var(--pink);
  background-color: #FFECF4;
}

.form-check .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--pink);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-check input[type="checkbox"]:checked+.checkmark:after {
  display: block;
  border-color: var(--pink);
}

.cds_btn {
  padding: 14px 24px 14px 24px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.02em;
  background-color: var(--pink);
  color: #fff;
  text-transform: uppercase;
  width: 100%;
  text-align: left;
  transition: 0.4s;
  border: none;
}

.cds_btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.cds_product_img {
  height: 26px;
  width: 26px;
  object-fit: cover;
}

.cds_product_title {
  position: relative;
  top: 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  padding-left: 5px;
}

.cds_product_price {
  padding: 3px;
  background: #F5418F1A;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 900;
  line-height: 12px;
}

.cds_pbox {
  border-bottom: 2px solid rgb(0 0 0 / 10%);
  padding: 16px 0;
}

.cds_pbox:last-child {
  border: none;
}

.cds_qty {
  display: inline;
  margin-left: 2px;
}

.cds_qty .qty-minus,
.cds_qty .qty-plus {
  background: #0000001A;
  height: 24px;
  width: 22px;
  border: none;
  font-size: 16px;
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center;
  border-radius: 4px;
}

.cds_qty .qty {
  height: 24px;
  width: 22px;
  border: none;
  text-align: center;
  font-weight: 900;
  font-size: 16px;
}

.cds_qty .qty-minus {
  background-image: url('../images/campaign/remove.svg');
}

.cds_qty .qty-plus {
  background-image: url('../images/campaign/add.svg');
}

.cds_badge span {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 10px;
}

/***** campaign details end*****/

/***** gallery css start*******/
@keyframes zoomin {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.gallery-item {
  display: block;
}

.gallery-item img {
  height: 133px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
  border-radius: 20px;
}

.lightbox-modal .modal-content {
  background-color: rgb(0 0 0 / 0.75);
}

.lightbox-modal .btn-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  font-size: 1.25rem;
  z-index: 10;
  filter: invert(1) grayscale(100);
}

.lightbox-modal .modal-body {
  display: flex;
  align-items: center;
  padding: 0;
}

.lightbox-modal .lightbox-content {
  width: 100%;
}

.lightbox-modal .carousel-indicators {
  margin-bottom: 0;
}

.lightbox-modal .carousel-indicators [data-bs-target] {
  background-color: #fff !important;
}

.lightbox-modal .carousel-inner {
  width: 75%;
}

.lightbox-modal .carousel-inner img {
  animation: zoomin 10s linear infinite;
  height: 700px;
  object-fit: contain;
}

.lightbox-modal .carousel-item .carousel-caption {
  right: 0;
  bottom: 0;
  left: 0;
  padding-bottom: 2rem;
  background-color: rgb(0 0 0 / 0.75);
  color: #fff !important;
}

.lightbox-modal .carousel-control-prev,
.lightbox-modal .carousel-control-next {
  width: auto;
}

.lightbox-modal .carousel-control-prev {
  left: 1.25rem;
}

.lightbox-modal .carousel-control-next {
  right: 1.25rem;
}

@media (min-width: 1400px) {
  .lightbox-modal .carousel-inner {
    max-width: 60%;
  }
}

[data-bs-theme="dark"] .lightbox-modal .carousel-control-next-icon,
[data-bs-theme="dark"] .lightbox-modal .carousel-control-prev-icon {
  filter: none;
}

.btn-fullscreen-enlarge,
.btn-fullscreen-exit {
  position: absolute;
  top: 1.25rem;
  right: 3.5rem;
  z-index: 10;
  border: 0;
  background: transparent;
  opacity: 0.6;
  font-size: 1.25rem;
}

/***** gallery css end*****/


/*********** Our Girls page css start **********/
.ogs_img {
  height: 84px;
  width: 84px;
  object-fit: cover;
  border-radius: 12px;
}

.ogs_box .ags_title {
  font-size: 18px;
}

.pagination .page-link {
  color: var(--dark);
}

.pagination .page-link.active,
.pagination .page-link:hover,
.pagination .page-link:hover span {
  color: #fff;
  background-color: var(--pink);
  border-color: var(--pink);
}

.pagination .page-link:focus {
  box-shadow: none;
}

/*********** Our Girls page css end **********/

/******* Success stories ***********/
.ssb_banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  border-radius: 20px;
  padding: 40px;
}

.ssb_badge {
  display: inline-block;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  background: #4B6BFB;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.ssb_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
  color: #fff;
}

.ssb_user span {
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.ssb_user img {
  height: 36px;
  width: 36px;
  object-fit: contain;
  border-radius: 100%;
}

.ssg_location {
  background: #4B6BFB0D;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

.ssg_title {
  font-size: 22px;
  font-weight: 600;
  line-height: 28px;
  color: #000;
  transition: 0.4s;
}

.ssg_title:hover {
  color: var(--pink);
}

.ss_grid .card {
  border: 1px solid #E8E8EA;
  padding: 16px;
  border-radius: 12px;
  transition: 0.4s;
}

.ss_grid .card:hover {
  box-shadow: 0px 8px 24px 0px #959da58e;
}

.ssg_img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: top;
  border-radius: 6px;
}

.sps_badge {
  background: #4B6BFB;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}

.sps_title {
  font-size: 36px;
  font-weight: 600;
  line-height: 40px;
}

.sps_ckeditor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin-bottom: 16px;
}

.sps_ckeditor h2 {
  font-size: 24px;
  font-weight: 700;
}

.sps_ckeditor p {
  font-size: 20px;
}

.ssg_location img {
  height: 16px;
  position: relative;
  top: -2px;
}

/****** CSR page css start *******/
.csr_banner {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 570px;
}

.csr_main_title {
  font-weight: 900;
  font-size: 40px;
}

.csr_subtitle {
  font-size: 32px;
  font-weight: 500;
}

.csr_box {
  display: inline-block;
  height: 298px;
  width: 298px;
  border-radius: 100%;
  padding: 75px;
  text-align: center;
}

.csr_bg1 {
  background-color: var(--pink);
}

.csr_bg2 {
  background-color: #faff00;
}

.csr_bg3 {
  background-color: #03f7e8;
}

.csr_box p {
  display: flex;
  font-family: "Schoolbell", cursive;
  align-items: center;
  height: 100%;
}

.csr_middle_box {
  margin-left: -40px;
  margin-right: -40px;
  z-index: 1;
  position: relative;
}

/****** CSR page css end *******/

/******* Profile start*********/
.profile .nav-link {
  font-size: 14px;
  font-weight: 500;
  padding: 7px 10px;
  border: 0;
}

.profile .nav-link:hover {
  color: var(--pink);
}

.profile .nav-link.active {
  color: var(--pink);
  border-bottom: 3px solid var(--pink);
}

.profile form label {
  font-size: 14px;
  font-weight: 500;
}

.profile_img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
}

.pedit_icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.tb-container input {
  display: none;
}

.tb-container label {
  cursor: pointer;
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.table-responsive {
  overflow-x: auto;
  white-space: nowrap;
}

.mdt_img {
  height: 52px;
  width: 52px;
  border-radius: 15px;
}

.my_donation_tbl {
  width: 720px;
  border: 0;
}

.my_donation_tbl td,
.my_donation_tbl th {
  border: 0;
}

.mdt_cancel_btn {
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  text-decoration: underline;
}

.mdt_cancel_btn:hover {
  color: var(--pink);
}

/******* Profile end*********/
.md-btn {
  box-shadow: 0px 0px 0px 7px #FFFFFF inset;
  border: 3px solid #000000;
  background: #FFDCEB;
  border-radius: 30px;
  padding: 10px 20px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  transition: 0.5s;
}

.md-btn:hover {
  background: var(--pink);
  color: #fff;
}

.md-btn:hover .mtd_icon {
  filter: invert(1);
}

.border-mute {
  border-color: #BDC4CD;
}

.sign_in_section .form-control {
  border: 0.89px solid #BDC4CD;
  padding: 8px 24px;
  color: #000;
  font-size: 16px;
}

@media only screen and (min-width: 1600px) {
  .csr_banner {
    height: 700px;
  }

  .my_donation_tbl {
    width: 800px;
  }
}

@media only screen and (min-width: 992px) {
  .projectPageNumber {
    margin-top: -150px;
  }
}



@media only screen and (max-width: 991px) {
  .pledgeSwiper .plg_content {
    top: 26px;
  }

  .pledgeSwiper .plg_content h2 {
    font-size: 42px;
    line-height: 50px;
    margin-bottom: 10px;
  }

  .pledgeSwiper .plg_slide_img {
    height: 230px;
  }

  .num_box_1 {
    padding: 0px 0 30px;
  }

  .num_box_2 h3 {
    font-size: 26px;
    padding-bottom: 0;
  }

  .num_box_2 h3 span {
    font-size: 14px;
  }

  .trustee_box h2 {
    font-size: 34px;
  }

  .cstmBtn {
    width: 60%;
  }

  .campaignBox .campaign_img {
    height: 210px;
  }

  .campaign_video {
    height: 250px;
  }

  .csr_banner {
    height: 330px;
  }

  .csr_box {
    height: 220px;
    width: 220px;
    padding: 30px;
  }
}

.qr-section {
  text-align: center;
  margin-top: 20px;
}

.qr-section img {
  width: 150px;
  height: auto;
  border: 2px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-section img:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.qr-section .qr-text {
  margin-top: 8px;
  font-size: 13px;
  color: #555;
  font-weight: 500;
}



@media only screen and (max-width: 767px) {
  #offcanvasNavigation {
    height: 100vh;
  }

  #offcanvasNavigation .btn-close {
    position: absolute;
    top: 20px;
    right: 20px;
  }

  .pledgeSwiper .plg_slide_img {
    height: 200px;
  }

  .pledgeSwiper .plg_content h2 {
    font-size: 32px;
    line-height: 42px;
  }

  .section_title {
    font-size: 32px;
    line-height: 40px;
  }

  .trustee_box h2 {
    font-size: 28px;
  }

  .trustee_box p {
    font-size: 22px;
    line-height: 30px;
  }

  .agg-img {
    height: 100px;
    width: 100px;
  }

  .cstmBtn {
    width: 70%;
  }

  #cardLeftswipeIcon {
    top: 62px;
    left: -30px;
  }

  #cardRightSwipeIcon {
    top: 62px;
    right: -30px;
  }

  #cardLeftswipeIcon img,
  #cardRightSwipeIcon img {
    width: 80px;
  }

  .project_core_values a {
    font-size: 24px;
  }

  .cds_gallery .date {
    font-size: 16px;
  }

  .cds_product_title {
    font-size: 12px;
  }

  .cds_product_price {
    font-size: 12px;
  }

  .cds_qty .qty-minus,
  .cds_qty .qty-plus,
  .cds_qty .qty {
    height: 20px;
    width: 20px;
    font-size: 12px;
  }

  .ssb_banner {
    padding: 24px;
  }

  .sps_title {
    font-size: 28px;
    line-height: 34px;
  }

  .csr_middle_box {
    margin: 0;
  }

  .csr_tmal_title {
    width: 100%;
    font-size: 28px;
  }

  .csr_tmal_img {
    position: absolute;
    top: 0px;
    right: 0;
    height: 90px;
    width: 75px;
    border-bottom-left-radius: 16px;
  }

  .csr_tmal_row {
    height: 100%;
  }

  .csr_taml_pagination {
    left: 24px;
  }
  .nav-link{
    font-size: 14px;
  }
}


/* ================================
   DONOR PRIVILEGES SECTION
================================ */
.donor-privileges {
  background-color: #f3ecff;
  padding: 80px 0;
  position: relative;
}

.donor-privileges .container {
  width: 90%;
  margin: 0 auto;
  max-width: 1200px;
}

.donor-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

/* LEFT IMAGE */
.donor-image {
  position: relative;
  flex: 1 1 45%;
  max-width: 550px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.donor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.donor-image:hover img {
  transform: scale(1.05);
}

.donor-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

/* RIGHT TEXT */
.donor-content {
  flex: 1 1 45%;
  max-width: 550px;
  color: #1e1e1e;
}

.donor-content h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #0e175a;
}

.donor-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.donor-content ul li {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.donor-content ul li::before {
  content: "•";
  color: #1c2b80;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -2px;
}

.donor-btn {
  display: inline-block;
  background-color: #1c2b80;
  color: #fff;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.donor-btn:hover {
  background-color: #0e175a;
}

/* ================================
   RESPONSIVE DESIGN
================================ */
@media (max-width: 992px) {
  .donor-wrapper {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .donor-image,
  .donor-content {
    max-width: 100%;
  }

  .donor-content h2 {
    font-size: 24px;
  }

  .donor-content ul li {
    font-size: 15px;
  }

  .donor-btn {
    font-size: 15px;
    padding: 10px 24px;
  }
}

@media (max-width: 576px) {
  .donor-content h2 {
    font-size: 22px;
  }

  .donor-content ul li {
    font-size: 14px;
  }

  .donor-btn {
    padding: 8px 20px;
  }
}

/* =======================================
   Respected Contributors Section
======================================= */
.contributors-section {
  background-color: #f5f5ff;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
}

.contributors-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contributors-title {
  font-size: 28px;
  font-weight: 700;
  color: #0e175a;
  margin-bottom: 40px;
}

/* Wrapper for all rows */
.contributors-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
  overflow: hidden;
  position: relative;
}

/* Tracks (each line of donors) */
.contributors-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

/* Animations for rows */
@keyframes scrollRightToLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollLeftToRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.row1 {
  animation: scrollRightToLeft 350s linear infinite;
}
.row2 {
  animation: scrollLeftToRight 340s linear infinite;
}
.row3 {
  animation: scrollRightToLeft 350s linear infinite;
}

/* Donor Card */
.contributor-card {
  background: linear-gradient(145deg, #ffffff, #e7eaff);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  border-radius: 12px;
  padding: 14px 20px;
  min-width: 260px;
  text-align: left;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease;
}

.contributor-card:hover {
  transform: translateY(-4px);
}

.contributor-info {
  display: flex;
  align-items: center;
  margin-bottom: 6px;
}

.contributor-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #1c2b80;
  color: white;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  font-size: 16px;
}

.contributor-text h4 {
  font-size: 15px;
  color: #1c2b80;
  font-weight: 600;
}

.contributor-text p {
  font-size: 14px;
  color: #333;
  margin: 2px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .contributors-title {
    font-size: 22px;
  }
  .contributor-card {
    min-width: 200px;
    padding: 12px 14px;
  }
  .contributors-wrapper {
    gap: 20px;
  }
}

/* Mandir Nirman Seva Section */
.mandir-nirman-seva {
  background-color: #f2ecff;
  padding: 60px 0;
}

.mandir-nirman-seva .container {
  width: 90%;
  margin: 0 auto;
}

.seva-heading {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #0e174a;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* Grid Layout */
.seva-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: 20px;
  justify-items: center;
}

/* Card Style */
.seva-card {
  background: linear-gradient(135deg, #0e175a, #3f51b5);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease-in-out;
  width: 100%;
  max-width: 380px;
  height: 160px;
}

.seva-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
}

/* Image */
.seva-card img {
  width: 42%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.seva-card:hover img {
  transform: scale(1.05);
}

/* Content */
.seva-content {
  width: 58%;
  padding: 14px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.seva-content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.3;
}

.donate-btn {
  background: white;
  color: #0e175a;
  border: none;
  padding: 6px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.3s ease-in-out;
}

.donate-btn:hover {
  background: #dfe3ff;
  color: #000;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .seva-grid {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  }

  .seva-card {
    height: 150px;
  }
}

@media (max-width: 768px) {
  .seva-card {
    flex-direction: column;
    height: auto;
    max-width: 320px;
  }

  .seva-card img {
    width: 100%;
    height: 180px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  }

  .seva-content {
    width: 100%;
    text-align: center;
    padding: 12px 10px;
  }

  .seva-content h3 {
    font-size: 15px;
    margin-bottom: 8px;
  }

  .donate-btn {
    font-size: 13px;
    padding: 6px 14px;
  }
}

@media (max-width: 480px) {
  .seva-heading {
    font-size: 20px;
  }

  .seva-card {
    max-width: 280px;
  }

  .seva-content h3 {
    font-size: 14px;
  }

  .donate-btn {
    font-size: 12px;
    padding: 5px 12px;
  }
}

@media only screen and (max-width: 600px) {
  .navbar-collapse {
    position: absolute;
    background-color: #0b6fb8;
    width: 93%;
    left: 0;
    right: 0;
    text-align: center;
    margin: auto;
    border-radius: 12px;
    margin-top: 5px;
  }

  .navbar-collapse .nav-link {
    color: #fff;
  }
}