@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&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");
body {
  font-family: "Poppins", sans-serif;
  font-style: normal;
}
ul {
  list-style-type: none;
}
a,
a:hover {
  text-decoration: none;
}

.btn-check:focus + .btn-light,
.btn-light:focus {
  box-shadow: none;
}

button:focus:not(:focus-visible) {
  box-shadow: none;
}

.btn-check:active + .btn-light:focus,
.btn-check:checked + .btn-light:focus,
.btn-light.active:focus,
.btn-light:active:focus,
.show > .btn-light.dropdown-toggle:focus {
  box-shadow: none;
}

body {
  transition: background-color 0.5s, color 0.5s;
}
.my-dark-theme {
  background-color: #121212;
  color: white;
}

/* Navbar fixed at top */
.my-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 11; /* Make sure navbar stays on top of other content */
  text-transform: uppercase;
  height: 130px;
  background-color: #fff;
  transition: background-color 0.5s, color 0.5s;
}

/* Fix logo and sun icon on right side */
.my-navbar .my-d-flex {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1; /* Make sure it's above navbar links */
}

/* Prevent shifting of navbar links when toggling */
.my-navbar-collapse {
  position: relative;
}
#themeToggle {
  margin-top: -35px;
  margin-left: -45px;
}

/*go to top*/
.cd-top {
  display: inline-block;
  height: 40px;
  width: 40px;
  position: fixed;
  bottom: 40px;
  right: 10px;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  /* image replacement properties */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background: #e0ad39 url(../images/cd-top-arrow.png) no-repeat center 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s,
    background-color 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s, background-color 0.3s 0s;
  z-index: 1;
}
.cd-top.cd-top--show,
.cd-top.cd-top--fade-out,
.cd-top:hover {
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s,
    background-color 0.3s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s, background-color 0.3s 0s;
}
.cd-top.cd-top--show {
  /* the button becomes visible */
  visibility: visible;
  opacity: 1;
}
.cd-top.cd-top--fade-out {
  /* if the user keeps scrolling down, the button is out of focus and becomes less visible */
  opacity: 0.7;
}
.cd-top:hover {
  background-color: #e0ad39;
  opacity: 1;
}
/*go to top*/

.nav_logo {
  height: 95px;
}
.my-navbar .navbar-nav .nav-link.active,
.my-navbar .navbar-nav .show > .nav-link {
  color: #fff;
  background-color: #c80000;
  border-radius: 8px;
  padding: 8px 20px;
  border-color: #c80000;
  box-shadow: 0px 2px 2px rgba(200, 0, 0, 0.35);
}
.my-navbar .navbar-nav .nav-link {
  transition: all 0.4s ease;
}
.my-navbar .navbar-nav .nav-link:focus,
.my-navbar .navbar-nav .nav-link:hover {
  color: #fff;
  background-color: #c80000;
  border-radius: 8px;
  padding: 8px 20px;
  border-color: #c80000;
  box-shadow: 0px 2px 2px rgba(200, 0, 0, 0.35);
  transition: all 0.4s ease;
}

.theme-color-yellow {
  color: #e0ad39;
}
.theme-color-red {
  color: #b13c20;
}

#themeToggle:hover {
  color: #d4a12e;
}
.my-navbar .btn-check:focus + .btn-theme,
.my-navbar .btn-theme:focus {
  outline: 0;
  box-shadow: none;
}

.my-navbar .navbar-nav .nav-link {
  margin-right: 20px;
  box-sizing: border-box;
  background: #d9d9d9;
  border: 1px solid #c8cdd6;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.35);
  border-radius: 0px;
  padding: 8px 20px;
}

.mt-130 {
  margin-top: 130px;
}

/* Slider container adjustments */
.slider-container {
  position: relative;
  width: 100%;
  max-width: initial; /* Maximum width for the slider */
  margin: 0 auto;
}

/* Slider images container */
.slider-images {
  position: relative;
  width: 100%;
  height: auto;
}

/* Each image item will be positioned */
.image-item {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Initially display the first image with full opacity */
.image-item.active {
  opacity: 1;
}

/* Specific Parent Class CSS */
.custom-slider .carousel-item {
  transition: opacity 1s ease-in-out;
}

.custom-slider .carousel-control-prev,
.custom-slider .carousel-control-next {
  color: white;
  font-size: 2rem;
  position: absolute; /* Ensure they are positioned over the carousel */
  top: 50%;
  transform: translateY(-50%);
  z-index: 10; /* Ensure the buttons are above the carousel */
}

/* Initially hide the controls */
.custom-slider .carousel-control-prev,
.custom-slider .carousel-control-next {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* On hover, show the controls */
.custom-slider:hover .carousel-control-prev,
.custom-slider:hover .carousel-control-next {
  opacity: 1;
}
.custom-slider .carousel-control-prev {
  left: -15px;
}

.custom-slider .carousel-control-next {
  right: -15px;
}

/* Ensure text inside carousel items is visible */
.custom-slider .carousel-item h5 {
  font-size: 24px;
  min-height: 75px;
  margin: 0px;
}

.custom-slider .carousel-item p {
  color: #8d8c96;
  min-height: 130px;
  font-size: 18px;
}

.custom-slider .carousel-control-next-icon,
.custom-slider .carousel-control-prev-icon {
  background: none;
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: 1.5rem;
  color: #5b5f60;
}

.custom-slider .carousel-control-next-icon::before {
  content: "\f054"; /* Unicode for the right chevron icon (fa-chevron-right) */
}
.custom-slider .carousel-control-prev-icon::before {
  content: "\f053"; /* Unicode for the right chevron icon (fa-chevron-right) */
}

#typewriter-heading {
  overflow: hidden; /* Hide text until it's revealed */
  white-space: nowrap; /* Prevent text from wrapping */
  border-right: 3px solid black; /* Simulate the cursor */
  display: inline-block; /* Ensure the element takes width based on text */
  animation: typing 4s steps(30) infinite, blink-caret 0.75s step-end infinite;
  width: auto; /* Auto width based on the text */
  max-width: 395px;
  font-size: 32px;
}

/* Typewriter animation */
@keyframes typing {
  0% {
    width: 0; /* Start with no text visible */
  }
  50% {
    width: 100%; /* Full text visible halfway through */
  }
  100% {
    width: 0; /* Hide text at the end */
  }
}

/* Cursor blink effect */
@keyframes blink-caret {
  0%,
  100% {
    border-color: transparent; /* Cursor hidden */
  }
  50% {
    border-color: black; /* Cursor blinks in the middle of the animation */
  }
}

.bg-1 {
  background-image: url(../images/bg-1.png);
  background-repeat: no-repeat;
  background-position: 205px 361px;
  background-size: 339px 197px;
  /* height: 80vh;*/
}
.big_h {
  font-size: 50px;
}

/* Unique parent class to avoid global CSS impact */
.product-slider .carousel-item {
  position: relative;
  text-align: center;
}

.product-slider .carousel-item img {
  height: 120px;
  max-width: 100%;
  object-fit: cover;
  margin-bottom: 15px; /* Add margin below the image */
  transition: transform 0.3s ease;
}

/* Hover effect on image */
.product-slider .carousel-item:hover img {
  transform: scale(1.05); /* Slight zoom effect on hover */
}

/* Text under image */
.product-slider .carousel-caption {
  position: relative;
  color: black;
  z-index: 10;
  margin-top: 10px;
  left: 0;
  right: 0;
}

/* Initially show text and hide button */
.product-slider .carousel-caption p {
  margin: 0;
  color: #8d8c96;
}

.product-slider .carousel-item:hover .carousel-caption p {
  opacity: 0; /* Hide text on hover */
}

.product-slider .carousel-item:hover .btn {
  opacity: 1; /* Show button on hover */
}

/* Button style */
.product-slider .btn {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.5s ease;
  background-color: #d9d9d9;
  color: #000;
  border-color: #d9d9d9;
}

/* Custom Styling for the Arrows */
.product-slider .carousel-control-prev-icon,
.product-slider .carousel-control-next-icon {
  font-size: 1.5rem; /* Adjust the size of arrows */
  color: #5b5f60; /* Set initial arrow color */
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none;
}

.product-slider .carousel-control-prev-icon {
  content: "\f104"; /* Font Awesome left arrow */
}

.product-slider .carousel-control-next-icon {
  content: "\f105"; /* Font Awesome right arrow */
}

/* Hover effect for arrows */
.product-slider .carousel-control-prev:hover,
.product-slider .carousel-control-next:hover {
  color: #0d6efd; /* Color change on hover (example: blue) */
}

.product-slider .carousel-control-next,
.product-slider .carousel-control-prev {
  z-index: 10;
}

/* Initially hide the controls */
.product-slider .carousel-control-prev,
.product-slider .carousel-control-next {
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* On hover, show the controls */
.product-slider:hover .carousel-control-prev,
.product-slider:hover .carousel-control-next {
  opacity: 1;
}

.shrinkNav {
  transition: padding 0.3s ease, background-color 0.3s ease;
}

.shrinkNav.shrink {
  padding: 0px 0px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.my-navbar.shrink {
  height: 108px;
}
.shrink .navbar-nav {
  margin-top: 22px !important;
}
.shrinkNav img {
  transition: width 0.3s ease;
}

.shrinkNav.shrink img {
  height: 70px; /* Shrink logo */
  margin-top: 10px;
}

.flex_container {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  row-gap: 15px;
  column-gap: 15px;
}
.flex_item {
}
.flex_container img {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
  max-width: 100%;
}

.flex_container img:hover {
  transform: scale(1.03);
}

/*magic btn css*/
.button_magic {
  display: inline-block;
  position: relative;
  margin: 0;
  padding: 0px 5px;
  border: 0;
  overflow: hidden;
  text-decoration: none;
  font-size: 18px;
  outline: none;
  color: #8d8c96;
  background: transparent;
  line-height: 24px;
}

.button_magic span {
  -webkit-transition: 0.6s;
  -moz-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

/* Pseudo-elements for hover and active states */
.button_magic:before,
.button_magic:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 100%;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.4s, opacity 0.6s;
  -moz-transition: 0.4s, opacity 0.6s;
  -o-transition: 0.4s, opacity 0.6s;
  transition: 0.4s, opacity 0.6s;
  color: #fff;
}

/* :before for hover text */
.button_magic:before {
  content: attr(data-hover);
  transform: translateY(100%); /* Initially, place it below the button_magic */
  opacity: 0;
}

/* :after for active text */
.button_magic:after {
  content: attr(data-active);
  transform: translateY(-100%); /* Initially, place it above the button_magic */
  opacity: 0;
}

/* On hover or active: Show before/after text */
.button_magic:hover span,
.button_magic:active span {
  opacity: 0;
  transform: scale(0.3); /* Shrink the original text */
}

/* Hover effect */
.button_magic:hover:before {
  opacity: 1;
  transform: translateY(0); /* Move the hover text from bottom to top */
  transition-delay: 0.4s; /* Delay after the span fades out */
}

/* Active effect */
.button_magic:active:after {
  opacity: 1;
  transform: translateY(0); /* Move the active text from top to bottom */
}

/* Hide the before text on active state */
.button_magic:active:before {
  opacity: 0;
  transform: translateY(100%); /* Move the hover text back to the bottom */
}
/*magic btn css end*/

/*fillBOX css*/
.custom-card {
  border: 2px solid #b13c20;
  background-color: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  padding-top: 0;
  margin-bottom: 55px;
}
.custom-card p {
  color: #8d8c96;
  transition: opacity 0.3s ease;
  margin: -10px 0 0 0;
  font-size: 18px;
}
.custom-card p i {
  font-size: 12px;
  color: #c33104;
}
.custom-card:hover {
  background-color: #b13c20;
  border-radius: 6px;
}
.custom-card:hover p {
  opacity: 0;
}
.custom-card:hover .btn {
  opacity: 1;
}
.custom-card .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}
.p_top {
  display: inline-block;
  border: 2px solid #b13c20;
  background: #b13c20;
  margin: 0 auto;
  padding: 0px 0px 0 35px;
  position: relative;
  top: -25px;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  width: 380px;
  text-align: left;
  height: 50px;
  line-height: 45px;
  font-weight: 400;
}
.custom-card:hover .p_top {
  background-color: #f9ddd9;
  border: 2px solid #b13c20;
  color: #b13c20;
}
/* BOTTOM TO TOP */
.bottom_to_top {
  background: linear-gradient(to top, #b13c20 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.bottom_to_top:hover {
  background-position: bottom;
}

.custom-card2 {
  border: 2px solid #411a16;
  background-color: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  padding-top: 0;
  margin-bottom: 55px;
}
.custom-card2 p {
  color: #8d8c96;
  transition: opacity 0.3s ease;
  margin: -10px 0 0 0;
  font-size: 18px;
}
.custom-card2 p i {
  font-size: 12px;
  color: #411a16;
}
.custom-card2:hover {
  background-color: #411a16;
  border-radius: 6px;
}
.custom-card2:hover p {
  opacity: 0;
}
.custom-card2:hover .btn {
  opacity: 1;
}
.custom-card2 .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}
.p_top2 {
  display: inline-block;
  border: 2px solid #411a16;
  background: #411a16;
  margin: 0 auto;
  padding: 0px 0px 0 35px;
  position: relative;
  top: -25px;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  width: 380px;
  text-align: left;
  height: 50px;
  line-height: 45px;
  font-weight: 400;
}
.custom-card2:hover .p_top2 {
  background-color: #e3d9d8;
  border: 2px solid #411a16;
  color: #411a16;
}
/* BOTTOM TO TOP */
.bottom_to_top2 {
  background: linear-gradient(to top, #411a16 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.bottom_to_top2:hover {
  background-position: bottom;
}

.custom-card3 {
  border: 2px solid #e0ad39;
  background-color: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  padding-top: 0;
  margin-bottom: 55px;
}
.custom-card3 p {
  color: #8d8c96;
  transition: opacity 0.3s ease;
  margin: -10px 0 0 0;
  font-size: 18px;
}
.custom-card3 p i {
  font-size: 12px;
  color: #e0ad39;
}
.custom-card3:hover {
  background-color: #e0ad39;
  border-radius: 6px;
}
.custom-card3:hover p {
  opacity: 0;
}
.custom-card3:hover .btn {
  opacity: 1;
}
.custom-card3 .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}
.p_top3 {
  display: inline-block;
  border: 2px solid #e0ad39;
  background: #e0ad39;
  margin: 0 auto;
  padding: 0px 0px 0 35px;
  position: relative;
  top: -25px;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  width: 380px;
  text-align: left;
  height: 50px;
  line-height: 45px;
  font-weight: 400;
}
.custom-card3:hover .p_top3 {
  background-color: #feefd9;
  border: 2px solid #e0ad39;
  color: #e0ad39;
}
/* BOTTOM TO TOP */
.bottom_to_top3 {
  background: linear-gradient(to top, #e0ad39 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.bottom_to_top3:hover {
  background-position: bottom;
}

.custom-card4 {
  border: 2px solid #8d8c96;
  background-color: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  padding-top: 0;
  margin-bottom: 55px;
}
.custom-card4 p {
  color: #8d8c96;
  transition: opacity 0.3s ease;
  margin: -10px 0 0 0;
  font-size: 18px;
}
.custom-card4 p i {
  font-size: 12px;
  color: #8d8c96;
}
.custom-card4:hover {
  background-color: #8d8c96;
  border-radius: 6px;
}
.custom-card4:hover p {
  opacity: 0;
}
.custom-card4:hover .btn {
  opacity: 1;
}
.custom-card4 .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}
.p_top4 {
  display: inline-block;
  border: 2px solid #8d8c96;
  background: #8d8c96;
  margin: 0 auto;
  padding: 0px 0px 0 35px;
  position: relative;
  top: -25px;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  width: 380px;
  text-align: left;
  height: 50px;
  line-height: 45px;
  font-weight: 400;
}
.custom-card4:hover .p_top4 {
  background-color: #eaeaec;
  border: 2px solid #8d8c96;
  color: #8d8c96;
}
/* BOTTOM TO TOP */
.bottom_to_top4 {
  background: linear-gradient(to top, #8d8c96 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.bottom_to_top4:hover {
  background-position: bottom;
}

.custom-card5 {
  border: 2px solid #c30d0f;
  background-color: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  padding-top: 0;
  margin-bottom: 55px;
}
.custom-card5 p {
  color: #8d8c96;
  transition: opacity 0.3s ease;
  margin: -10px 0 0 0;
  font-size: 18px;
}
.custom-card5 p i {
  font-size: 12px;
  color: #c30d0f;
}
.custom-card5:hover {
  background-color: #c30d0f;
  border-radius: 6px;
}
.custom-card5:hover p {
  opacity: 0;
}
.custom-card5:hover .btn {
  opacity: 1;
}
.custom-card5 .btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 24px;
  height: 50px;
  line-height: 50px;
  width: 100%;
}
.p_top5 {
  display: inline-block;
  border: 2px solid #c30d0f;
  background: #c30d0f;
  margin: 0 auto;
  padding: 0px 0px 0 35px;
  position: relative;
  top: -25px;
  color: #fff;
  border-radius: 6px;
  font-size: 18px;
  width: 380px;
  text-align: left;
  height: 50px;
  line-height: 45px;
  font-weight: 400;
}
.custom-card5:hover .p_top5 {
  background-color: #fdd9d9;
  border: 2px solid #c30d0f;
  color: #c30d0f;
}
/* BOTTOM TO TOP */
.bottom_to_top5 {
  background: linear-gradient(to top, #c30d0f 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.bottom_to_top5:hover {
  background-position: bottom;
}

/*fillBOX css END*/
.color-inherit {
  color: inherit;
}
.color-inherit:hover {
  color: inherit;
}
.gallery_sign {
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0px;
}
.gallery_sign p {
  margin-top: -22px;
  font-size: 20px;
}
.bg_footer {
  background-color: #273943;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  color: #d4d7d9;
  font-weight: normal;
  font-size: 18px;
}
.bg_footer a {
  color: inherit;
}
.bg_footer a:hover {
  color: #fff;
}

.filling_bottom_to_top {
  background: linear-gradient(to top, #b13c20 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
}

.filling_bottom_to_top:hover {
  background-position: bottom;
}
.bg-2 {
  background-image: url(../images/donate-bg-1.png),
    url(../images/donate-bg-2.png);
  background-position: 94% 50%, 30px 50%;
  background-repeat: no-repeat, no-repeat;
  background-size: 150px, 150px, auto;
  height: auto;
  background-attachment: fixed, fixed;
}
.bg-3 {
  background-image: url(../images/donate-bg-1.png),
    url(../images/donate-bg-2.png);
  background-position: 5% 15%, 95% 15%;
  background-repeat: no-repeat, no-repeat;
  background-size: 150px, 150px, auto;
  height: auto;
}
.donate-tabs .nav-tabs .nav-item.show .nav-link,
.donate-tabs .nav-tabs .nav-link.active {
  color: #fff;
  background-color: #b13c20;
  border: 0;
}
.donate-tabs .nav-tabs {
  border-bottom: 0;
}
.donate-tabs .nav-tabs .nav-link {
  background: #d9d9d9;
  border: 0;
  color: rgba(0, 0, 0, 0.55);
  font-size: 20px;
}
.donate-tabs h5,
.donate-tabs .form-select {
  font-size: 20px;
}

/* Base styles for radio buttons */
.donate-radio-container {
  font-size: 20px;
}

.donate-radio-box {
  position: relative;
  background-color: #e0ad39; /* Default background color */
  border: 2px solid #e0ad39; /* Default border color */
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  text-align: center;
  width: 100%;
  transition: all 0.3s ease;
  margin-bottom: 15px;
}

.donate-radio-text {
  color: #212529; /* Default text color */
  font-weight: 400;
  display: block;
  padding: 10px;
}

/* Hide the default radio button circle */
.donate-radio-box input[type="radio"] {
  display: none;
}

/* When the radio button is checked, change the styles */
.donate-radio-box input[type="radio"]:checked + .donate-radio-text {
  color: white; /* Change text color to white */
}

/* Change background color and border of the parent label when radio button is selected */
.donate-radio-box input[type="radio"]:checked + .donate-radio-text {
  background-color: #b13c20;
  border-color: #b13c20;
  border-radius: 10px;
}

.donate-radio-box input[type="radio"]:checked {
  background-color: #b13c20;
  border-color: #b13c20;
}

/* Hover effect */
.donate-radio-box:hover {
  background-color: #b13c20;
  border-color: #b13c20;
}
.donate-radio-box:hover .donate-radio-text {
  color: white;
}

.donate-radio-box input[type="radio"]:checked + .donate-radio-text {
  color: white; /* White text color when selected */
}
.donate-tabs .btn-danger {
  background-color: #c30d0f;
  border-color: #c30d0f;
  height: 50px;
  font-size: 20px;
}
.donate-tabs .btn-danger:hover {
  background-color: #b10d0f;
  border-color: #b10d0f;
}

/* Wrap all the CSS inside the parent class donate_work_opt */
.donate_work_opt {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: 150px;
  background-color: #f8f9fa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  margin-bottom: 30px;
}

/* Body part of the box */
.donate_work_opt .slider-body {
  padding: 10px 10px 20px 10px;
  position: relative;
  height: 70%;
}

/* Footer part of the box */
.donate_work_opt .slider-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #007bff;
  color: white;
  padding: 10px;
  text-align: center;
}

/* Icon positioning */
.donate_work_opt .slider-icon {
  position: absolute;
  bottom: -21px;
  right: -17px;
  z-index: 2;
  width: 50px;
  height: 50px;
  animation: pulse 1.5s ease-in-out infinite;
}

/* Counter styles */
.donate_work_opt .counter {
  font-size: 20px;
  font-weight: bold;
}

/* Sliding text styles */
.donate_work_opt .slider-text {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: rgba(0, 0, 0, 0.55);
}

/* Fade transition */
.donate_work_opt .carousel-item {
  transition: opacity 1s ease-in-out;
}

/* Animation for the image */
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.lrc-bg-1 {
  background-color: #411a16 !important;
}
.lrc-bg-2 {
  background-color: #b13c20 !important;
}
.lrc-bg-3 {
  background-color: #e0ad39 !important;
}
.lrc-bg-4 {
  background-color: #8d8c96 !important;
}
.lrc-bg-5 {
  background-color: #373737 !important;
}
.lrc-bg-6 {
  background-color: #c80000 !important;
}

.lrc-border-1 {
  border-color: #411a16 !important;
}
.lrc-border-2 {
  border-color: #b13c20 !important;
}
.lrc-border-3 {
  border-color: #e0ad39 !important;
}
.lrc-border-4 {
  border-color: #8d8c96 !important;
}
.lrc-border-5 {
  border-color: #373737 !important;
}
.lrc-border-6 {
  border-color: #c80000 !important;
}

.lrc-color-1 {
  color: #411a16 !important;
}
.lrc-color-2 {
  color: #b13c20 !important;
}
.lrc-color-3 {
  color: #e0ad39 !important;
}
.lrc-color-4 {
  color: #8d8c96 !important;
}
.lrc-color-5 {
  color: #373737 !important;
}
.lrc-color-6 {
  color: #c80000 !important;
}

.lrc-opacity-1 {
  background-color: #ffffcc !important;
}
.lrc-opacity-2 {
  background-color: #f9e1e1 !important;
}
.lrc-opacity-3 {
  background-color: #fbf1dd !important;
}
.lrc-opacity-4 {
  background-color: #e3e2f0 !important;
}
.lrc-opacity-5 {
  background-color: #e4e4e4 !important;
}
.lrc-opacity-6 {
  background-color: #fae1e1 !important;
}

.hut_container {
  position: relative;
  margin-bottom: 15px;
}
.hut_slider_div {
  position: absolute;
  top: 50%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  padding-left: 55px;
  padding-right: 49px;
}
.hut_footer {
  position: absolute;
  bottom: 0px;
  right: 0;
  left: 0;
  text-align: center;
  width: 78.5%;
  margin: 0 auto;
  color: #7e332d;
  padding: 0px 0;
  font-size: 14px;
  cursor: pointer;

  border: 2px solid #7e332d;
  background: linear-gradient(to left, #7e332d 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: left;
  transition: all 0.35s ease-out;
}
.hut_footer:hover {
  bottom: -6px;
  padding: 3px 0;
  font-size: 18px;

  border: 2px solid #7e332d;
  background-position: right;
  color: #fff;
}

.hut_count_nmbr {
  font-size: 30px;
  font-weight: bold;
}
.hut_count_heading {
  font-size: 18px;
  font-weight: 400;
  line-height: normal;
  color: rgba(0, 0, 0, 0.55);
}
/* RIGHT TO LEFT */
.filling_right_to_left {
  border: 2px solid #7e332d;
  background: linear-gradient(to left, #7e332d 50%, #fff 50%);
  background-size: 200% 100%;
  background-position: left;
  transition: all 0.35s ease-out;
}

.filling_right_to_left:hover {
  border: 2px solid #7e332d;
  background-position: right;
  color: #fff;
}

/*sponser-button*/
.sponser-button {
  right: 4px;
  transform: translate(-28px, -13px);
  bottom: -8px;
  border: solid 1px #6d1515;
  text-align: center;
  display: inline-block;
  position: absolute;
  text-decoration: none;
  color: #fff;
  text-transform: capitalize;
  font-size: 18px;
  padding: 0px 0px;
  border-radius: 0px;
  overflow: hidden;
  background: linear-gradient(2deg, #b32d2d, #c53a3a, #c60000);
  transition: 0.45s;
  width: 221px;
}
.sponser-button:hover {
  color: #fff;
  text-indent: -9999px;
  background: linear-gradient(34deg, #c60000, #d90c0c, #b32d2d);
  box-shadow: 0px 0px 8px 10px #a70606 inset;
  padding: 8px 0;
  bottom: -8px;
}

.sponser-button:before {
  bottom: 2px;

  width: 50%;
  background: rgba(255, 255, 255, 0.05);

  content: "Donate Now";
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  transform: scale(0, 1);
  transition: all 0.2s linear 0s;
  color: #fff;
  font-weight: 300;
}
.sponser-button:hover:before {
  transform: scale(1, 1);
  text-indent: 0;
}

.sponser-button span:nth-child(1) {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #fb3535, #eb6969);
  animation: animate1 2s linear infinite;
}

@keyframes animate1 {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.sponser-button span:nth-child(2) {
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, #fb3535, #eb6969);
  animation: animate2 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate2 {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}

.sponser-button span:nth-child(3) {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to left, #fb3535, #eb6969);
  animation: animate3 2s linear infinite;
}

@keyframes animate3 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.sponser-button span:nth-child(4) {
  position: absolute;
  top: 0;
  left: 0;
  width: 2px;
  height: 100%;
  background: linear-gradient(to top, #fb3535, #eb6969);
  animation: animate4 2s linear infinite;
  animation-delay: 1s;
}

@keyframes animate4 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}

/*sponser-button*/

/* New Hover Effect for hut_container */
.hut_container:hover .sponser-button {
  color: #fff;
  text-indent: -9999px;
  background: linear-gradient(34deg, #c60000, #d90c0c, #b32d2d);
  box-shadow: 0px 0px 8px 10px #a70606 inset;
  padding: 8px 0;
  bottom: -8px;
}

/* New Hover Effect for hut_container */
.hut_container:hover .sponser-button:before {
  transform: scale(1, 1);
  text-indent: 0;
}

.hut_container {
  transition: transform 0.3s ease-in-out; /* Smooth transition for zoom effect */
}

.hut_container:hover {
  transform: scale(1.02); /* Slight zoom effect */
}
.fs-20 {
  font-size: 20px;
}
.fs-18 {
  font-size: 18px;
}

#formSection {
  scroll-margin-top: 150px; /* Adjust this value as needed */
}

.reachBox1 {
  border: 2px solid #c80000;
  background: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
  margin-bottom: 120px;
  background: linear-gradient(to top, #c80000 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
  color: #212529;
  width: 90%;
  border-radius: 8px;
}
.reachBox1 h5 {
  font-size: 28px;
  color: #c80000;
}
.reachBox1 ul {
  transition: opacity 0.3s ease;
  font-size: 22px;
  line-height: 50px;
}

.reachBox1:hover {
  box-shadow: 5px 5px 10px #8f8f8f;
  border-radius: 20px;
  background-position: bottom;
}
.reachBox1:hover ul {
  opacity: 0;
}
.reachBox1:hover .btn {
  opacity: 1;
}
.reachBox1 .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
}

.reachImg1 {
  position: absolute;
  right: -100px;
  bottom: -120px;
  border-radius: 20px;
  width: 250px;
  height: 250px;
  transition: 0.4s;
  margin-bottom: 50px;
}
.reachImg1 img {
  border-radius: 20px;
  height: 100%;
  object-fit: fill;
}
.reachBox1:hover .reachImg1 {
  margin-bottom: 20px;
  box-shadow: 15px 15px #c80000;
}

.reachBox2 {
  border: 2px solid #e0ad39;
  background: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
  margin-bottom: 120px;
  background: linear-gradient(to top, #e0ad39 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
  color: #212529;
  width: 90%;
  padding-left: 165px;
  float: right;
  border-radius: 8px;
}
.reachBox2 h5 {
  font-size: 28px;
  color: #e0ad39;
}
.reachBox2 ul {
  transition: opacity 0.3s ease;
  font-size: 22px;
  line-height: 50px;
}

.reachBox2:hover {
  box-shadow: 5px 5px 10px #8f8f8f;
  border-radius: 20px;
  background-position: bottom;
}
.reachBox2:hover ul {
  opacity: 0;
}
.reachBox2:hover .btn {
  opacity: 1;
}
.reachBox2 .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
}
.reachImg2 {
  position: absolute;
  left: -100px;
  bottom: -120px;
  border-radius: 20px;
  width: 250px;
  height: 250px;
  transition: 0.4s;
  margin-bottom: 50px;
}
.reachImg2 img {
  border-radius: 20px;
  height: 100%;
  object-fit: fill;
}
.reachBox2:hover .reachImg2 {
  margin-bottom: 20px;
  box-shadow: -15px 15px #e0ad39;
}

.reachBox3 {
  border: 2px solid #b13c20;
  background: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
  margin-bottom: 120px;
  background: linear-gradient(to top, #b13c20 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
  color: #212529;
  width: 90%;
  border-radius: 8px;
  padding-right: 165px;
}
.reachBox3 h5 {
  font-size: 28px;
  color: #b13c20;
}
.reachBox3 ul {
  transition: opacity 0.3s ease;
  font-size: 22px;
  line-height: 50px;
}

.reachBox3:hover {
  box-shadow: 5px 5px 10px #8f8f8f;
  border-radius: 20px;
  background-position: bottom;
}
.reachBox3:hover ul {
  opacity: 0;
}
.reachBox3:hover .btn {
  opacity: 1;
}
.reachBox3 .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
}

.reachImg3 {
  position: absolute;
  right: -100px;
  bottom: -120px;
  border-radius: 20px;
  width: 250px;
  height: 250px;
  transition: 0.4s;
  margin-bottom: 50px;
}
.reachImg3 img {
  border-radius: 20px;
  height: 100%;
  object-fit: fill;
}
.reachBox3:hover .reachImg3 {
  margin-bottom: 20px;
  box-shadow: 15px 15px #b13c20;
}

.reachBox4 {
  border: 2px solid #8d8c96;
  background: white;
  padding: 20px;
  transition: background-color 0.3s ease, color 0.3s ease;
  position: relative;
  overflow: visible;
  cursor: pointer;
  margin-bottom: 120px;
  background: linear-gradient(to top, #8d8c96 50%, #fff 50%);
  background-size: 100% 200%;
  background-position: top;
  transition: all 0.35s ease-out;
  color: #212529;
  width: 90%;
  padding-left: 165px;
  float: right;
  border-radius: 8px;
}
.reachBox4 h5 {
  font-size: 28px;
  color: #8d8c96;
}
.reachBox4 ul {
  transition: opacity 0.3s ease;
  font-size: 22px;
  line-height: 50px;
}

.reachBox4:hover {
  box-shadow: 5px 5px 10px #8f8f8f;
  border-radius: 20px;
  background-position: bottom;
}
.reachBox4:hover ul {
  opacity: 0;
}
.reachBox4:hover .btn {
  opacity: 1;
}
.reachBox4 .btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  background-color: transparent;
  color: #fff;
  border-color: transparent;
  border-radius: 100px;
  padding: 0px 25px;
  font-weight: 300;
  font-size: 30px;
  height: 50px;
  line-height: 50px;
}
.reachImg4 {
  position: absolute;
  left: -100px;
  bottom: -120px;
  border-radius: 20px;
  width: 250px;
  height: 250px;
  transition: 0.4s;
  margin-bottom: 50px;
}
.reachImg4 img {
  border-radius: 20px;
  height: 100%;
  object-fit: fill;
}
.reachBox4:hover .reachImg4 {
  margin-bottom: 20px;
  box-shadow: -15px 15px #8d8c96;
}

/* Footer styles */
.footer_expand {
  background-color: #f7f7f7;
  color: #212529;
  position: relative;
  bottom: 0;
  width: 100%;
  height: 125px;
  overflow: hidden;
  transition: transform 0.5s ease-in-out, height 0.5s ease-in-out;
  transform: translateY(100%);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  border: solid 2px #8d8c96;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
  padding-top: 10px;
  font-size: 16px;
}
.footer_expand .border-end {
  border-right: 1px solid #8d8c96 !important;
}
.footer_expand .border-start {
  border-left: 1px solid #8d8c96 !important;
}
.footer_expand_logo {
  height: 80px;
}

/* When hovering, footer expands upwards */
.footer_expand:hover {
  transform: translateY(0); /* Footer moves up */
  height: 242px; /* Height when expanded */
}

/* Footer Header */
.footer_expand-header {
  display: flex;
  justify-content: space-around;
  padding: 10px 18px 0px 18px;
  align-items: center;
  position: relative;
}
.footer_expand-header .logo {
  font-size: 24px;
}
.footer_expand-header a,
.footer_expand a {
  color: #212529;
  text-decoration: none;
  padding-bottom: 2px;
}
.footer_expand a:hover,
.footer_expand a:hover {
  color: #c33104;
}

/* Footer Body (Initially hidden) */
.footer_expand-body {
  display: flex;
  justify-content: space-around;
  padding: 0px 5px 20px 5px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
.footer_expand-body ul li {
  padding-bottom: 2px;
}
.footer_expand-body > div {
  width: 30%;
}

/* Footer Body visibility when footer expands */
.footer_expand:hover .footer_expand-body {
  opacity: 1;
}

/* @start: Cursor */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 2px solid #d8a533;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.1s;
}

.cursor2 {
  position: fixed;
  width: 8px;
  height: 8px;
  background-color: #c30d0f;
  border-radius: 50%;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: 0.15s;
}

.content:hover ~ .cursor {
  transform: translate(-50%, -50%) scale(1.5);
  background-color: #c6c6c6;
  opacity: 0.5;
}

.content:hover ~ .cursor2 {
  opacity: 0;
}

.dimand_box_bg {
  background-image: url(../images/diamond.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 550px;
  height: 610px;
  transition: background-image 0.5s ease-in-out;
  padding-top: 52px;
  margin-top: 10px;
}
.dimand_box_bg:hover {
  background-image: url(../images/diamondhover.png);
}

#section-feature ul {
  padding: 0;
  list-style: none;
  position: relative;
  padding-top: 0px;
  width: 100%;
  display: inline-block;
  margin: 0 auto;
}

#section-feature li {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  height: 240px;
  margin: 1%;
  float: left;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 240px;
}

#section-feature .sf-wrap {
  background-repeat: no-repeat;
  position: absolute;
  max-width: 280px;
  width: 100%;
  height: 100%;
  left: 0;
  margin-left: 0;
  top: 0;
  -moz-perspective: 600px;
  -webkit-perspective: 600px;
  -ms-perspective: 600px;
  -o-perspective: 600px;
  perspective: 600px;
  cursor: pointer;
  border: 5px solid #e0ad39;
  border-radius: 30px;
}
#section-feature .active {
  border: 5px solid #333333;
}

.sf-mdl-left,
.sf-mdl-right,
.sf-mdl-left-full,
.sf-mdl-right-full {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
}

.sf-icon {
  position: absolute;
  top: 30px;
  text-align: center;
  width: 100%;
  left: 0;
  width: 200%;
  background: linear-gradient(
    357deg,
    #c30d0f 0%,
    #cd2d2e 40%,
    #e16d6e 75%,
    #eb8c8d 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #c30d0f;
}

.sf-mdl-left-full .sf-icon,
.sf-mdl-right-full .sf-icon {
  background: linear-gradient(
    357deg,
    #e0ad39 0%,
    #e5bb52 40%,
    #f0d683 75%,
    #f5e49b 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #e0ad39;
}

.sf-mdl-right,
.sf-mdl-right-full {
  left: auto;
  right: 0;
}

.sf-mdl-left-full,
.sf-mdl-right-full {
  background-color: #333;
  z-index: 9;
  color: #fff;
}

.sf-wrap a {
  color: #fff;
  text-decoration: none;
}

.sf-mdl-left,
.sf-mdl-right {
  background-color: #fff;
  z-index: 10;
}

.sf-wrap > .sf-mdl-right-full,
.sf-wrap > .sf-mdl-right {
  background-position: right -30px;
}

.sf-wrap > .sf-mdl-right,
.sf-wrap > .sf-mdl-left-full {
  -moz-backface-visibility: hidden;
  -moz-transform-style: preserve-3d;
  -moz-transform-origin: 0 0;
  -moz-transform: rotateY(0deg);

  -webkit-backface-visibility: hidden;
  -webkit-transform-style: preserve-3d;
  -webkit-transform-origin: 0 0;
  -webkit-transform: rotateY(0deg);

  -o-backface-visibility: hidden;
  -o-transform-style: preserve-3d;
  -o-transform-origin: 0 0;
  -o-transform: rotateY(0deg);

  backface-visibility: hidden;
  transform-style: preserve-3d;
  transform-origin: 0 0;
  transform: rotateY(0deg);
}

.sf-wrap.hover > .sf-mdl-right {
  -webkit-transform: rotateY(-45deg);
  -moz-transform: rotateY(-45deg);
  -ms-transform: rotateY(-45deg);
  -o-transform: rotateY(-45deg);
  transform: rotateY(-45deg);
  background-color: #ececec;
}

.sf-wrap > .sf-mdl-left-full {
  -moz-transform-origin: 100% 0;
  -webkit-transform-origin: 100% 0;
  -o-transform-origin: 100% 0;
  transform-origin: 100% 0;
  -moz-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  -o-transform: rotateY(180deg);
  transform: rotateY(180deg);
}

.sf-wrap.active > .sf-mdl-right,
.sf-wrap.hover.active > .sf-mdl-right {
  -moz-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  -o-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
}

.sf-wrap.active > .sf-mdl-left-full {
  -moz-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  -o-transform: rotateY(0deg);
  transform: rotateY(0deg);
}

.active .sf-mdl-left-full,
.active .sf-mdl-right-full {
  z-index: 11;
}

.sf-wrap div h3 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 21px;
}

.sf-wrap div h3,
.sf-wrap div p {
  width: 200%;
  position: absolute;
  text-align: center;
  left: 0;
  top: 140px;
}

.sf-wrap.active:hover p a {
  color: red;
  transition: color 0.3s ease;
}
.sf-wrap div p {
  padding: 0 10%;
  line-height: 18px;
  font-size: 22px;
  top: 187px;
  color: #fff;
}

.sf-wrap div.sf-mdl-right h3,
.sf-wrap div.sf-mdl-right-full h3,
.sf-wrap div.sf-mdl-right p,
.sf-wrap div.sf-mdl-right-full p,
.sf-mdl-right .sf-icon,
.sf-mdl-right-full .sf-icon {
  left: auto;
  right: 0;
}

.sf-wrap div.sf-mdl-left-full h3,
.sf-wrap div.sf-mdl-right-full h3 {
  top: 115px;
}
.sf-mdl-left {
  border-top-left-radius: 26px;
  border-bottom-left-radius: 26px;
}
.sf-mdl-right {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}
.sf-mdl-left-full {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.sf-mdl-right-full {
  border-top-right-radius: 22px;
  border-bottom-right-radius: 22px;
}

.opacity_point_5 {
  opacity: 0.5;
}

.footer_xs_bg {
  background-color: #f7f7f7;
  color: #212529;
  height: auto;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  border: solid 1px #8d8c96;
  box-shadow: 0 -5px 10px rgba(0, 0, 0, 0.3);
  padding: 10px 0px;
  font-family: "Poppins", serif;
  font-size: 13px;
  font-weight: 400;
  margin-top: 10px;
}
.footer_xs_bg .border-end {
  border-right: 1px solid #8d8c96 !important;
}
.footer_xs_bg .border-top {
  border-top: 1px solid #8d8c96 !important;
}
.footer_xs_bg a {
  color: inherit;
}

.comingSoon {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: #f8f9fa;
  padding: 25px;
}
.comingSoon .logo {
  height: 200px;
}

.comingSoon .button-container {
  margin-top: 30px;
}
.about-bg-1 {
  background-image: url(../images/about-bg-1.png);
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: 427px 292px;
  height: auto;
}

.cut_about {
  background-image: url(../images/about-bg-2.png);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  height: auto;
  padding-left: 145px;
}

.aboutSameheight-row {
  display: flex; /* Ensure flexbox is applied */
  align-items: stretch; /* Synchronize heights */
  justify-content: center; /* Center align content */
}

.aboutSameheight-image-container img {
  width: 100%;
  height: 100%; /* Image height will match content height */
  object-fit: cover; /* Maintain image proportions */
}

.aboutSameheight-content {
  display: flex;
  flex-direction: column; /* Stack content vertically */
}

.aboutSameheight-content .aboutSameheight-border {
  padding: 10px;
  border: 1px solid #ddd;
  border-bottom: none; /* Remove border between boxes */
  flex-grow: 1; /* Make all content boxes equal height */
}

.aboutSameheight-content .aboutSameheight-border:last-child {
  border-bottom: 1px solid #ddd; /* Add border to the last box */
}

/* Mission, Vision & Values */

.mvv-tab2 {
  left: -51px;
  top: -102px;
}
.mvv-tab3 {
  left: -4px;
  top: -207px;
}

.mvv-icon-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0px 0;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.3s;
}
.mvv-icon-container:hover {
  opacity: 1;
}
.mvv-icon-container img {
  max-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, opacity 0.3s;
}

.mvv-icon-container .mvv-icon-text {
  position: absolute;
  transform: translateX(-50%);
  font-size: 26px;
}
.mvv-icon-text {
  top: 35%;
  left: 46%;
}
.mvv-tab2 .mvv-icon-text {
  top: 35%;
  left: 47%;
}
.mvv-tab3 .mvv-icon-text {
  left: 51%;
  top: 39%;
}
.mvv-content {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.mvv-content.active {
  display: block;
  opacity: 1;
}

.mvv-zoom-out {
  transform: scale(0.8);
  opacity: 0.5;
}

.mvv-zoom-in {
  transform: scale(0.9);
  opacity: 1;
}
#mvv-mission-icon.mvv-zoom-in .mvv-icon-text,
#mvv-mission-icon:hover .mvv-icon-text {
  color: #c80000;
}
#mvv-vision-icon.mvv-zoom-in .mvv-icon-text,
#mvv-vision-icon:hover .mvv-icon-text {
  color: #481f07;
}
#mvv-values-icon.mvv-zoom-in .mvv-icon-text,
#mvv-values-icon:hover .mvv-icon-text {
  color: #ecab34;
}
.mvv-icon-container.mvv-zoom-in img {
  filter: drop-shadow(3px 3px 8px rgba(0, 0, 0, 0.5));
}
.mvv-lg-height {
  height: 470px;
}

.flower-container {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 0 auto;
  margin-top: 50px;
}

.flower-container .flower-image {
  position: absolute;
  width: auto;
  height: 140px;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
  filter: drop-shadow(2px 2px 2px rgba(0, 0, 0, 0.5));
}
.flower-container .flower-image:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.flower-container .center-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  font-weight: bold;
}

.flower-dynamic-content {
  margin-top: 100px;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 30px;
}

.flower-container .image-1 {
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
.flower-container .image-2 {
  top: 44%;
  left: 0;
  transform: translate(-50%, -50%);
}
.flower-container .image-3 {
  top: 44%;
  left: 100%;
  transform: translate(-50%, -50%);
}
.flower-container .image-4 {
  top: 100%;
  left: 19%;
  transform: translate(-50%, -50%);
}
.flower-container .image-5 {
  top: 100%;
  left: 79%;
  transform: translate(-50%, -50%);
}

/* Fix for tab content in Vision */
.mvv-content.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.flower-dynamic-heading {
  font-weight: 600;
  font-size: 24px;
  color: #212529;
  display: block;
  margin-bottom: 15px;
  text-align: center;
}
.flower-dynamic-content {
  font-size: 18px;
  color: #8d8c96;
  text-align: justify;
}
.text-alignJustify {
  text-align: justify;
}
.cutcirclebox {
  width: 965px;
  height: 459px;
  margin: 0 auto;
}
.cutcircleboxBase {
  position: relative;
}
.cutcirclerowOne {
  position: absolute;
  top: 45px;
  right: 0;
  width: 100%;
}
.cutcircleHeading {
  font-size: 20px;
}
.cutcircletext {
  font-size: 18px;
  color: #212429;
}
.cutcirclerowTwo {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.cutcirclerowThree {
  position: absolute;
  bottom: 70px;
  right: 0;
  width: 100%;
}
/* Parent class to avoid conflicts with other styles */
.pieSlice {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.pieSlice p {
  font-size: 18px;
}
.pieSlice_edit_text {
  position: absolute;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  font-size: 18px;
  line-height: 24px;
  color: #fff;
}

.pieSlice_edit_text1 {
  top: 54%;
  left: 63%;
}
.pieSlice_edit_text2 {
  top: 54%;
  left: 36%;
}

.pieSlice_edit_text3 {
  top: 34%;
  left: 62%;
}
.pieSlice_edit_text4 {
  top: 34%;
  left: 41%;
}

/* Circle with 4 parts (slices) */
.pieSlice .circle {
  width: 390px;
  height: 390px;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pieSlice .slice {
  position: absolute;
  width: 50%;
  height: 50%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.pieSlice .slice img {
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}

.pieSlice .slice-1:hover,
.pieSlice .slice-1.active {
  transform: scale(1.09) translate(-4px, -4px);
  filter: drop-shadow(-3px -4px 6px rgba(177, 60, 32, 0.6));
}

.pieSlice .slice-2:hover,
.pieSlice .slice-2.active {
  transform: scale(1.09) translate(4px, -4px);
  filter: drop-shadow(3px -3px 6px rgba(0, 0, 0, 0.4));
}

.pieSlice .slice-3:hover,
.pieSlice .slice-3.active {
  transform: scale(1.09) translate(-4px, 4px);
  filter: drop-shadow(-4px 5px 6px rgba(226, 154, 14, 0.7));
}

.pieSlice .slice-4:hover,
.pieSlice .slice-4.active {
  transform: scale(1.09) translate(4px, 4px);
  filter: drop-shadow(4px 4px 4px rgba(223, 0, 0, 0.5));
}

/* Hover effect for all slices */
/*.pieSlice .slice .image-1:hover,
    .pieSlice .slice .pieSlice_edit_text:hover,
    .pieSlice .active .image-1 {
      transform: scale(1.09) translate(-4px, -4px);
      filter: drop-shadow(-1px -2px 4px rgba(177, 60, 32, 0.6));
    }*/
/*.pieSlice .slice .image-2:hover,
    .pieSlice .active .image-2 {
      transform: scale(1.09) translate(4px, -4px);
      filter:drop-shadow(1px -1px 4px rgba(0, 0, 0, 0.4));
    }*/
/*.pieSlice .slice .image-3:hover,
    .pieSlice .active .image-3 {
      transform: scale(1.09) translate(-4px, 4px);
      filter: drop-shadow(-2px 3px 4px rgba(226, 154, 14, 0.7));
    }*/
/*.pieSlice .slice .image-4:hover,
    .pieSlice .active .image-4 {
      transform: scale(1.09) translate(4px, 4px);
      filter:drop-shadow(2px 2px 2px rgba(223, 0, 0, 0.5));
    }*/

.pieSlice .content {
  display: none;
}
.pieSlice .active-tab {
  display: block;
}
.pieSlice h4 {
  margin-bottom: 15px;
}

.bg-contribution {
  background-image: url(../images/donate-bg-1.png),
    url(../images/donate-bg-2.png);
  background-position: 2% 70%, 95% 25%;
  background-repeat: no-repeat, no-repeat;
  background-size: 120px, 100px, auto;
  height: auto;
  background-attachment: fixed;
}

.bg-pieCard {
  background-image: url(../images/bg-art-2.png), url(../images/bg-art-1.png);
  background-position: 2% 70%, 95% 25%;
  background-repeat: no-repeat, no-repeat;
  background-size: 120px, 100px, auto;
  height: auto;
  background-attachment: fixed;
}
/* Parent class to avoid conflicts */
.pieCard .card {
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease-out;
  background-color: transparent;
}
.pieCard .card:hover {
  border-radius: 15px;
  box-shadow: 10px 10px #e1e1e1;
}
.pieCard .card-header {
  font-size: 20px;
  font-weight: 500;
  padding-top: 1.3rem;
  padding-bottom: 1.3rem;
}

/* Card 1 */
.pieCard .card-header.card-1 {
  background-color: #8d8c96; /* Grey */
  color: white;
}

.pieCard .card-body.card-1 {
  background-color: #ede8e8;
  color: #212429;
}

.pieCard .card-body.card-1 .hover-fill {
  background: linear-gradient(to top, #6e6d78, #8d8c96); /* Grey to Grey */
}

/* Card 2 */
.pieCard .card-header.card-2 {
  background-color: #b13c20; /* brown light */
  color: white;
}

.pieCard .card-body.card-2 {
  background-color: #faebe9; /* Light brown light */
  color: #333;
}

.pieCard .card-body.card-2 .hover-fill {
  background: linear-gradient(
    to top,
    #a5381e,
    #bf4122
  ); /* Light brown to Light brown */
}

/* Card 3 */
.pieCard .card-header.card-3 {
  background-color: #e0ad39; /* yellow */
  color: white;
}

.pieCard .card-body.card-3 {
  background-color: #fef7eb; /* Light yellow */
  color: #333;
}

.pieCard .card-body.card-3 .hover-fill {
  background: linear-gradient(to top, #c3901e, #dca423); /* Light to Light */
}

.pieCard .card-body {
  position: relative;
  padding: 1.4rem 1.2rem;
  text-align: center;
  height: 100%;
  font-size: 17px;
}

.pieCard .card-body p {
  transition: opacity 0.5s ease;
}

.pieCard .card-body .hover-fill {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.pieCard .card-body .button {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  background-color: transparent;
  color: white;
  font-size: 24px;
  padding: 12px 24px;
  transition: opacity 0.5s ease;
  z-index: 2;
  width: 100%;
}

.pieCard .card:hover .card-body .hover-fill {
  transform: translateY(0);
}

.pieCard .card:hover .card-body p {
  opacity: 0;
}

.pieCard .card:hover .card-body .button {
  opacity: 1;
}

/* Disable hover and focus effects */
.pieCard .button:focus,
.pieCard .button:hover {
  background-color: transparent;
  color: white; /* Text color remains white */
  box-shadow: none;
}

/* Remove active button border or shadow */
.pieCard .button:active {
  background-color: transparent;
  color: white;
  box-shadow: none;
  border: 0;
  outline: none; /* Removes the outline as well */
}

/* Make the card clickable */
.pieCard a {
  text-decoration: none;
  color: inherit;
}

.lrcFaq .accordion {
  font-size: 18px;
}
/* Add custom styles under the 'lrcFaq' class to avoid conflicts */
.lrcFaq .accordion-button::after {
  content: none; /* Removes the default chevron */
}

.lrcFaq .rotate {
  transform: rotate(180deg); /* Rotates the arrow */
  transition: transform 0.3s ease; /* Smooth transition */
}

.lrcFaq .accordion-item {
  border: 0px solid rgba(0, 0, 0, 0.125);
  margin-bottom: 35px;
}

.lrcFaq .accordion-header {
  border-bottom: solid 1px #eee;
}
.lrcFaq .accordion-button {
  font-size: 20px;
}
.question {
  background-color: grey;
  padding: 6px 60px 5px 60px;
  color: #fff;
  border-top-right-radius: 10px;
  border-top-left-radius: 10px;
  margin-right: 10px;
  min-width: 170px;
  text-align: center;
  transition: background-color 0.3s ease-in-out;
}
.lrcFaq .accordion-button:not(.collapsed) .question {
  background-color: #e0ad39;
}
.lrcFaq .accordion-button {
  padding-bottom: 0px;
  padding-left: 0px;
}
.lrcFaq .accordion-button:not(.collapsed) {
  color: initial;
  background-color: #ffffff;
  box-shadow: none;
}
.lrcFaq .accordion-button:not(.collapsed) i {
  color: initial;
}
.lrcFaq .accordion-button:focus {
  box-shadow: none;
}
.lrcFaq .accordion-button:hover .question {
  background-color: #e0ad39;
}

.bg-Faq {
  background-image: url(../images/donate-bg-1.png),
    url(../images/donate-bg-2.png);
  background-position: 1% 50%, 99% 28%;
  background-repeat: no-repeat, no-repeat;
  background-size: 120px, 120px, auto;
  height: auto;
  background-attachment: fixed;
}

.faQbtns .click-btn {
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  margin: 0px;
  line-height: 55px;
  border: 1px solid;
  border-radius: 10px;
  text-align: center;
  font-size: 22px;
  color: #000;
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
  box-shadow: 0 6px 8px 0 rgba(0, 0, 0, 0.24), 0 8px 25px 0 rgba(0, 0, 0, 0.19);
}

/* First Button (Brown) */
.faQbtns .btn-style906 {
  background: #b13c20;
  border-color: #b13c20;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faQbtns .btn-style906::before {
  width: 0;
  height: 4.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #8b2d1f;
  transition: all 0.35s;
  content: "";
  z-index: 2;
}

.faQbtns .btn-style906::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #9f2a1d;
  transform: translate(0, -100%);
  transition: all 0.35s;
  content: attr(data-hover);
  z-index: 1;
}

.faQbtns .btn-style906:hover::before {
  width: 100%;
}

.faQbtns .btn-style906:hover::after {
  transform: translate(0, 0);
}

/* Second Button (Yellow) */
.faQbtns .btn-style907 {
  background: #e0ad39;
  border-color: #e0ad39;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faQbtns .btn-style907::before {
  width: 0;
  height: 4.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #b18226;
  transition: all 0.35s;
  content: "";
  z-index: 2;
}

.faQbtns .btn-style907::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #d78a2f;
  transform: translate(0, -100%);
  transition: all 0.35s;
  content: attr(data-hover);
  z-index: 1;
}

.faQbtns .btn-style907:hover::before {
  width: 100%;
}

.faQbtns .btn-style907:hover::after {
  transform: translate(0, 0);
}

/* Third Button (Grey) */
.faQbtns .btn-style908 {
  background: #8d8c96;
  border-color: #8d8c96;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faQbtns .btn-style908::before {
  width: 0;
  height: 4.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #6a6a73;
  transition: all 0.35s;
  content: "";
  z-index: 2;
}

.faQbtns .btn-style908::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #78787f;
  transform: translate(0, -100%);
  transition: all 0.35s;
  content: attr(data-hover);
  z-index: 1;
}

.faQbtns .btn-style908:hover::before {
  width: 100%;
}

.faQbtns .btn-style908:hover::after {
  transform: translate(0, 0);
}

/* Fourth Button (Red) */
.faQbtns .btn-style909 {
  background: #c80000; /* Red background */
  border-color: #c80000;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.faQbtns .btn-style909::before {
  width: 0;
  height: 4.5px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #9e0000;
  transition: all 0.35s;
  content: "";
  z-index: 2;
}

.faQbtns .btn-style909::after {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 10px;
  background-color: #d70000;
  transform: translate(0, -100%);
  transition: all 0.35s;
  content: attr(data-hover);
  z-index: 1;
}

.faQbtns .btn-style909:hover::before {
  width: 100%;
}

.faQbtns .btn-style909:hover::after {
  transform: translate(0, 0);
}

/* Container to center the content */
.circle-container {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Align items horizontally */
  gap: 20px; /* Add space between circle and text */
  margin-bottom: 20px;
}

.circle-container:hover .circle .hover-image {
  opacity: 1;
  animation: shake 1s infinite; /* Updated shake animation */
}

.circle-container .circle {
  position: relative;
  width: 123px;
  height: 123px;
  border-radius: 50%;
  background-color: white;
  border: 5px solid #8d8c96;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background-color 0.5s ease-in-out;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.circle-container:hover .circle {
  background-color: #8d8c96;
  box-shadow: rgba(141, 140, 150, 0.85) 0px 5px 15px;
}

/* Hover effect for the circle */
.circle-container .circle:hover {
  background-color: #8d8c96;
}

.circle-container .circle-icon {
  width: 100%;
  height: 100%;
  transition: opacity 0.5s ease-in-out;
  background-size: 70px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Default image */
.circle-container .circle .default-image {
  opacity: 1;
}

/* Hover image */
.circle-container .circle .hover-image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  background-size: 70px;
  background-position: center;
  background-repeat: no-repeat;
}

/* Keyframes for shake animation */
@keyframes shake {
  0% {
    transform: translate(0, 0); /* Initial position */
  }
  25% {
    transform: translate(2px, -2px); /* Right and Up */
  }
  50% {
    transform: translate(-2px, 2px); /* Left and Down */
  }
  75% {
    transform: translate(2px, 2px); /* Right and Down */
  }
  100% {
    transform: translate(-2px, -2px); /* Left and Up */
  }
}

/* Content section styling */
.circle-container .content {
  flex: 1; /* Take available space */
  color: #8d8c96;
}

.circle-container .heading {
  font-size: 1.7rem;
  font-weight: bold;
}

.circle-container .paragraph {
  font-size: 18px;
  color: #212529;
}

/* Custom styles for red and orange variations */
.circle-container.red .circle {
  border-color: #c80000;
}
.circle-container.red:hover .circle {
  background-color: #c80000;
  box-shadow: rgba(200, 0, 0, 0.85) 0px 5px 15px;
}

.circle-container.red .circle:hover {
  background-color: #c80000;
}

.circle-container.orange .circle {
  border-color: #e0ad39;
}
.circle-container.orange:hover .circle {
  background-color: #e0ad39;
  box-shadow: rgba(224, 173, 57, 0.85) 0px 5px 15px;
}

.circle-container.orange .circle:hover {
  background-color: #e0ad39;
}

.circle-container.red .content {
  color: #c80000;
}

.circle-container.orange .content {
  color: #e0ad39;
}
.boxCurve {
  width: 500px;
  height: 100px;
  border: solid 2px #c8cdd6;
  border-color: #c8cdd6 transparent transparent transparent;
  border-radius: 50% / 100px 100px 0 0;
  transform: rotate(88deg);
  position: absolute;
  top: 133px;
  left: -216px;
  z-index: -1;
}

/* Flip container */
.trapezoid-container {
  perspective: 1000px;
  width: 95%;
  display: block; /* Full clickable */
  text-decoration: none;
  color: inherit;
  filter: drop-shadow(2px 4px 6px rgba(0, 0, 0, 0.35));
  clip-path: polygon(100% 90px, 100% calc(100% - 90px), 0 100%, 0 0);
}

/* Flip box */
.trapezoid {
  position: relative;
  width: 100%;
  aspect-ratio: 2/3;
  transform-style: preserve-3d;
  transition: transform 0.6s ease-in-out;
}

/* Front & Back faces */
.trapezoid-container .front,
.trapezoid-container .back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  box-sizing: border-box;
  backface-visibility: hidden;
  clip-path: polygon(
    100% 50px,
    100% calc(100% - 50px),
    0 100%,
    0 0
  ); /* Trapezoid Shape */
}

/* Front side */
.trapezoid-container .front {
  background: linear-gradient(to top, #b70101, #ed5252);
  color: white;
  padding: 20px 30px;
}
.trapezoid-container .front h3 {
  font-size: 24px;
  margin-bottom: 15px;
}
.trapezoid-container .front p {
  font-size: 18px;
  margin-bottom: 0px;
}

/* Back side with trapezoid image */
.trapezoid-container .back {
  background: url("../images/flip.png") no-repeat center center;
  background-size: cover;
  transform: rotateY(180deg);
  position: relative;
}

/* Flip effect on hover */
.trapezoid-container:hover .trapezoid {
  transform: rotateY(180deg);
}

/* Button styling (EXACT CENTER) */
.trapezoid-container .back .btn {
  background-color: transparent;
  color: white;
  padding: 12px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 30px;
  border: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

/* Button hover effect */
.trapezoid-container .back .btn:hover {
  background-color: transparent;
}
.trapezoid-container.second .front {
  background: linear-gradient(to top, #bf8e1c, #fbc955);
}
.trapezoid-container.second .back {
  background: url("../images/flip2.png") no-repeat center center;
  background-size: cover;
  transform: rotateY(180deg);
}
.trapezoid-container.third .front {
  background: linear-gradient(to top, #0b0b0b, #7b7a84);
}
.trapezoid-container.third .back {
  background: url("../images/flip3.png") no-repeat center center;
  background-size: cover;
  transform: rotateY(180deg);
}

.zeena_text {
  left: 50%;
  top: 50%;
  transform: translate(-50%, 0%);
  width: 100%;
  font-size: 24px;
}
.zeena_img {
  animation: zeenaMove 5s ease-in-out infinite;
}

@keyframes zeenaMove {
  0% {
    transform: translateY(0); /* Start at original position */
  }
  50% {
    transform: translateY(-10px); /* Move image up */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}

.mt-zeena-2 {
  margin-top: 50px;
}
.mt-zeena-1 {
  margin-top: 100px;
}

.text_justifyNdcenter {
  text-align: justify;
  text-align-last: justify;
  width: 100%;
  margin: 0 auto;
}
.text-justify {
  text-align: justify;
}

/* Hexagon shape CSS */
.hexagon {
  width: 190px;
  height: 200px;
  background-color: #488e01;
  position: relative;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  overflow: hidden; /* Ensure the gradient doesn't overflow the hexagon */
  transition: background 0.5s ease; /* Smooth transition for the background */
}
.hexagon::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #ff9800, #ff5722);
  transition: top 0.5s ease; /* Animate the gradient fill smoothly */
}
.hexagon:hover::before {
  top: 0%; /* Fill the hexagon from bottom to top */
}
.hexagon:hover {
  background: linear-gradient(to top, #ff9800, #ff5722); /* Gradient fill */
}

.hexagon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.hexagon-text {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: white;
  font-weight: bold;
  text-align: center;
  padding: 0 10px;
  transition: opacity 0.3s ease; /* Smooth fade-out of text */
}
.hexagon:hover .hexagon-text {
  opacity: 0; /* Fade out text on hover */
}

.hexagon .button {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 40px;
  background-color: transparent;
  color: white;
  border: none;
  border-radius: 18px;
  font-size: 20px;
  font-weight: normal;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hexagon:hover .button {
  display: block; /* Show button on hover */
  opacity: 1; /* Fade-in the button smoothly */
}

/* Remove margin between rows */
.no-gap {
  margin-bottom: 0 !important;
}

/* Reduce gap between columns */
.column-spacing {
  padding-left: 20px;
  padding-right: 20px;
}

.hexagonRowml {
  margin-left: 8.5rem;
}
.hexagonRowmr {
  margin-right: 53px;
}
.hexagonRowmt {
  margin-top: -30px;
}

.policycontent-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}
.policy-header {
  text-align: center;
  margin-bottom: 30px;
}
.policy-header h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.policy-section h2 {
  font-size: 24px;
}
.policy-section p {
  color: #6c757d;
  font-size: 20px;
  line-height: 35px;
}
.contact-section {
}
.contact-section h2 {
  font-size: 1.8rem;
}
.contact-section p {
  font-size: 1.1rem;
}
.policycontent-wrapper ul {
  list-style-type: disc;
  line-height: 30px;
  font-size: 18px;
}

/* Step 2: Add borders to each box */
.sbstair .box {
  width: 100%;
  height: 110px;
  border-width: 15px;
  border-style: solid;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  transition: all 0.3s ease;
  border-bottom: none;
  border-right: none;
  font-size: 22px;
  box-shadow: rgba(0, 0, 0, 0.24) -3px -3px 4px;
}

/* Vertical button styling */
.sbstair .vertical-button {
  text-align: center;
  font-size: 18px;
  background: linear-gradient(to bottom, #c70000, #ca3100);
  color: white;
  border: none;
  padding: 10px;
  height: 67px;
  width: 100%; /* Initially set width to 0% */
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.8s ease, width 0.8s ease, visibility 0s 0.3s;
  text-transform: uppercase;
  position: relative;
  top: -106px;
}

/* Step 3: When .sbRow is hovered */
.sbstair .sbRow:hover .vertical-button {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.8s ease, visibility 0s 0s;
}

/* Keyframe animation for smooth upward movement */
@keyframes moveUpBox2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-53px); /* Moves box 2 up by 20px */
  }
}

@keyframes moveUpBox3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-106px); /* Moves box 3 up by 40px */
  }
}

/* Keyframe animation for smooth return to original position */
@keyframes moveDownBox2 {
  0% {
    transform: translateY(-53px); /* Box 2 moved up by 20px */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}

@keyframes moveDownBox3 {
  0% {
    transform: translateY(-106px); /* Box 3 moved up by 40px */
  }
  100% {
    transform: translateY(0); /* Return to original position */
  }
}

/* Apply animations when hovering over .sbRow */
.sbstair .sbRow:hover #box1 {
  /* No change to Box 1 */
}

.sbstair .sbRow:hover #box2 {
  animation: moveUpBox2 0.5s ease-in-out forwards; /* Move Box 2 smoothly */
}

.sbstair .sbRow:hover #box3 {
  animation: moveUpBox3 0.5s ease-in-out forwards; /* Move Box 3 smoothly */
}

/* Apply reverse animations when hover is removed */
.sbstair .sbRow:not(:hover) #box2 {
  animation: moveDownBox2 0.5s ease-in-out forwards; /* Return Box 2 smoothly */
}

.sbstair .sbRow:not(:hover) #box3 {
  animation: moveDownBox3 0.5s ease-in-out forwards; /* Return Box 3 smoothly */
}

/* Add some padding to move the boxes down initially */
.pt-100 {
  padding-top: 100px;
}

/* Triangle CSS */
.sbstair .triangle {
  width: 40px;
  aspect-ratio: 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  float: right;
  margin-bottom: 12px;
  box-shadow: rgba(0, 0, 0, 0.24) 3px 3px 4px;
}
.sbstair .sbRow .col-md-3 {
  padding-left: 6px;
  padding-right: 6px;
}

.sbstair .box {
  border-image: linear-gradient(to right, #b13d20, #bf6714) 1;
}
.sbstair .triangle {
  background: linear-gradient(45deg, #b13d20, #bf6714);
}

.sbstair #box2 .box {
  border-image: linear-gradient(to right, #e0ae38, #dabf3a) 1;
}
.sbstair #box2 .triangle {
  background: linear-gradient(45deg, #e0ae38, #dabf3a);
}

.sbstair #box3 .box {
  border-image: linear-gradient(to right, #8d8c97, #8c9ab4) 1;
}

.sbstair #box3 .triangle {
  background: linear-gradient(45deg, #8d8c97, #8c9ab4);
}

.bg-privacy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/donate-bg-1.png),
    url(../images/donate-bg-2.png);
  background-position: calc(50% - 600px) 70%, calc(50% + 600px) 50%;
  background-repeat: no-repeat;
  background-size: 120px, 120px;
  background-attachment: fixed;
  opacity: 0.5; /* Sirf background images fade hongi */
  z-index: -1; /* Taake content ke neeche rahe */
}

.bg-wrap {
  position: relative;
  overflow: hidden; /* Ensure background remains within section */
}

.bg-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 500vh;
  background-image: url(../images/donate-bg-1.png),
    url(../images/donate-bg-2.png);
  background-position: 91% 40%, 10% 33%;
  background-repeat: no-repeat, no-repeat;
  background-size: 120px, 120px;
  opacity: 0.4;
  z-index: -1;
  transition: transform 0.3s ease-out;
  background-attachment: fixed, fixed;
}

.vertical-button-xs {
  text-align: center;
  font-size: 18px;
  background: linear-gradient(to bottom, #c70000, #ca3100);
  color: white;
  border: none;
  padding: 10px;
  height: 55px;
  width: 100%;
  transition: opacity 0.8s ease, width 0.8s ease, visibility 0s 0.3s;
  text-transform: uppercase;
  margin-top: 25px;
}

.don_end.list-unstyled {
  padding-left: 0;
  font-size: 20px;
  margin-bottom: 45px;
}

.don_end .list-item {
  position: relative;
  padding-left: 65px;
  margin-bottom: 35px;
  display: flex;
  line-height: normal;
  color: #8d8c96;
  align-items: center;
}

.don_end .icon {
  position: absolute;
  left: 0;
  transform: translateY(0);
  width: 35px;
  height: 36px;
  background-image: url(../images/icon-LRC.png);
  background-size: contain;
  background-repeat: no-repeat;
}

.glow-on-hover {
  width: auto;
  height: 54px;
  outline: none;
  color: #c80000;
  background: white;
  cursor: pointer;
  position: relative;
  z-index: 0;
  border-radius: 10px;
  padding: 0 20px;
  border: 1px solid #c8cdd6;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.glow-on-hover:before {
  content: "";
  background: linear-gradient(
    45deg,
    #c80000,
    #b13c20,
    #e0ad39,
    #8d8c96,
    #b13c20,
    #c80000,
    #b13c20,
    #e0ad39,
    #411a16
  );
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  border-radius: 10px;
}

.glow-on-hover:active {
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.glow-on-hover:active:after {
  background: transparent;
}

.glow-on-hover:hover:before {
  opacity: 1;
}

.glow-on-hover:after {
  z-index: -1;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: white;
  left: 0;
  top: 0;
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-position: 0 0;
  }
  50% {
    background-position: 400% 0;
  }
  100% {
    background-position: 0 0;
  }
}

.lrc-last-donate .carousel-item {
  height: 400px; /* Full viewport height */
  background-size: cover;
  background-position: center;
  transition: opacity 1s ease-in-out !important;
}

.lrc-last-donate .carousel-item img {
}

.lrc-last-donate .carousel-caption {
  position: absolute;
  top: 58%;
  left: 49%;
  transform: translate(-50%, -50%);
  transition: opacity 1s ease-in-out;
}
.lrc-last-donate .carousel-caption-logo-image {
  top: 54%;
}

.lrc-last-donate .carousel-bg {
  background-image: url(../images/HutframeLRC.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.lrc-last-donate .carousel-bg-middle {
}

.lrc-last-donate .carousel-bg-last {
  background-image: url(../images/HutframeLRC-last.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.stretch-btn {
  color: #fff;
  cursor: pointer;
  font-size: 19px;
  font-weight: 400;
  line-height: 49px;
  max-width: 692px;
  position: relative;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  transition-property: all;
  transition-duration: 0.6s;
  transition-timing-function: ease;
  letter-spacing: 0;
  background-color: transparent;
  border: 0;
}
.stretch-btn:hover,
.stretch-btn:active {
  letter-spacing: 5px;
}
.stretch-btn:after,
.stretch-btn:before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border: 1px solid rgba(255, 255, 255, 0);
  bottom: 0px;
  content: " ";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: all 280ms ease-in-out;
  width: 0;
}
.stretch-btn:hover:after,
.stretch-btn:hover:before {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  border-color: #fff;
  transition: width 350ms ease-in-out;
  width: 97%;
}
.stretch-btn:hover:before {
  bottom: auto;
  top: 0;
  width: 97%;
}
.bg-donate-rmz {
  background-color: #f9fafb;
}
.donate-modal .modal-content {
  border-radius: 20px;
}
.letter-space-2 {
  letter-spacing: 2px;
}

.digit_counter {
  min-width: 72px;
  margin-right: 5px;
  color: #212429;
}
.stretch-btn-bg {
  margin-top: 155px;
  background-color: #f54242;
}
.don_end_title {
  font-size: 28px;
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  20% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(1);
  }
  60% {
    transform: scale(1.1);
  }
  80% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}

.heartbeat {
  display: inline-flex;
  animation: heartbeat 3s infinite ease-in-out;
}

.man_item {
  position: relative;
  display: inline-block;
  width: auto;
  overflow: hidden;
}

.man_descr {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0) rotate(90deg);
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  text-align: center;
  padding-top: 20px;
  transition: opacity 0.3s ease, transform 0.3s ease, rotate 0.3s ease;
}
.man_descr_small {
  font-size: 100%;
}
.man_descr_med {
  font-size: 20px;
}
.man_descr_lg {
  font-size: 24px;
}
.man_item:hover .man_descr {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.lightbox-modal-cld {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.3s ease-in-out;
}

.lightbox-image-cld {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  width: auto !important;
  height: auto !important;
  transition: transform 0.3s ease-in-out;
}
.lightbox-image-cld:hover {
  transform: none !important;
}

.close-btn-cld {
  position: absolute;
  top: 10px;
  right: 25px;
  color: white;
  font-size: 30px;
  font-weight: bold;
  cursor: pointer;
  background-color: #b13c20;
  border: none;
  padding: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.close-btn-cld:hover {
  background-color: #e0ad39;
}

/* Container for image */
.Slickimage-container {
  position: relative;
  width: 100%; /* You can adjust the size as needed */
  height: auto;
  overflow: hidden;
  border-radius: 8px;
}

/* Image styling */
.Slickimage-container .image {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: transform 0.5s ease-in-out;
  border-radius: 8px;
}

/* Overlay style */
.Slickimage-container .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.3));
  /*background: linear-gradient(to top, rgba(200, 0, 0, 0.7), rgba(224, 173, 57, 0.2));*/
  opacity: 0;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px); /* Initial position for animation */
}

/* Title styling */
.Slickimage-container .title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
}
.Slickimage-container .link {
  background-color: #c80000;
  width: 48px;
  height: 48px;
  border-radius: 100px;
  color: #fff;
  line-height: 48px;
  font-size: 20px;
}
.Slickimage-container .link:hover {
  background-color: #ffa800;
}
/* Paragraph styling */
.Slickimage-container .description {
  font-size: 14px;
  text-shadow: 1px 1px 2px #000;
}

/* Hover effect */
.Slickimage-container:hover .image {
  transform: scale(1.1); /* Slight zoom effect on image hover */
}

.Slickimage-container:hover .overlay {
  opacity: 1;
  transform: translateY(0); /* Smooth reveal of overlay */
}

.lrc_slick_slides .slick-prev:before,
.lrc_slick_slides .slick-next:before {
  color: red;
}
.lrc_slick_slides .slick-slide {
  margin: 0 10px; /* Adjust the value (10px) to your preference */
}
.lrc_slick_slides .slick-prev:before,
.lrc_slick_slides .slick-next:before {
  font-size: 24px;
}

/*19 march 2025*/

.masonry-gallery-item {
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}

.masonry-gallery-item img {
  width: 100%;
  transition: all 0.3s ease-in-out;
}

.masonry-gallery-item:hover img {
  transform: scale(1.03);
}

.masonry-gallery-item .title {
  position: absolute;
  bottom: 10px;
  left: 10px;
  color: #fff;
  font-size: 16px;
  background: rgba(0, 0, 0, 0.5);
  padding: 5px;
  display: none;
}

.masonry-gallery-item:hover .title {
  display: block;
}
.masonryLightBox .tab-content {
  transition: all 0.5s ease-in-out;
}
.masonry-tabs .nav-tabs .nav-item .nav-link {
  border: none;
  transition: background-color 0.3s, color 0.3s;
  color: #6c757d;
  font-size: 15px;
}
.masonry-tabs .nav-tabs .nav-item .nav-link.active {
  background-color: #c80000;
  color: white;
  border-radius: 6px;
}
.masonry-tabs .nav-tabs .nav-link:focus,
.masonry-tabs .nav-tabs .nav-link:hover {
  color: #c80000;
}

.doantion_matching {
  background-color: #eeeeed;
}
.every {
  background-color: #b6a96d;
  transition: all 0.3s ease-in-out;
}
.Benevity {
  background-color: #cabea0;
  transition: all 0.3s ease-in-out;
}
.Double_the_Donation {
  background-color: #f7bb38;
  transition: all 0.3s ease-in-out;
}
.every h6,
.Benevity h6,
.Double_the_Donation h6 {
  transition: color 0.5s ease, text-shadow 0.5s ease;
}
.every:hover h6,
.Benevity:hover h6,
.Double_the_Donation:hover h6 {
  color: #fff;
  text-shadow: 1px 1px 4px #000;
}
.every img,
.Benevity img,
.Double_the_Donation img {
  transition: all 0.3s ease-in-out;
}
.every:hover img,
.Benevity:hover img,
.Double_the_Donation:hover img {
  transform: scale(1.03);
}
/*19 march 2025*/
.bg-light-custom {
    background-color: #f8f9fa;
}
.vertical-text-side {
    text-align: center;
    padding: 6px 6px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    width: 110px;
    display: inline-block;
}

    .vertical-text-side.one-time {
        background-color: #b13c20;
    }

        .vertical-text-side.one-time:hover {
            background-color: #9f2a1d;
            color: #fff;
        }

    .vertical-text-side.monthly {
        background-color: #e0ad39;
    }

        .vertical-text-side.monthly:hover {
            background-color: #e78623;
            color: #fff;
        }

    .vertical-text-side.annual {
        background-color: #8d8c96;
    }

        .vertical-text-side.annual:hover {
            background-color: #78787f;
            color: #fff;
        }

.offcanvas-body table {
    border-color: rgba(0, 0, 0, 0.185);
}

.offcanvasTable {
    border: 1px solid rgba(0, 0, 0, 0.185);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 15px;
}

.btlr {
    border-top-left-radius: 7px;
}

.bblr {
    border-bottom-left-radius: 7px;
}

.bblr {
    border-bottom-left-radius: 7px;
}

.btrr {
    border-bottom-right-radius: 7px;
}

.every-bg {
    background-color: #018669;
}

.benevity-bg {
    background: linear-gradient(45deg, #2f01ad 14.45%, #0095de 85.96%);
}

.doubledonation-bg {
    background-color: #7d7e82;
}

.every-bg-opt {
    background-color: rgb(240 255 252);
}
/*7 oct 25*/

.image-gold {
    height: 75px;
    position: absolute;
    right: 194px;
    top: 33px;
}

.shrinkNav.shrink .image-gold {
    top: 20px;
}


/*7 oct 25*/
/*8 oct 25*/
.sometime_Modal {
    padding: 2rem;
}

    .sometime_Modal .modal-body {
        background-color: #fef7eb;
    }

    .sometime_Modal .modal-header {
        background-color: #E0AD39;
        color: #fff;
    }

    .sometime_Modal .carousel-item img {
        width: 100%;
        height: 450px;
        object-fit: cover;
    }

    /* Darker Arrow Controls for Visibility */
    .sometime_Modal .carousel-control-prev-icon,
    .sometime_Modal .carousel-control-next-icon {
        background-color: rgba(0, 0, 0, 0.6);
        border-radius: 50%;
        padding: 18px;
        background-size: 60%;
        box-shadow: 0 0 8px rgba(0,0,0,0.7);
        transition: background-color 0.3s ease;
    }

        .sometime_Modal .carousel-control-prev-icon:hover,
        .sometime_Modal .carousel-control-next-icon:hover {
            background-color: rgba(0, 0, 0, 0.75);
        }


.carousel-caption {
    bottom: 20px;
}

.sometime_Modal .modal-title {
    text-align: center;
    width: 100%;
}

/*8 oct 25*/
/*17 aug 25*/
.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 30px 0 15px;
}

    .category-header h5 {
        font-weight: 600;
        margin: 0;
    }

    .category-header a {
        font-size: 0.9rem;
        color: #8d8c96;
        text-decoration: none;
        transition: all 0.4s ease;
    }

        .category-header a:hover {
            text-decoration: none;
            color: #212529;
        }


#yearTabs.nav-tabs .nav-link {
    color: rgba(0, 0, 0, .55);
    font-size: 18px;
    background: #f3f3f3;
    border: 1px solid #C8CDD6;
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.35);
    transition: all 0.4s ease;
}

    #yearTabs.nav-tabs .nav-item.show .nav-link,
    #yearTabs.nav-tabs .nav-link.active {
        color: #fff;
        background-color: #C80000;
        border-color: #C80000;
        box-shadow: 0px 2px 2px rgba(200, 0, 0, 0.35);
        outline: 0;
    }
/*20 aug 25*/

/*21 Nov 25*/


.Our-Relief-Efforts .image-hover-wrap {
    overflow: hidden;
}

    .Our-Relief-Efforts .image-hover-wrap img {
        transition: 0.4s ease;
    }

    .Our-Relief-Efforts .image-hover-wrap:hover img {
        filter: brightness(60%);
    }

.Our-Relief-Efforts .hover-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    opacity: 0;
    transition: 0.4s ease;
}

.Our-Relief-Efforts .image-hover-wrap:hover .hover-overlay {
    background: rgba(0, 0, 0, 0.45);
    opacity: 1;
}

.fw-semiBold {
    font-weight: 600;
}

.two-slide-slider .slick-prev:before, .two-slide-slider .slick-next:before {
    color: red;
}

.two-slide-slider .slick-slide {
    margin: 0 10px;
}

.two-slide-slider .slick-prev:before, .two-slide-slider .slick-next:before {
    font-size: 24px;
}


/*22 Nov 25*/