/* Hero Styling */
.booking-hero {
  background: url('images/aboutus bg.jpg') no-repeat center center/cover;
  height: 50vh;
  position: relative;
}
.booking-hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.6);
}
.booking-hero .container {
  position: relative;
  z-index: 2;
}

/* Calendly Widget Wrapper */
.calendly-wrapper {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.calendly-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}
.back-btn {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 1000;

  border-radius: 30px;
  padding: 8px 18px;
  font-weight: 500;
  transition: all 0.3s ease;

  background: #292828;
  border: 2px solid #0d6efd;
  color: #0d6efd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-btn:hover {
  background-color: #0d6efd;
  color: #fff;
  transform: translateX(-3px);
}
