.whatsapp-float {
  position: fixed;
  bottom: 55px;
  right: 25px;
  z-index: 9999;
  text-decoration: none;
}

.whatsapp-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #25D366, #1ebe57);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  animation: pulse 2s infinite;
  position: relative;
}

/* Ripple Effect */
.whatsapp-icon::before,
.whatsapp-icon::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.4);
  animation: ripple 3s infinite;
  z-index: -1;
}

.whatsapp-icon::after {
  animation-delay: 1.5s;
}

/* Hover Effect */
.whatsapp-float:hover .whatsapp-icon {
  transform: scale(1.1) rotate(5deg);
  transition: 0.3s ease-in-out;
}

/* Animations */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

@keyframes ripple {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .whatsapp-icon {
    width: 52px;
    height: 52px;
    font-size: 28px;
  }
}

.cta-section {
  width: 100%;
  padding: 50px 20px;
  background: linear-gradient(135deg, #c4161c 0%, #5a0f1a 60%, #0c1023 100%);
}

.cta-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

/* Text Content */
.cta-content h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 12px;
}

.cta-content h2 span {
  font-weight: 400;
}

.cta-content p {
  color: #f2f2f2;
  font-size: 16px;
  max-width: 520px;
  line-height: 1.6;
}

/* Button */
.connect-btn {
  display: inline-block;
  padding: 16px 36px;
  background: #ffffff;
  color: #c4161c;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-radius: 40px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.connect-btn:hover {
  background: #c4161c;
  color: #fff;
  transform: translateY(-3px);
}

/* =====================
   Mobile Responsive
===================== */

@media (max-width: 768px) {
  .cta-container {
    flex-direction: column;
    text-align: center;
  }

  .cta-content h2 {
    font-size: 32px;
  }

  .cta-content p {
    font-size: 15px;
  }

  .connect-btn {
    padding: 14px 30px;
    font-size: 13px;
  }
}


/* Sticky Event Booking Button */
/* Parent Wrapper */
.sticky-btn-wrapper{
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 15px;              /* Yahi gap kaam karega */
  z-index: 9999;
}

/* Single Button Class */
.event-sticky-btn{
  background: linear-gradient(135deg, #ff7a18, #ff3d00);
  color: #fff;
  text-decoration: none;
  padding: 14px 6px;
  font-size: 14px;
  font-weight: 600;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  border-radius: 12px 0 0 12px;
  box-shadow: -4px 6px 18px rgba(0,0,0,0.25);
  transition: 0.3s ease;
}

.event-sticky-btn:hover{
  background: linear-gradient(135deg, #ff9800, #e53935);
}

/* Mobile */
@media (max-width:768px){
  .event-sticky-btn{
    font-size: 12px;
    padding: 12px 5px;
  }
}



.logo-light {
  height: 55px;   /* apne hisaab se adjust karo */
  width: auto;
  margin-left: 10px;
}


@media (max-width: 768px) {
  .logo-light {
    height: 55px ;
    width: auto;
    margin-left: 0px;
  }
}