@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes glow {
  0% { text-shadow: 0 0 10px #ffd700, 0 0 20px #ffd700, 0 0 30px #ff8c00; }
  50% { text-shadow: 0 0 20px #ff8c00, 0 0 30px #ffd700, 0 0 40px #ff4500; }
  100% { text-shadow: 0 0 10px #ffd700, 0 0 20px #ff8c00, 0 0 30px #ff4500; }
}

@keyframes shine {
  0% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(2);
    box-shadow: 0 0 15px #ffd700;
  }
  100% {
    filter: brightness(1);
  }
}

  @keyframes dance {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(-2deg) translateY(-2px); }
    50% { transform: rotate(2deg) translateY(2px); }
    75% { transform: rotate(-1deg) translateY(-1px); }
  }

  @keyframes backgroundZoom {
    0% { background-size: 100%; }
    50% { background-size: 105%; }
    100% { background-size: 100%; }
}

.hero-wrap {
    background-image: url('/images/indexbg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    animation: backgroundZoom 5s ease-in-out infinite;
}

  .dancing-text {
    display: inline-block; /* Ensures animation applies properly */
    animation: dance 1s infinite ease-in-out;
  }

  .glowing-text {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    color: #ffd700;
    text-shadow: 0 0 10px #ffd700, 0 0 20px #ff8c00, 0 0 30px #ff4500;
  }

  @keyframes flipLogo {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg); }
    100% { transform: rotateY(360deg); }
}

.flipping-logo {
  animation: none; /* Initially, no animation */
}


.foundation-title {
  font-family: 'Dancing Script', cursive;
  font-size: 30px; /* Adjust as needed */
  font-weight: bold;
  /* text-align: center; */
  color: #000000; Dark red for elegance;
  /* animation: bounce 1.5s ease-in-out infinite; */
}

  .shining-logo img {
    animation: shine 2s infinite ease-in-out;
    transition: filter 0.3s, box-shadow 0.3s;
    border-radius: 50%; /* If you want a circular effect */
  }


  .glowing-text {
    font-size: 42px; /* Adjust as needed */
    font-weight: bold;
    text-align: center;
    color: #ffd700; /* Golden color */
    animation: glow 1.5s infinite alternate;
  }

  .logo-img-set{
    height: 65px;
    width: 70px;
  }

  .video-button {
    margin-top:350px;
  }


.upi-link {
    color: #007bff; /* Make it blue like a normal link */
    text-decoration: none;
    font-weight: bold;
}
.upi-link:hover {
    text-decoration: underline;
}


/* General Modal Styling */
.premium-modal .modal-content {
  background: rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(12px);
  border-radius: 15px;
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 20px;
}

/* Header Styling */
.premium-modal .modal-header {
  border-bottom: none;
  color: #f5f5f5;
  text-align: center;
}

/* Close Button */
.premium-modal .close {
  color: white;
  opacity: 0.8;
  transition: 0.3s;
}
.premium-modal .close:hover {
  opacity: 1;
}

/* QR Code Styling */
.qr-container {
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

.qr-img {
  width: 180px;
  height: auto;
  animation: pulse 1.5s ease-in-out;
}

/* QR Pulse Effect */
@keyframes pulse {
  0% { transform: scale(0.8); opacity: 0.5; }
  100% { transform: scale(1); opacity: 1; }
}

/* UPI Link */
.upi-link {
  color: #ffd700;
  font-weight: bold;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s;
}

.upi-link:hover {
  color: #ffcc00;
  text-shadow: 0px 0px 10px rgba(255, 204, 0, 0.6);
}

/* Bank Details Box */
.bank-details {
  background: linear-gradient(135deg, #f8ea6c00, #ff5e62);
  color: white;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 18px;
}

/* Floating Notification */
.floating-message {
  position: fixed;
  z-index: 9999;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 16px;
  animation: fadeInOut 5s infinite;
}

/* Floating Message Animation */
@keyframes fadeInOut {
  0% { opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; }
}

.cause-text {
  display: -webkit-box;
  -webkit-line-clamp: 4; /* Show only 4 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 5.5em; /* Adjust height to fit 4 lines */
}
.cause-text.expanded {
  -webkit-line-clamp: unset;
  max-height: none;
}



.cause-text {
  display: inline;
  position: relative;
}

.hidden-text {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.cause-text.expanded .hidden-text {
  display: inline;
  opacity: 1;
}

.read-more-btn {
  display: block;
  margin-top: 10px;
  color: #fff;
  background-color: #007bff;
  padding: 5px 10px;
  text-align: center;
  border-radius: 5px;
  cursor: pointer;
}

.img-2 {
  background-image: url(/images/volunteer-1.jpg); 
  height: 400px;
  width: 500px;
}

.volunter-text {
  color: #fff;
}

/* floating-icon whatsapp */
#feedback-form-wrapper #floating-icon > a {
	position: fixed;
	right: 5px;
	top: 90%;
	z-index: 999;
  }

  #feedback-form-wrapper #floating-icon > a > img {

	/* &:hover {
		animation-play-state: paused;
	} */

	animation: watsApp 0.8s linear infinite;
  }

@keyframes watsApp {
  0%   {transform: scale(0.8)}
  50%  {transform: scale(1)}
  100%  {transform:scale(0.8)}
}

.video-button{
  margin-top: 40vh;

}



  /* media Quires */
  @media screen and (max-width: 1000px) {
    /* .logo-img-set{
      height: 37px;
      width: 40px;
    } */
    .video-button{
      margin-top: 30vh;
    }

    .hero-wrap {
      background-image: url('/images/indexbg1.jpg');
    }
  }

  /* @media screen and (max-width: 991.98px) {
    .hero-wrap {
      background-image: url('/images/indexbg2.jpg');
    }
  } */

  @media screen and (max-width: 850px) {
    .hero-wrap {
      background-image: url('/images/indexbg2.jpg');
    }
  }

  @media screen and (max-width: 700px) {
    .hero-wrap {
      background-image: url('/images/indexbg3.jpg');
    }
  }

  @media screen and (max-width: 450px) {
    .hero-wrap {
      background-image: url('/images/indexbg4.jpg');
    }

  }

  @media screen and (max-width: 370px) {
    .hero-wrap {
      background-image: url('/images/indexbg5.jpg');
    }
    .video-button {
      margin-top: 30vh;
    }

  }

  @media screen and (max-width: 360px) {
    
    .video-button {
      margin-top: 20vh;
    }

  }

  @media screen and (max-width: 340px) {
    
    .video-button {
      margin-top: 15vh;
    }

  }
  