/* Floating Button Container */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

/* Common Button Style */
.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* WhatsApp Button */
.whatsapp {
  background-color: #25d366;
}

/* Call Button */
.call {
  background-color: #25d366;
}

/* Icon Style */
.float-btn img {
  width: 28px;
  height: 28px;
}

.strange{
  height:315px !important;
}

@media (max-width: 767px) {
  .strange {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
  }

  .strange iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
}

/* @media (max-width: 767px) {
  .strange>iframe {
    height: 100% !important; 
  }
}

.strange {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9; 
} */

/* .strange iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
} */
