/* 🌐 Global Styling */
body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: #f5f7fa;
  margin: 0;
  padding: 0;
}

/* 📦 Main Container */
.container {
  background: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 2rem auto;
  text-align: center;
}

/* 🧠 Title & Intro */
.title {
  color: #2d3748;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro {
  font-size: 1.2rem;
  font-weight: bold;
  color: #4a5568;
  margin-bottom: 1rem;
}

/* ✅ Service List */
.services {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
}

.services li {
  background: #edf2f7;
  margin: 0.4rem 0;
  padding: 0.6rem;
  border-radius: 8px;
  font-size: 1rem;
}

/* ✏️ Section Text */
.description,
.details,
.contact {
  font-size: 1rem;
  color: #4a5568;
  margin-bottom: 1rem;
}
.contact {
  font-weight: bold;
}

/* 🟢 Buttons */
.book_button,
.pricing,
.registration {
  font-size: 1.1rem;
  font-weight: 600;
  height: 50px;
  width: 140px;
  border: none;
  border-radius: 10px;
  color: white;
  background-color: #00b894;
  cursor: pointer;
  margin: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.book_button:hover,
.pricing:hover,
.registration:hovers {
  background-color: #01916d;
  transform: scale(1.05);
}

/* 💲 Pricing Cards */
.pricing-section {
  max-width: 800px;
  margin: auto;
}
.pricing-card {
  font-weight: bold;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin: 20px 0;
  padding: 20px;
}
.price {
  font-size: 1.5rem;
  color: #00b894;
  font-weight: bold;
}
ul {
  padding-left: 20px;
}
.note {
  font-style: italic;
  color: #666;
  font-size: 0.9rem;
}

/* 🔙 Back Button */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 1.2rem;
  font-weight: bold;
  padding: 10px 20px;
  color: #ffffff;
  background-color: #00b894;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-button:hover {
  background-color: #01916d;
  transform: scale(1.05);
}

/* 📅 Calendly Widget */
.calendly-inline-widget {
  width: 100%;
  height: 800px;
  max-width: 100%;
  margin-top: 5rem;
}

/* 🗓️ Badge Button Styling */
.calendly-badge-widget {
  height: 50px !important;
  width: 200px !important;
  font-size: 34px !important;
  /* padding: 20px 30px !important; */
  border-radius: 14px !important;
  font-weight: bold !important;
  background-color: #00b894 !important;
  color: #ffffff !important;
  text-align: center !important;
  box-shadow: 0 0 20px rgba(0, 184, 148, 0.7), 0 8px 20px rgba(0, 0, 0, 0.3) !important;
  animation: pulse 2s infinite !important;
  z-index: 9999 !important;
  border: none;
}

/* 💖 Pulse Animation */
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 184, 148, 0.7), 0 8px 20px rgba(0, 0, 0, 0.3);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(0, 184, 148, 1), 0 8px 25px rgba(0, 0, 0, 0.4);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 20px rgba(0, 184, 148, 0.7), 0 8px 20px rgba(0, 0, 0, 0.3);
  }
}

/* 📍 Positioning for Badge */
.calendly-badge-content {
  bottom: 30px !important;
  right: 40px !important;
}

/* 🖼️ Section Headers */
.booking-title {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-top: 6rem;
}
ph1,
slogan {
  margin: 10px;
}

/* 📱 Responsive Design */
@media (max-width: 768px) {
  .booking-title,
  .pricing-section {
    font-size: 1.5rem;
    margin-top: 4rem;
  }

  .back-button {
    font-size: 1rem;
    padding: 8px 16px;
  }

  .calendly-inline-widget {
    height: 850px;
  }
}
.button-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.button-single {
  text-align: center;
}

.pricing-section {
  padding: 2rem;
  background-color: #f9fafb;
  border-radius: 12px;
  max-width: 800px;
  margin: auto;
  text-align: center;
}

.pricing-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.pricing-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.table-container {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  min-width: 600px;
}

.pricing-table th,
.pricing-table td {
  padding: 12px;
  border: 1px solid #cbd5e0;
}

.pricing-table thead tr {
  background-color: #e2e8f0;
}

.note {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.book-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #4caf50;
  color: white;
  border-radius: 8px;
  font-size: 1.2rem;
  text-decoration: none;
}

.book-button:hover {
  background-color: #45a049;
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .pricing-section h2 {
    font-size: 1.5rem;
  }

  .pricing-section p,
  .note {
    font-size: 1rem;
  }

  .book-button {
    font-size: 1rem;
    padding: 0.5rem 1rem;
  }
}
