    .animate-spin-slow {
  animation: spin 20s linear infinite;
}
.animate-spin-reverse {
  animation: spinReverse 25s linear infinite;
}

@keyframes spin { 
  to { transform: rotate(360deg); } 
}
@keyframes spinReverse { 
  to { transform: rotate(-360deg); } 
}

    @-webkit-keyframes float {
      0%,
      100% {
        -webkit-transform: translateY(0px) rotate(0deg);
        transform: translateY(0px) rotate(0deg);
      }
      25% {
        -webkit-transform: translateY(-10px) rotate(2deg);
        transform: translateY(-10px) rotate(2deg);
      }
      50% {
        -webkit-transform: translateY(-5px) rotate(-1deg);
        transform: translateY(-5px) rotate(-1deg);
      }
      75% {
        -webkit-transform: translateY(-15px) rotate(1deg);
        transform: translateY(-15px) rotate(1deg);
      }
    }

    @keyframes float {
      0%,
      100% {
        -webkit-transform: translateY(0px) rotate(0deg);
        transform: translateY(0px) rotate(0deg);
      }
      25% {
        -webkit-transform: translateY(-10px) rotate(2deg);
        transform: translateY(-10px) rotate(2deg);
      }
      50% {
        -webkit-transform: translateY(-5px) rotate(-1deg);
        transform: translateY(-5px) rotate(-1deg);
      }
      75% {
        -webkit-transform: translateY(-15px) rotate(1deg);
        transform: translateY(-15px) rotate(1deg);
      }
    }

    @-webkit-keyframes blob {
      0%,
      100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
      }
      25% {
        -webkit-transform: translate(20px, -50px) scale(1.1);
        transform: translate(20px, -50px) scale(1.1);
      }
      50% {
        -webkit-transform: translate(-20px, 20px) scale(0.9);
        transform: translate(-20px, 20px) scale(0.9);
      }
      75% {
        -webkit-transform: translate(50px, 30px) scale(1.05);
        transform: translate(50px, 30px) scale(1.05);
      }
    }

    @keyframes blob {
      0%,
      100% {
        -webkit-transform: translate(0, 0) scale(1);
        transform: translate(0, 0) scale(1);
      }
      25% {
        -webkit-transform: translate(20px, -50px) scale(1.1);
        transform: translate(20px, -50px) scale(1.1);
      }
      50% {
        -webkit-transform: translate(-20px, 20px) scale(0.9);
        transform: translate(-20px, 20px) scale(0.9);
      }
      75% {
        -webkit-transform: translate(50px, 30px) scale(1.05);
        transform: translate(50px, 30px) scale(1.05);
      }
    }

    .blob-1.jsx-b854065dbce1f0ba {
      -webkit-animation: blob 15s infinite;
      animation: blob 15s infinite;
    }

    .blob-2.jsx-b854065dbce1f0ba {
      animation: blob 20s infinite reverse;
    }

    .blob-3.jsx-b854065dbce1f0ba {
      -webkit-animation: blob 18s infinite 5s;
      animation: blob 18s infinite 5s;
    }
 
/* ⭐ Soft Floating Animation */
@keyframes floatSoft {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}
.float {
  animation: floatSoft 4s ease-in-out infinite;
}


  .animate-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  animation: fadeSlideLeft 0.8s ease-out forwards;
}

.animate-slide-right {
  opacity: 0;
  transform: translateX(60px);
  animation: fadeSlideRight 0.8s ease-out forwards;
}

@keyframes fadeSlideLeft {
  to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeSlideRight {
  to { opacity: 1; transform: translateX(0); }
}
.margintop {
  margin-top: 80px;
}
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.modal-box {
  width: 400px;
  background: #111827;
  color: white;
  padding: 25px;
  border-radius: 14px;
  position: relative;
  box-shadow: 0 10px 25px rgba(255, 213, 0, 0.25);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  font-size: 20px;
  color: #ccc;
}

.modal-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 18px;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-form input {
  background: #1f2937;
  border: 1px solid #374151;
  padding: 10px 14px;
  border-radius: 8px;
  color: white;
}

.modal-form input:focus {
  border-color: #facc15;
  outline: none;
}

.modal-submit {
  background: linear-gradient(90deg, #facc15, #f59e0b);
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  margin-top: 5px;
  color: #111;
  font-size: 16px;
}


.slide-toast {
    animation: slideDownmessage 0.7s ease-out;
}

@keyframes slideDownmessage {
    0% {
        transform: translateY(-120%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.toast-hide {
    animation: slideUpmessage 0.7s ease-in forwards;
}

@keyframes slideUpmessage {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    100% {
        transform: translateY(-120%);
        opacity: 0;
    }
}



.mobilemenu {
      width: 100%;padding: 0px 23px 18px 11px;
        background: rgba(0, 0, 0, 0.90);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(234, 179, 8, 0.3); /* yellow-500/30 */
        animation: slideDown 0.4s ease forwards;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-15px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .mobile-link {
        color: #d1d5db; /* gray-300 */
        font-size: 1.1rem;
        font-weight: 500;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        padding-bottom: 6px;
        border-bottom: 1px solid transparent;
    }

    .mobile-link:hover {
        color: #eab308; /* yellow-500 */
        border-bottom-color: #eab308;
        padding-left: 8px;
    }
    #mobileMenuPanel{ width: 100%; margin-top: 70px;}

    .eventlist{ margin-left: -15px;}

@keyframes ping-slow {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50% { transform: translateY(-6px); opacity: 1; }
}
.animate-ping-slow { animation: ping-slow 4s infinite; }
.delay-200 { animation-delay: .2s; }

.swiper-button-prev.bg-yellow-500.text-black.p-3.rounded-full {
  width: auto;
  height: auto;
}

.swiper-button-next.bg-yellow-500.text-black.p-3.rounded-full {
  width: auto;
  height: auto;
}

.testimonials{ margin-top: 50px !important}



.eventimage {
  margin-left: 17px;
  width: 98% !important;
  height: 474px;
  object-fit: cover;   /* Optional: image crop control */
}

@media (max-width: 576px) {
  .eventimage {
    margin-left: 0;
    width: 100% !important;
    height: 230px;   /* Smaller height for mobile */
  }
}


@media (min-width: 577px) and (max-width: 768px) {
  .eventimage {
    margin-left: 10px;
    width: 97% !important;
    height: 320px;
  }
}


@media (min-width: 993px) and (max-width: 1200px) {
  .eventimage {
    height: 430px;
  }
}

@media (min-width: 1200px) {
  .eventimage {
    height: 474px;
  }
}

.sliderheader{ margin-top: 45px;}


