.volunteer-card__image {
  position: relative;
  overflow: hidden;
}

.volunteer-card__image .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0); /* transparent initially */
  transition: background 0.3s ease;
  z-index: 1;
}

.volunteer-card__image:hover .overlay {
  background: rgba(0, 0, 0, 0.4); /* black shadow on hover */
}

.volunteer-card__image img {
  width: 100%;
  display: block;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 0;
}

.volunteer-card__image:hover img {
  transform: scale(1.03);
}

.author-label {
  position: absolute;
  bottom: 15px;
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 6px 12px;
  border-radius: 6px 0 0 6px;
  font-size: 14px;
  font-weight: 500;
  z-index: 2; /* above overlay */
}

.author-label li {
  margin: 0;
  list-style: none;
}

  .custom-notice-bar {
  background-color: white;
  display: flex;
  align-items: stretch;
  min-height: 50px;
  width: 100%;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  border: 1px solid #ddd;
  overflow: hidden;
}

.notice-label {
  background-color: #ffb767;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: #1a1a1a;
  font-size: 16px;
  line-height: 1;
  box-sizing: border-box;
  white-space: nowrap; /* prevent wrap */
  text-align: center;
  flex-shrink: 0;
  flex-grow: 0;
}

.notice-label i {
  margin-right: 6px;
}

.notice-marquee {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 0 10px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  flex: 1;
}

.marquee-content {
  display: inline-block;
  animation: marquee-scroll 15s linear infinite;
  font-size: 16px;
  font-weight: bold;
  color: #484037;
  line-height: 1;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ✅ Mobile Responsive Fix */
@media (max-width: 768px) {
  .notice-label {
    font-size: 13px;
    padding: 0 8px;
    max-width: 45%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .notice-marquee {
    flex: 1;
    width: auto;
  }

  .marquee-content {
    font-size: 13px;
  }
}


@media (max-width: 768px) {
  .main-header-two__sidebar-btn {
    display: none !important;
  }
}

 textarea.form-one__control__input {
  padding: 12px 15px !important; /* Reduce top padding for better alignment */
  line-height: 1.5;
  vertical-align: middle;
  resize: vertical; /* optional: control resizing */
  height: auto;
}

li.current a,
a.current {
  color: #351C42 !important;
  background: none !important;
  font-weight: 700 !important;
  text-decoration: none !important;
  border: none !important;
}



.testimonial-author-img {
    width: 80px !important;
    height: 80px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: inline-block;
    border: 2px solid #e0e0e0; /* Optional: light border */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1); /* Optional: soft shadow */
    margin: 0 auto;
}

.testimonials-card__quote span{

  color: #0F3C35 !important;
}

.footer-widget__info li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-widget__info li span {
  width: 40px;
  height: 40px;
  background-color: #f0f0f0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #333;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

/* For icon fonts using ::before */
.footer-widget__info li span::before {
  font-size: 18px;
  line-height: 1;
}
.footer-widget {
  padding: 0 25px;
}

.main-header__btn{
  margin-left: 30px;
}

.site-visitors {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #f0f0f0;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 500;
  color: #0F3C35;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  margin: 20px auto 0 auto; /* Center align */
}

.site-visitors__icon {
  background-color: #0F3C35;
  color: #fff;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  margin-right: 10px;
}

.site-visitors__text {
  white-space: nowrap;
}

.fixed-height-image {
        height: 350px !important; /* set your desired height */
        width: auto;
        max-width: 100%;
        object-fit: cover; /* or 'contain' based on preference */
        display: block;
        margin: 0 auto;
    }

    .fixed-campign-height-image {
        height: 300px !important; /* set your desired height */
        width: auto;
        max-width: 100%;
        object-fit: cover; /* or 'contain' based on preference */
        display: block;
        margin: 0 auto;
    }


 

/* Optional: also hide Google logo link if exists */
.goog-logo-link {
    display: none !important;
}


/* Hide the branding text inside Google Translate */
.goog-te-gadget span {
    display: none !important;
    visibility: hidden !important;
}

/* Optional: Also hide the Google logo link (if shown) */
.goog-logo-link {
    display: none !important;
    visibility: hidden !important;
}

.goog-te-gadget {
    font-family: arial;
    font-size: 0px;
    color: #666;
    white-space: nowrap;
}

.donations-one__carousel {
    position: relative !important;
}

.donations-one__carousel .owl-nav {
    position: absolute !important;
    top: 30% !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    display: flex !important;
    justify-content: space-between !important;
    padding: 0 2px !important;
    z-index: 5 !important;
    pointer-events: none !important;
}

/* Circle buttons, no extra border or oval effect */
.donations-one__carousel .owl-nav button {
    background-color: #0F3C35 !important;
    color: #fff !important;
    font-size: 18px !important;
    width: 55px !important;
    height: 60px !important;
    border: none !important;
    border-radius: 50% !important;
    box-shadow: none !important;
    padding: 0 !important;
    margin: 0 !important;
    pointer-events: all !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background-color 0.3s ease !important;
}

