@keyframes slideIn {
  0% {
    opacity: 0;
    transform: translate(-50%, -60%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInSimple {
  0% {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes mob-badgePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(10px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
@keyframes mob-floatIcon {
  0%,
  to {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}
@keyframes shimmerBtn {
  0% {
    background-position: -200%center;
  }
  to {
    background-position: 200%center;
  }
}
@keyframes videoRingMob {
  0%,
  to {
    box-shadow: 0 8px 28px rgba(0, 157, 255, 0.3),
      0 0 0 0 rgba(0, 157, 255, 0.35);
  }
  50% {
    box-shadow: 0 8px 28px rgba(0, 157, 255, 0.15),
      0 0 0 8px rgba(0, 157, 255, 0.08);
  }
}
@keyframes badgeSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-18px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes iconBounce {
  0%,
  to {
    transform: scale(1);
  }
  50% {
    transform: scale(1.22);
  }
}
@keyframes donatePulse {
  0%,
  to {
    box-shadow: 0 4px 14px rgba(0, 157, 255, 0.45);
  }
  50% {
    box-shadow: 0 4px 28px rgba(0, 157, 255, 0.15);
  }
}
@keyframes badgeGlow {
  0%,
  to {
    border-color: #e8f0fe;
  }
  50% {
    border-color: #93c5fd;
  }
}
@keyframes shocking-shake {
  0%,
  to {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-5px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(5px);
  }
}
@keyframes shocking-flash {
  0%,
  to {
    background-color: rgba(255, 99, 71, 0.1);
  }
  50% {
    background-color: rgba(255, 0, 0, 0.3);
  }
}
@keyframes modalFadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@media (min-width: 768px) {
  .wwg {
    display: flex;
  }
}
.packages_container {
  position: relative;
  width: 150px;
  display: inline-block;
  cursor: pointer;
}
.cart-item1 {
  background-color: #fffef0 !important;
}
.packages_container img {
  width: 100%;
  height: 150px;
  display: block;
  border: 2px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.customize_checkbox {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 16px;
  height: 16px;
  margin: 0;
  cursor: pointer;
  z-index: 2;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.customize_checkbox::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.customize_checkbox::after {
  content: "✓";
  position: absolute;
  top: 42%;
  left: 42%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.customize_checkbox:checked::before {
  background-color: #2196f3;
  border-color: #2196f3;
}
.customize_checkbox:checked::after {
  opacity: 1;
}
.customize_checkbox:checked ~ label img {
  border-color: #2196f3;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.2);
}
.customized_packages .packages_container label,
.packages_container label {
  display: block;
  cursor: pointer;
}
.packages_container p {
  margin: 8px 0 0;
  text-align: center;
  font-size: 14px;
}
.dynamic-container {
  margin-top: 20px;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #fffaf3;
}
.d-none {
  display: none;
}
#animatedHeading {
  height: 410px !important;
}
.order-detail {
  box-shadow: 4px 4px 10px #c1dee6, -4px -4px 10px #c5c5c5,
    4px -4px 10px rgba(0, 0, 0, 0.2), -4px 4px 10px rgba(0, 0, 0, 0.2);
  background-color: #fffef0;
}
.side-bar {
  padding-left: 0 !important;
  padding-bottom: 1px;
}
.error-border {
  border: 2px solid red !important;
}
.error-message {
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
input[type="file"] {
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  width: 100%;
}
input[type="file"]::-webkit-file-upload-button {
  padding: 8px 16px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
}
input[type="file"]::-webkit-file-upload-button:hover {
  background: #e0e0e0;
}
.packages-row-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin: 15px 0 10px;
  padding-left: 5px;
  border-left: 3px solid #009dff;
}
.packages_row_1 {
  margin-bottom: 10px;
}
.packages_row_1,
.packages_row_2 {
  justify-content: flex-start;
}
.customized_packages::-webkit-scrollbar-thumb {
  background: #c1c1c1;
}
.customized_packages::-webkit-scrollbar-thumb:hover {
  background: #a1a1a1;
}
.package-details-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px solid #f4e6d1;
}
.package-details-title {
  margin: 0;
  color: #1f1e1e;
  font-size: 1.2rem;
  font-weight: 600;
}
.package-details-toggle {
  background-color: #f4e6d1;
  border: 1px solid #e0d0b8;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.package-details-toggle:hover {
  background-color: #e0d0b8;
}
.package-details-toggle svg {
  color: #1f1e1e;
}
#package-details-content {
  transition: max-height 0.3s ease, opacity 0.3s ease;
  overflow: hidden;
}
#package-details-content.collapsed {
  max-height: 0 !important;
  opacity: 0;
  padding: 0;
  margin: 0;
}
.package-fields {
  display: none;
  padding: 16px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.field-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}
.field-item {
  width: calc(33.33% - 16px);
  display: inline-block;
  flex-direction: column;
  box-sizing: border-box;
  margin-right: 1rem;
}
.field-container::after {
  content: "";
  width: calc(33.33% - 16px);
  visibility: hidden;
  flex-shrink: 0;
}
.field-item label {
  margin-bottom: 6px;
  font-weight: 700;
  font-size: 14px;
  color: #333;
}
.field-item input[type="text"] {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}
.field-item input[type="text"]:focus {
  border-color: #007bff;
  outline: 0;
  box-shadow: 0 0 4px rgba(0, 123, 255, 0.5);
}
@media (max-width: 768px) {
  .field-item {
    width: calc(50% - 16px);
  }
  .field-container {
    gap: 10px;
  }
  @media (max-width: 480px) {
    .field-item {
      width: 100%;
    }
  }
}
.package-what-you-get {
  padding: 16px;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
#dynamic-what-you-get-container {
  display: block;
  height: auto;
}
.what-you-get-item {
  width: calc(33.33% - 16px);
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
  flex-shrink: 0;
  position: relative;
}
.items_container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.what-you-get-item img,
.what-you-get-item video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  margin-bottom: 10px;
}
.what-you-get-item p {
  text-align: center;
  font-size: 14px;
  color: #333;
}
@media (max-width: 768px) {
  .what-you-get-item {
    width: calc(50% - 8px);
  }
  .what-you-get-container {
    gap: 8px;
  }
  .what-you-get-item img,
  .what-you-get-item video {
    height: 300px;
  }
  .what-you-get-item p {
    font-size: 16px;
  }
}
.toggle-container {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 21px;
  margin-left: 10px;
}
.toggle-checkbox {
  display: none;
}
.toggle-label {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 30px;
  height: 100%;
  width: 100%;
  transition: background-color 0.3s ease;
  top: 5px;
}
.toggle-label::after {
  content: "";
  position: absolute;
  background-color: #fff;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  top: 2px;
  left: 1px;
  transition: transform 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}
.toggle-checkbox:checked + .toggle-label {
  background-color: #28a745;
}
.toggle-checkbox:checked + .toggle-label::after {
  transform: translateX(30px);
}
.special_request_container {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 10px;
}
.form-check {
  width: calc(33.33% - 16px);
  display: flex !important;
  align-items: center;
  box-sizing: border-box;
}
.form-check input[type="checkbox"] {
  margin-right: 8px;
}
.form-check label {
  font-size: 14px;
  color: #333;
  font-weight: 400;
}
@media (max-width: 768px) {
  .form-check {
    width: calc(50% - 8px);
  }
  .form-check label {
    font-size: 16px;
  }
}
.what-you-get-item img,
.what-you-get-item video {
  border-radius: 20px;
}
.form_check:checked {
  background-color: #cc0d39;
  border-color: #cc0d39;
}
.toggle_fields_show {
  display: none;
}
.toggle_fields_hide {
  display: block;
}
.items_container::-webkit-scrollbar {
  display: none;
}
#visitbtn {
  position: fixed;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  display: flex;
  align-items: center;
  opacity: 0;
}
#visitbtn.visitbtn {
  opacity: 1;
}
.form-check-input {
  transform: scale(1.2);
  margin-top: 3px;
}
.form-check-inline {
  margin-right: 20px;
}
#donation-form .iti {
  width: 100%;
  display: block;
}
#donation-form .iti__flag-container {
  z-index: 1060;
}
#donation-form .iti__country-list {
  z-index: 1070;
  max-height: 200px;
}
#donation-form .iti--separate-dial-code .iti__selected-flag {
  background-color: transparent;
  border-right: 1px solid #dee2e6;
  border-radius: 8px 0 0 8px;
  padding: 0 8px;
  height: 90%;
  display: flex;
  align-items: center;
}
#donation-form .iti--separate-dial-code .iti__selected-dial-code {
  font-size: 14px;
  color: #2d3748;
  font-weight: 500;
}
#donation-form #donorMob {
  border-radius: 0 8px 8px 0 !important;
}
@media screen and (max-width: 320px) {
  .slide-content img {
    height: 100% !important;
  }
}
@media screen and (max-width: 349px) {
  .slide-content img {
    width: 100%;
  }
}
.otp-type-wrapper {
  display: flex;
  gap: 12px;
}
.otp-type-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #dee2e6;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: all 0.25s ease;
  font-weight: 500;
}
.otp-type-card input {
  accent-color: #0d6efd;
  cursor: pointer;
}
.otp-type-card:hover {
  border-color: #0d6efd;
  background: #f8fbff;
}
.otp-type-card:has(input:checked) {
  border-color: #0d6efd;
  background: #eef5ff;
}
.otp-type-card input:checked + span {
  color: #0d6efd;
  font-weight: 600;
}
.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 10px;
}
.contribution-button {
  flex: 1;
  min-width: 0;
}
.what_in_hl {
  padding: 5px;
  background-color: #fffaf3;
  border: 1px solid;
  border-radius: 5px;
  box-shadow: 0 4px 8px rgba(0, 91, 187, 0.3);
}
.alter {
  border-radius: 10px;
}
.contribution-button {
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  padding: 10px 20px;
  border-radius: 8px;
  cursor: pointer;
  width: 150px;
}
.contribution-button.is-active {
  background-color: #009dff;
  color: #fff;
}
.causes_form {
  box-shadow: none !important;
  padding: 20px;
  border-radius: 20px;
}
.page-wrapper {
  background: #fffaf3;
  min-height: 100vh;
  padding: 50px 0;
}
.recent_donor {
  box-shadow: 0 0 10px rgba(133, 133, 133, 0.5);
  background-color: #fef7eef8;
  border: 0;
}
.program-showcase {
  background: #fffaf3;
  border-bottom: 2px solid #f0f0f0;
  padding: 10px;
}
.program-info,
.showcase-content {
  width: 100%;
}
.left-content,
.title-price-row {
  display: flex;
  align-items: baseline;
}
.title-price-row {
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 0;
}
.left-content {
  flex-direction: row;
  gap: 10px;
}
.program-title {
  font-size: 32px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
}
.price-container {
  margin: 0;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  color: #ff4500;
  font-weight: 700;
  text-decoration: none;
}
.currency {
  font-size: 20px;
  font-weight: 700;
}
.amount {
  font-size: 28px;
  font-weight: 800;
}
.per {
  font-size: 16px;
  color: #7f8c8d;
  font-weight: 600;
}
.gallery-slider-container {
  width: 100%;
  padding-top: 50px;
}
.gallery-slide-item {
  background-position: center;
  background-size: cover;
  width: 200px;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 10px;
}
.gallery-slide-item img {
  display: block;
  width: 85%;
  height: 85%;
  object-fit: cover;
  border-radius: 10px;
}
.image-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  z-index: 999999;
  animation: fadeIn 0.3s ease;
}
.image-modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 900px;
  max-height: 90vh;
  z-index: 1000000;
}
.image-modal-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-modal-img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}
.image-modal-close,
.image-modal-nav {
  position: fixed;
  background: rgba(255, 255, 255, 0.15);
  border: 0;
  color: #fff;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 1000001;
}
.image-modal-close {
  top: 20px;
  right: 25px;
  font-size: 32px;
}
.image-modal-close:hover,
.image-modal-nav:hover {
  background: rgba(255, 255, 255, 0.3);
}
.image-modal-nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
}
.image-modal-prev {
  left: 20px;
}
.image-modal-next {
  right: 20px;
}
.image-modal-counter {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  background: rgba(0, 0, 0, 0.5);
  padding: 8px 20px;
  border-radius: 20px;
  z-index: 1000001;
}
.ig-ct img,
.splide__slide .slide-content img {
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.ig-ct img:hover,
.splide__slide .slide-content img:hover {
  opacity: 0.85;
  transform: scale(1.02);
}
@media (max-width: 768px) {
  .image-modal-nav {
    width: 40px;
    height: 40px;
    font-size: 22px;
  }
  .image-modal-prev {
    left: 10px;
  }
  .image-modal-next {
    right: 10px;
  }
  .image-modal-close {
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 26px;
  }
  .image-modal-counter {
    bottom: 15px;
    font-size: 14px;
    padding: 6px 16px;
  }
}
.description-section {
  padding: 0;
  background: #fffaf3;
}
.description-content {
  max-width: 100%;
}
.description-text {
  font-size: 18px;
  line-height: 1.8;
  color: #151616;
  margin-bottom: 0;
  text-align: justify;
  padding: 30px;
  background: #fef7eef8;
  border-radius: 15px;
  border-left: 5px solid #009dff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
.text-highlight {
  color: #009dff;
  font-weight: 700;
  font-style: normal;
}
.wizard_btns {
  text-align: center;
  margin-top: 20px;
}
.wizard_P_N_btns {
  background: #009dff;
  color: #fff;
  padding: 12px 15px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border: 0;
  cursor: pointer;
}
.wizard_P_N_btns:hover {
  background: #007acc;
  color: #fff;
  text-decoration: none;
}
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  animation: fadeIn 0.3s ease;
  backdrop-filter: blur(8px);
}
.modal-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border-radius: 12px;
  width: 90%;
  max-width: 1200px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  z-index: 100000;
  animation: slideIn 0.4s ease;
}
.modal-header {
  background: #fff;
  position: relative;
  border-radius: 12px 12px 0 0;
}
.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: #2c3e50;
  margin: 0;
}
.close-btn {
  position: absolute;
  top: 20px;
  right: 25px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  font-size: 20px;
  cursor: pointer;
  color: #6c757d;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}
.close-btn:hover {
  background: #e9ecef;
  color: #495057;
}
.modal-content {
  padding: 0;
  margin: 5px;
}
.donation-info {
  padding: 20px 35px;
  border-bottom: 1px solid #e9ecef;
}
.donation-info p {
  color: #495057;
  font-size: 15px;
  margin-bottom: 10px;
}
.donate-link {
  color: #009dff;
  text-decoration: none;
  font-weight: 600;
  padding: 6px 12px;
  background: rgba(0, 157, 255, 0.1);
  border-radius: 4px;
  display: inline-block;
  transition: all 0.3s ease;
}
.donate-link:hover {
  background: rgba(0, 157, 255, 0.15);
}
.form-content {
  padding: 35px;
}
.kids-section {
  margin-bottom: 35px;
  padding: 20px 0 0;
}
.section-title {
  font-size: 16px;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 15px;
}
.kids-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.kids-btn {
  background: #fff;
  border: 2px solid #dee2e6;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  color: #495057;
  font-size: 14px;
  width: 125px;
}
.kids-btn.active,
.kids-btn:hover {
  border-color: #009dff;
  color: #009dff;
}
.kids-btn.active {
  background: #009dff;
  color: #fff;
}
.form_group {
  margin-bottom: 20px;
}
.label-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 6px;
  display: block;
  font-size: 14px;
}
.form-control {
  font-size: 14px;
  background: #fff;
  font-family: inherit;
}
.message-textarea:focus {
  outline: 0;
  border-color: #009dff;
  box-shadow: 0 0 0 3px rgba(0, 157, 255, 0.1);
}
.error-border {
  border-color: tomato !important;
}
.field-error {
  color: tomato;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.date-section {
  margin-bottom: 25px;
  padding: 20px;
  border-radius: 8px;
}
.date-help {
  font-size: 12px;
  color: #6c757d;
  margin-top: 6px;
  font-style: italic;
}
.message-section {
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #6c757d;
}
.message-container {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.message-input-container {
  flex: 1;
}
.message-textarea {
  width: 100%;
  height: 100px;
  padding: 12px 16px;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  resize: vertical;
  background: #fff;
  transition: all 0.3s ease;
}
.char-count {
  text-align: right;
  font-size: 12px;
  color: #6c757d;
  margin-top: 4px;
}
.demo-section {
  flex-shrink: 0;
}
.hide-demo {
  color: #009dff;
  text-decoration: none;
  font-size: 12px;
  margin-bottom: 10px;
  display: block;
}
.foot-sec {
  background-color: #fffaf3;
  padding: 20px;
}
.demo-image {
  width: 140px;
  height: 100px;
  background-color: #f8f9fa;
  border-radius: 6px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid #dee2e6;
}
.customized_packages .packages_container hr,
.customized_packages .packages_container input[type="checkbox"],
.wizard-section {
  display: none;
}
.wizard-section.active {
  display: block;
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 20px 0;
}
.addon-item,
.package-item {
  border: 1px solid #dee2e6;
  transition: all 0.3s ease;
  background: #fff;
}
.package-item {
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
}
.package-item:hover {
  border-color: #009dff;
  box-shadow: 0 4px 12px rgba(0, 157, 255, 0.1);
}
.package-item.selected {
  border-color: #009dff;
  background: rgba(0, 157, 255, 0.05);
}
.package-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 12px;
}
.package-item h4 {
  margin: 12px 0 8px;
  color: #2c3e50;
  font-weight: 600;
  font-size: 16px;
}
.addon-item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}
.addon-item:hover {
  border-color: #009dff;
}
.addon-item input[type="checkbox"] {
  margin-right: 12px;
  accent-color: #009dff;
}
.addon-item label {
  flex: 1;
  cursor: pointer;
  font-weight: 500;
}
.addon-price {
  font-weight: 600;
  color: tomato;
}
.tax-exemption-container {
  border: 1px solid #dee2e6;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  background: #fff;
}
.modal-footer {
  display: flex;
  justify-content: space-between;
}
.next-btn,
.skip-btn {
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.skip-btn {
  background: #fff;
  border: 1px solid #dee2e6;
  padding: 10px 20px;
  font-weight: 500;
  color: #6c757d;
}
.skip-btn:hover {
  border-color: #adb5bd;
  color: #495057;
}
.next-btn {
  background: tomato;
  border: 0;
  padding: 12px 24px;
  font-weight: 600;
  color: #fff;
}
.next-btn:hover {
  background: #e55a4f;
  transform: translateY(-1px);
}
.section-container {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  margin-bottom: 25px;
}
.service-details {
  border-left: 4px solid tomato;
}
.packages-container {
  border-left: 4px solid #009dff;
}
.addons-container {
  border-left: 4px solid #6c757d;
}
.total-amount-field {
  background: rgba(255, 99, 71, 0.05) !important;
  border-color: tomato !important;
  font-weight: 600 !important;
  font-size: 16px !important;
}
.recent_donor_container {
  margin-top: 0;
}
.recent_donor_detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.recent_donor_amount,
.recent_donor_name {
  display: flex;
  gap: 10px;
}
.amount_title,
.name_title {
  font-weight: 600;
  color: #2c3e50;
}
@media (max-width: 768px) {
  .aslam-desk {
    height: 85vh;
  }
  .aslam {
    padding-bottom: 30px;
    margin-bottom: 30px !important;
  }
  .title-price-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 15px;
  }
  .program-title {
    font-size: 28px;
  }
  .description-section,
  .main-content,
  .page-wrapper {
    padding: 0;
  }
  .description-text {
    font-size: 16px;
    padding: 25px;
  }
  .modal-container {
    width: 95%;
    max-height: 95vh;
  }
  .form-content {
    padding: 25px;
  }
  .modal-footer,
  .modal-header {
    padding: 20px 25px;
  }
  .modal-footer {
    flex-direction: row;
    gap: 12px;
  }
  .message-container {
    flex-direction: column;
  }
  .form-grid {
    gap: 15px;
  }
  .form-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }
  .kids-buttons {
    justify-content: center;
  }
  .step-label {
    font-size: 10px;
    width: 60px;
  }
}
.read-less,
.read-more {
  color: #007bff !important;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
}
.read-less:active,
.read-less:focus,
.read-less:hover,
.read-less:visited,
.read-more:active,
.read-more:focus,
.read-more:hover,
.read-more:visited {
  color: #007bff !important;
  text-decoration: none;
}
.modal-80w {
  max-width: 80%;
}
@media (max-width: 768px) {
  .modal-80w {
    max-width: 100%;
    margin: 0;
  }
  .five-rupee {
    margin-top: 35px !important;
  }
}
.modal-header .btn-close {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  font-weight: 700;
  color: #333;
}
.modal-header .btn-close::before {
  content: "×";
}
.modal-header .btn-close:hover {
  color: #000;
  opacity: 1;
}
.modal-dialog {
  transition: transform 0.4s ease-out;
}
.modal-content {
  background-color: #fffdf9;
  border-radius: 20px;
  border: 0;
  box-shadow: 0 16px 60px -15px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.modal-header {
  background-color: #fffaf3;
  padding: 20px 30px;
  border-bottom: 1px solid #f3ebe1;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal-header .modal-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c3e50;
}
.modal-header .btn-close {
  background: 0 0;
  border: 0;
  font-size: 1.5rem;
  opacity: 0.6;
  transition: opacity 0.2s, transform 0.2s;
}
.wizard-container {
  padding: 0;
}
.wizard-step {
  display: none;
  opacity: 0;
  animation: fadeIn 0.6s ease-in-out forwards;
}
.form-section {
  margin-top: 35px;
}
.form-group .label-title {
  display: block;
  font-weight: 600;
  color: #4a4a4a;
  margin-bottom: 8px;
  margin-top: 15px;
  font-size: 1rem;
}
.form-control {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  background-color: #fff;
  font-size: 1rem;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.02);
}
.form-control::placeholder {
  color: #a0a0a0;
}
.form-control:focus {
  background-color: #fff;
  border-color: #009dff;
  box-shadow: 0 0 0 4px rgba(0, 157, 255, 0.15);
  outline: 0;
}
.donation-main-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 25px;
}
.info-banner {
  background-color: #e9f5ff;
  color: #334e68;
  padding: 20px;
  border-radius: 14px;
  font-size: 1.05rem;
  border: 1px solid #d0eaff;
}
.info-banner .info-text {
  margin: 0;
  line-height: 1.6;
}
.info-banner .highlight-green {
  color: #27ae60;
  font-weight: 600;
}
.info-banner .info-action-link {
  color: #ff4500;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  transition: transform 0.2s;
}
.info-banner .info-action-link:hover {
  text-decoration: underline;
  transform: translateX(3px);
}
.wizard-step[data-step="1"] h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 25px !important;
}
.wizard-navigation {
  width: 100%;
}
.btn-wizard {
  border: 0;
}
#nextBtn,
#prevBtn,
#submitBtn,
.btn-wizard {
  padding: 14px 40px;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}
#nextBtn,
#submitBtn {
  border: 0;
}
#prevBtn,
.btn-secondary {
  background-color: #f0f2f5;
  color: #555;
  border: 1px solid #e0e4e8;
}
#prevBtn:hover,
.btn-secondary:hover {
  background-color: #e5e8eb;
  border-color: #d1d5db;
}
#nextBtn,
#submitBtn,
.btn-primary,
.btn-success {
  background: #009dff;
  color: #fff;
  animation: pulse 2s infinite;
}
#nextBtn:hover,
#submitBtn:hover,
.btn-primary:hover,
.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px -8px rgba(0, 157, 255, 0.7);
  animation-play-state: paused;
}
[style*="display: none"] {
  display: none !important;
}
.desktop-only {
  display: block;
}
@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }
  .wizard-navigation {
    position: fixed !important;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    padding: 15px 20px;
    border-top: 1px solid #dee2e6;
    z-index: 10000;
    box-shadow: 0-2px 10px rgba(0, 0, 0, 0.1);
  }
  .wizard-container {
    overflow-y: scroll;
    margin-bottom: 0;
    overflow-x: hidden;
  }
  .gallery-slider-container {
    padding-top: 10px;
  }
}
.container {
  padding: 0 !important;
}
.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 0;
  margin-bottom: 0.125rem;
}
.customized_packages {
  display: flex;
  gap: 20px;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  justify-content: flex-start;
  margin-top: 15px;
  margin-bottom: 20px;
  padding: 10px 5px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}
.customized_packages::-webkit-scrollbar {
  height: 6px;
}
.customized_packages::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.customized_packages::-webkit-scrollbar-thumb {
  background: #009dff;
  border-radius: 10px;
}
.customized_packages .pack_container {
  flex: 0 0 auto;
}
.customized_packages .packages_container {
  text-align: center;
  position: relative;
}
.customized_packages .packages_container img {
  width: 148px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}
.customized_packages
  .packages_container
  input[type="checkbox"]:checked
  + label
  img {
  border-color: #009dff;
  box-shadow: 0 4px 15px rgba(0, 157, 255, 0.3);
}
.customized_packages .packages_container p {
  font-size: 12px;
  font-weight: 600;
  color: #333;
  margin: 8px 0 0;
}
.d-flex.justify-content-between.mt-4,
.wizard-navigation {
  justify-content: space-between !important;
  padding-top: 25px;
  padding-bottom: 20px;
  margin-top: 35px;
  border-top: 1px solid #f3ebe1;
}
.d-flex.justify-content-between.mt-4 {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .customized_packages {
    gap: 0;
    padding: 5px 5px 45px;
  }
  .customized_packages .packages_container img {
    width: 140px;
    height: 200px;
  }
  .customized_packages .packages_container p {
    font-size: 11px;
  }
}
@media (max-width: 445px) {
  .form-check {
    display: flex !important;
  }
  .donation-main-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 25px;
  }
  .customized_packages {
    gap: 0;
    padding: 0 5px 40px;
  }
  .customized_packages .packages_container {
    position: relative;
  }
  .customized_packages .packages_container input[type="checkbox"] {
    display: block;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #009dff;
    z-index: 2;
  }
  .customized_packages .packages_container img {
    width: 145px;
    height: 200px;
    border-radius: 8px;
  }
  .customized_packages .packages_container p {
    font-size: 11px;
    margin: 6px 0 0;
  }
}
.swip-cont {
  width: 50%;
}
.customized_packages .packages_container .five-rupee {
  color: #009dff;
}
#parcel-demo-container {
  width: 100%;
  display: flex;
  align-items: center;
  margin-top: 15px;
  padding: 12px;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  animation: fadeInSimple 0.4s ease-out;
}
.parcel-demo-thumbnail {
  width: 175px;
  height: auto;
  border-radius: 6px;
  margin-right: 15px;
  flex-shrink: 0;
}
.parcel-demo-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.demo-text-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #aab5c0;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 4px;
}
.demo-user-text {
  font-size: 1.5rem;
  font-weight: 500;
  font-style: italic;
  color: #2c3e50;
  margin: 0;
  line-height: 1.3;
  word-break: break-word;
}
#selected-package-details {
  background: #fffaf3;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #f4e6d1;
  margin: 20px 0 30px;
}
#selected-package-details h4 {
  color: #1f1e1e;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.wwg {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f4e6d1;
}
#dynamic-food-count-container {
  margin-top: 8px;
  color: #0e0d0d;
  font-size: 0.95rem;
  line-height: 1.4;
}
.toggle_fields {
  background: #fef7ed;
  border-radius: 6px;
  margin: 15px 0;
  position: relative;
}
.toggle_menu {
  width: 20px;
  height: 20px;
  color: #181717;
  cursor: pointer;
  position: absolute;
  right: 15px;
  top: 15px;
}
.toggle_menu:hover {
  color: #8b4513;
}
#fields_options h4 {
  margin: 0 0 10px;
  padding-right: 30px;
  color: #1f1e1e;
}
#dynamic-fields-container {
  background: #fffaf3;
  padding: 12px;
  border-radius: 4px;
  color: sienna;
  font-size: 0.9rem;
}
#dynamic-what-you-get-container {
  background: #fef7ed;
  padding: 5px;
  color: sienna;
  font-size: 0.95rem;
  line-height: 1.4;
}
.wizard-navigation {
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
}
.mobile-only,
swiper-container {
  display: none;
}
@media (max-width: 768px) {
  .mobile-only {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    box-shadow: 0-2px 12px rgba(0, 0, 0, 0.08);
    padding: 12px 0;
    text-align: center;
    z-index: 2;
  }
  body.modal-open .mobile-only{display:none!important}
  .mobile-only .wizard_P_N_btns {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    font-size: 18px;
    padding: 14px 0;
    border-radius: 8px;
    background: #009dff;
    color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 157, 255, 0.12);
    display: inline-block;
  }
  .contribution-button {
    font-size: 13px;
    padding: 6px !important;
  }
}
@media screen and (max-width: 768px) {
  swiper-container {
    display: block;
  }
}
.ig-ct img {
  width: 150px;
  height: 160px;
  object-fit: cover;
  border-radius: 6px;
}
.ig-full {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.slide-content {
  position: relative;
  width: 135px;
}
.slide-content img {
  border-radius: 15px;
  height: 190px;
  width: 85%;
  object-fit: cover;
}
.modal-header-custom {
  background: #000 !important;
}
@media screen and (max-width: 768px) {
  .trust-badges.d-xl-none {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .trust-badges.d-xl-none .trust-badge {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 8px;
    border-radius: 14px;
    border: 1.5px solid #bfdbfe;
    animation: mob-badgePop 0.4s ease both;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(1) {
    animation-delay: 0.05s;
    border-color: #fde68a;
    background: linear-gradient(135deg, #fffbeb, #fff);
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(2) {
    animation-delay: 0.12s;
    border-color: #bbf7d0;
    background: linear-gradient(135deg, #f0fdf4, #fff);
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(3) {
    animation-delay: 0.19s;
    border-color: #bfdbfe;
    background: linear-gradient(135deg, #eff6ff, #fff);
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(4) {
    animation-delay: 0.26s;
    border-color: #e9d5ff;
    background: linear-gradient(135deg, #faf5ff, #fff);
  }
  .trust-badges.d-xl-none .trust-badge-icon {
    font-size: 26px;
    display: inline-block;
    animation: mob-floatIcon 2.4s ease-in-out infinite;
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(1) .trust-badge-icon {
    animation-delay: 0s;
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(2) .trust-badge-icon {
    animation-delay: 0.6s;
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(3) .trust-badge-icon {
    animation-delay: 1.2s;
  }
  .trust-badges.d-xl-none .trust-badge:nth-child(4) .trust-badge-icon {
    animation-delay: 1.8s;
  }
  .trust-badges.d-xl-none .trust-badge-title {
    font-size: 11.5px;
    font-weight: 700;
  }
  .trust-badges.d-xl-none .trust-badge-sub {
    font-size: 10px;
    color: #64748b;
  }
  .mob_video_container video {
    margin-top: 76px;
    border-radius: 16px;
    width: 100%;
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
    background: #000;
    display: block;
    box-shadow: 0 8px 28px rgba(0, 157, 255, 0.3);
    animation: videoRingMob 2.4s ease-in-out infinite;
  }
  .bottom-nav,
  .desk_video_container,
  .ig-full {
    display: none;
  }
  .page-wrapper {
    background-color: #f4f5f7 !important;
  }
  .program-showcase {
    background-color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
  }
  .causes_heading {
    font-size: 15px;
    font-weight: 600;
  }
  .amount {
    font-size: 17px;
    font-weight: 700;
  }
  .description-text,
  .recent_donor {
    background-color: #fff !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    border-radius: 12px;
  }
  .wizard_btns.mobile-only .wizard_P_N_btns {
    background: linear-gradient(
      90deg,
      #009dff 0,
      #0070cc 40%,
      #009dff 80%,
      #40b8ff 100%
    );
    background-size: 200%auto;
    animation: shimmerBtn 2.4s linear infinite;
    border-radius: 15px !important;
    padding: 14px 36px !important;
    font-size: 16px !important;
    letter-spacing: 1.2px;
    box-shadow: 0 6px 22px rgba(0, 157, 255, 0.45);
    width: 90%;
    justify-content: center;
    display: flex;
  }
  .mob_video_container {
    position: relative;
    margin: 0;
    padding: 0 8px;
    box-sizing: border-box;
    border-radius: 16px;
    overflow: visible;
  }
  .mob_video_container::after {
    content: "▶  Tap to watch";
    position: absolute;
    bottom: 10px;
    right: 12px;
    background: rgba(0, 0, 0, 0.55);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
    pointer-events: none;
    backdrop-filter: blur(4px);
  }
}
.google_sign,
.google_sign_btn {
  background-color: #fff;
  padding: 8px;
  border-radius: 40px;
  border: 1px solid gray;
  margin-bottom: 10px;
  font-size: 14px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
.google_sign:hover,
.google_sign_btn:hover {
  background-color: #f8f9fa;
  border-color: #009dff;
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 768px) {
  .wizard-navigation {
    display: flex;
    gap: 5px;
    padding: 5px;
  }
  #prevBtn {
    width: 20px;
    flex: 0 0 30px;
    align-items: center;
    justify-content: center;
    padding: 15px 0;
  }
  #nextBtn {
    flex: 1;
    text-align: center;
    padding: 15px 0;
  }
  .packages_container {
    margin-bottom: -42px !important;
  }
  #visitbtn {
    display: none;
  }
  #selected-package-details {
    padding: 5px;
  }
  .wwg {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
    display: flex;
    align-items: center;
    gap: 10px;
  }
}
#donatebtn {
  flex: 1 !important;
  text-align: center !important;
  padding: 15px 0 !important;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600px;
}
.donate-video-row {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
.donate-side {
  flex: 0 0 38%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.donate-side .donate-tagline {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin: 0;
}
.video-side {
  flex: 1;
  min-width: 0;
}
.video-side .desk_video_container {
  margin-top: 0;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-side .desk_video_container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}
.trust-badges {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid #e8f0fe;
  border-radius: 10px;
  padding: 8px 12px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  animation: badgeSlideIn 0.45s ease both, badgeGlow 3s ease-in-out infinite;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.trust-badge:hover {
  transform: translateX(5px);
  box-shadow: 0 3px 12px rgba(0, 157, 255, 0.18);
  border-color: #009dff;
}
.trust-badge:nth-child(1) {
  animation-delay: 0.08s, 0s;
}
.trust-badge:nth-child(2) {
  animation-delay: 0.18s, 0.8s;
}
.trust-badge:nth-child(3) {
  animation-delay: 0.28s, 1.6s;
}
.trust-badge:nth-child(4) {
  animation-delay: 0.38s, 2.4s;
}
.trust-badge-icon {
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
  animation: iconBounce 2.4s ease-in-out infinite;
}
.trust-badge:nth-child(1) .trust-badge-icon {
  animation-delay: 0s;
}
.trust-badge:nth-child(2) .trust-badge-icon {
  animation-delay: 0.6s;
}
.trust-badge:nth-child(3) .trust-badge-icon {
  animation-delay: 1.2s;
}
.trust-badge:nth-child(4) .trust-badge-icon {
  animation-delay: 1.8s;
}
.trust-badge-title {
  font-size: 12.5px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.2;
}
.trust-badge-sub {
  font-size: 11px;
  color: #64748b;
  margin-top: 1px;
}
.donate-side .wizard_P_N_btns {
  animation: donatePulse 2.2s ease-in-out infinite;
}
.sidebar-what-given {
  margin-top: 16px;
  background: #fef7ee;
  border-radius: 12px;
  border: 1px solid #f0e0c8;
  padding: 14px;
  box-shadow: 0 0 8px rgba(133, 133, 133, 0.2);
}
.sidebar-what-given h5 {
  font-size: 14px;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 10px;
  padding-bottom: 6px;
  border-bottom: 2px solid #f97316;
}
.sidebar-what-given img {
  width: 100%;
  border-radius: 10px;
  margin-top: 10px;
}
.sidebar-what-given p {
  font-size: 13px;
  color: #444;
  margin: 0;
}
@media screen and (min-width: 769px) {
  .mob_video_container {
    display: none;
  }
  .desk_video_container {
    margin-top: 0;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/9;
    width: 100%;
  }
  .desk_video_container video {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    display: block;
  }
  .slider_view,
  .today_donations {
    display: none;
  }
}
@media screen and (min-width: 425px) {
  .slide-content img {
    border-radius: 15px;
    height: 170px;
    width: 100%;
    object-fit: cover;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
@media screen and (max-width: 425px) {
  .slide-content img {
    border-radius: 15px;
    height: 160px;
    width: 100%;
    object-fit: cover;
    padding-right: 0px !important;
    padding-left: 0px !important;
  }
}
.page-wrapper {
  overflow-x: hidden;
}
.today_card::after {
  content: "";
  position: absolute;
  top: -20px;
  right: -18px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.05);
}
.modal-content,
.modal-dialog {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  will-change: transform;
}
.wizard-step.active {
  display: block;
}
.ingeridents_image {
  display: flex;
  align-items: center;
  gap: 15px;
}
.ing_con {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}
.ing_con:hover {
  transform: translateY(-5px);
}
.activity-video-card video,
.ing_con img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
.ing_con::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
  border-radius: 10px;
}
.ing_con:hover::after {
  background: rgba(0, 0, 0, 0.5);
}
.ing_con p {
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  z-index: 2;
  font-size: 14px;
}
.image-wrapper {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.image-wrapper img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.ing_con p,
.price-overlay {
  position: absolute;
  color: #fff;
  text-align: center;
  margin: 0;
}
.price-overlay {
  bottom: 34px;
  left: 0;
  right: 0;
  padding: 10px 0;
  font-weight: 500;
  font-size: 15px;
  width: 98%;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0,
    rgba(0, 0, 0, 0.3) 40%,
    transparent 100%
  );
  backdrop-filter: blur(2px);
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  transition: background 0.3s ease;
}
.fields_options {
  margin-left: 38px;
  width: 100%;
}
.error-shake {
  animation: shocking-shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  border-color: red !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.5) !important;
}
.error-flash {
  animation: shocking-flash 0.6s ease-in-out infinite;
}
.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px;
  animation: shocking-shake 0.6s ease-in-out;
}
.activity-video-grid {
  column-count: 3;
  column-gap: 18px;
}
@media (max-width: 1200px) {
  .activity-video-grid {
    column-count: 2;
  }
}
@media (max-width: 768px) {
  .activity-video-grid {
    column-count: 1;
  }
}
.activity-video-card {
  position: relative;
  margin-bottom: 18px;
  break-inside: avoid;
  border-radius: 14px;
  overflow: hidden;
  background: #000;
  cursor: pointer;
  aspect-ratio: 16/9;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.activity-video-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
}
.activity-video-card video {
  display: block;
  border-radius: 14px;
  background: #000;
  controls: none;
}
.activity-video-card video:focus {
  outline: 0;
}
.activity-video-card::after,
.video-meta {
  position: absolute;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.activity-video-card::after {
  content: "";
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.55),
    rgba(0, 0, 0, 0.15),
    transparent
  );
  pointer-events: none;
}
.activity-video-card:hover::after {
  opacity: 1;
}
.video-meta {
  bottom: 10px;
  right: 12px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background: rgba(0, 0, 0, 0.45);
  padding: 4px 8px;
  border-radius: 6px;
  z-index: 2;
}
.activity-video-card video::-webkit-media-controls-panel {
  background: rgba(0, 0, 0, 0.4);
}
.activity-video-card video::-webkit-media-controls-play-button,
.activity-video-card video::-webkit-media-controls-timeline,
.activity-video-card video::-webkit-media-controls-volume-slider {
  filter: brightness(1.2);
}
.activity-video-card .video-title {
  position: absolute;
  top: 14px;
  left: 16px;
  right: 16px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  z-index: 3;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s ease;
  pointer-events: none;
}
.activity-video-card:hover .video-title {
  opacity: 1;
  transform: translateY(0);
}
.activity-video-card .video-meta {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.activity-video-card:hover .video-meta {
  opacity: 1;
}
#modalContent {
  position: relative;
  margin: 4%auto;
  width: 90%;
  max-width: 900px;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
  animation: modalFadeIn 0.35s ease;
}
.modal-video-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.4)
  );
  color: #fff;
}
.modal-video-title {
  font-size: 18px;
  font-weight: 600;
}
.modal-video-date {
  font-size: 13px;
  opacity: 0.8;
}
#closeModal {
  font-size: 28px;
  color: #fff;
  cursor: pointer;
  line-height: 1;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
#closeModal:hover {
  transform: scale(1.15);
  opacity: 0.8;
}
#modalBody video {
  width: 100%;
  max-height: 75vh;
  background: #000;
}
@media (max-width: 768px) {
  #modalContent {
    margin: 10%auto;
    width: 95%;
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
  }
  .modal-header .modal-title {
    font-size: 14px !important;
  }
  .modal-video-title {
    font-size: 16px;
  }
  .mob-mb-pb-30 {
    margin-bottom: 3rem !important;
    padding-bottom: 3rem !important;
  }
  #modalBody,
  .modal-video-header {
    position: absolute;
    display: flex;
    align-items: center;
  }
  .modal-video-header {
    top: 0;
    left: 0;
    right: 0;
    height: 52px;
    justify-content: space-between;
    padding: 0 14px;
    color: #fff;
    background: rgba(0, 0, 0, 0.6);
    z-index: 2;
  }
  #modalBody {
    inset: 0;
    justify-content: center;
    padding-top: 52px;
    padding-bottom: 20px;
  }
  #modalBody video {
    width: 100%;
    max-width: 420px;
    max-height: calc(100vh - 120px);
    border-radius: 12px;
  }
}
.mb-child {
  margin-bottom: 1px !important;
}
.mb-default {
  margin-bottom: 100px;
}
