    .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;}

.eventimages {
  width: 100%;
  height: 500px;
  object-fit: cover;   /* image/video ko crop karke perfect fit karega */
  border-radius: 8px;   /* optional */
}
.eventimage {
  margin-left: 17px;
  width: 98% !important;
  height: 474px;
  object-fit: cover;
  border-radius: 8px; /* optional */
}

@media (max-width: 576px) {
  .eventimages {
    height: 220px;
  }
}
@media (min-width: 577px) and (max-width: 768px) {
  .eventimages {
    height: 300px;
  }
}
@media (min-width: 769px) and (max-width: 992px) {
  .eventimages {
    height: 380px;
  }
}
@media (min-width: 993px) and (max-width: 1200px) {
  .eventimages {
    height: 450px;
  }
}
@media (min-width: 1200px) {
  .eventimages {
    height: 500px;
  }
}





.event-img {
    height: 450px;
    width: auto;
    border-radius: 20px;
    border: 2px solid rgba(255, 200, 0, 0.4);
    box-shadow: 0px 5px 25px rgba(255, 200, 0, 0.15);
    object-fit: cover;
}

@media (max-width: 768px) {
    .event-img {
        height: 250px;
    }
}


/* Full slide width but padding for left-right space */
.myEventSwiper .swiper-slide {
    padding: 0 100px;  /* left-right gap */
    display: flex;
    justify-content: center;
    gap: 30px;   /* space between 2 images inside slide */
}

/* Image style - NO CROP */
.event-img {
    max-height: 450px;
    width: auto;
    max-width: 45%;   /* two images fit side by side */
    border-radius: 20px;
    border: 2px solid rgba(255, 200, 0, 0.4);
    box-shadow: 0px 5px 25px rgba(255, 200, 0, 0.15);
    object-fit: contain !important;   /* 💥 NO CROPPING */
}

/* Navigation buttons */
.custom-prev, .custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffcc00;
    padding: 10px;
    border-radius: 50%;
    z-index: 10;
}

.custom-prev { left: 20px; }
.custom-next { right: 20px; }

/* Responsive */
@media(max-width: 768px){
    .myEventSwiper .swiper-slide {
        padding: 0 20px;
        flex-direction: column;
        gap: 15px;
    }

    .event-img {
        max-width: 100%;
        max-height: 250px;
    }
}



.swiper {
  padding: 0 60px; /*  Left-right space so image cut na ho  */
}

.swiper-slide img { 
  height: auto;
  border-radius: 15px;
  object-fit: cover;
}

/* Navigation */
.event-slider-navigation {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 0;
    display: flex;
    justify-content: space-between;
    padding: 0 40px;
    transform: translateY(-50%);
    z-index: 9999;
}

.event-prev, .event-next {
    width: 50px;
    height: 50px;
    background: #ffcc00;
    color: #000;
    font-size: 30px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0px 0px 15px rgba(255, 204, 0, 0.5);
    transition: 0.3s ease; /* smoothness */
}

.event-prev:hover, .event-next:hover {
    transform: scale(1.15);
}

.eventcontent p {
  color: #fff;
}

