.site-footer .buttom-footer{
 background-color: #fff;
 padding: 5px 0;
}

.site-footer .buttom-footer .text-left,.text-right{
color: #000;
font-size: 12px;
}

.desti-image img{
max-width: 100%;
width: 100%;
}

.package-section .package-inner .package-wrap .feature-image img {
    width: 100%;          /* Full width */
    /*height: 400px;*/        /* Adjust this height as needed */
    object-fit: cover;    /* Maintains aspect ratio, crops if necessary */
    display: block;       /* Remove bottom gap */
}

.testimonial-section{
 /*padding: 100px 0;*/
}

/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 1000;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  animation: float 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
  background: linear-gradient(135deg, #128c7e, #075e54);
}

.whatsapp-btn i {
  color: white;
  font-size: 32px;
}

/* Tooltip */
.whatsapp-tooltip {
  position: absolute;
  right: -135px;
  background: #2c2461;
  color: white;
  padding: 8px 15px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 4px 15px rgba(44, 36, 97, 0.2);
  z-index: 2; /* Ensure tooltip is above typing indicator */
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: #2c2461;
}

.whatsapp-btn:hover .whatsapp-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* Pulse Animation */
.whatsapp-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(37, 211, 102, 0.4);
  border-radius: 50%;
  animation: pulse 2s infinite;
  z-index: -1;
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  70% {
    transform: scale(1.3);
    opacity: 0;
  }
  100% {
    transform: scale(1.3);
    opacity: 0;
  }
}

/* Notification Badge (Optional) */
.whatsapp-notification {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff3b30;
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 1s infinite alternate;
}

@keyframes bounce {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
  }

  .whatsapp-btn {
    width: 55px;
    height: 55px;
  }

  .whatsapp-btn i {
    font-size: 28px;
  }

  .whatsapp-tooltip {
    display: none; /* Hide tooltip on mobile */
  }

  /* Show tooltip on click for mobile */
  .whatsapp-btn.active .whatsapp-tooltip {
    display: block;
    opacity: 1;
    transform: translateX(0);
    right: 60px;
  }
}

@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 15px;
    left: 15px;
  }

  .whatsapp-btn {
    width: 50px;
    height: 50px;
  }

  .whatsapp-btn i {
    font-size: 26px;
  }
}

/* Optional: Add typing indicator for extra effect */
.typing-indicator {
  position: absolute;
  right: -155px; /* Moved further left to not overlap */
  top: -40px; /* Positioned above the tooltip */
  background: white;
  border-radius: 20px;
  padding: 8px 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: none;
  align-items: center;
  gap: 4px;
  z-index: 1; /* Below tooltip */
}

.typing-dot {
  width: 6px;
  height: 6px;
  background: #25d366;
  border-radius: 50%;
  animation: typing 1.4s infinite;
}

.typing-dot:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {
  0%,
  60%,
  100% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-8px);
  }
}

/* Show typing indicator on hover (optional) */
.whatsapp-btn:hover .typing-indicator {
  display: flex;
}

/* Alternative: Position typing indicator BELOW the tooltip */
.typing-indicator.below {
  right: -155px;
  top: auto;
  bottom: -40px; /* Position below the tooltip */
}

/* Alternative: Make typing indicator appear BEFORE tooltip with delay */
.whatsapp-btn:hover .typing-indicator {
  display: flex;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}