.book-btn {
  margin-left: 20px;
  display: none;
}

.book-call-btn {
  background: #1357be;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  /* transition: background 0.3s; */
}

.book-call-btn:hover {
  background: #1357bea7;
  scale: calc(1.04);
}
.image-container {
  text-align: center; /* Center the image horizontally */
  margin-bottom: 30px; /* Add some space below the image */
}

.centered-img {
  max-width: 100%; /* Ensure the image doesn't overflow */
  height: auto; /* Maintain aspect ratio */
  display: inline-block; /* Allow the image to be treated as inline-block */
}

.hero-image {
  position: absolute;
  top: 15%;
  left: 50vh;
  z-index: 1;
  opacity: 50%;
}
@media (max-width: 900px) {
  .hero-image {
    top: 15%;
    left: 2%;
    max-width: 95%;
  }
  .book-btn {
    display: block;
  }
  .book-btn2 {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-image {
    top: 10vh;
    left: 2%;
    max-width: 100%;
  }
  .book-btn2 {
    display: none;
  }
}
/* === Call Button Styling (Mobile View) === */
.call-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #1357be;
  color: #fff;
  font-size: 16px;
  margin-right: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  flex-shrink: 0;
}

/* Hover and tap feedback */
.call-button:hover {
  background: #1357bea7;
  transform: scale(1.08);
}

/* Subtle pulsing ring animation to draw attention */
@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(19, 87, 190, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(19, 87, 190, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(19, 87, 190, 0);
  }
}

.call-button {
  animation: pulse-ring 2s infinite;
}

/* Align call button + link horizontally */

/* Optional: refine the mobile button spacing */
.book-btn .book-call-btn {
  background: #1357be;
  border-radius: 6px;
  padding: 10px 16px;
  color: #fff !important;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

.book-btn .book-call-btn:hover {
  background: #1357bea7;
  transform: translateY(-2px);
}
