/* Main container styling */
.contact-section {
  padding: 50px 0;
}

.contact-title {
  text-align: center;
  margin-bottom: 30px;
}

.contact-title h2 {
  font-size: 36px;
  /* font-weight: bold; */
}

.contact-title p {
  font-size: 16px;
  color: #6c757d;
}

/* Left-side contact information styling */
.contact-info {
  background-color: #23aaa6;
  color: white;
  border-radius: 10px;
  padding: 40px;
  height: 100%;
}

.contact-info p,
.contact-info a {
  font-size: 14px;
  color: white;
}

.contact-info a:hover {
  color: #ffd700;
  text-decoration: none;
}

.contact-info i {
  margin-right: 10px;
}

/* Form styling */
.contact-form {
  background-color: white;
  padding: 20px 30px;
  border-radius: 10px;
}

.form-control {
  border: none;
  border-bottom: 2px solid #000;
  border-radius: 0;
  margin-bottom: 20px;
  padding: 5px 0;
  font-size: 16px;
}

.form-control:focus {
  box-shadow: none;
  border-bottom-color: #ffa500;
  outline: none;
}

input::placeholder,
textarea::placeholder {
  color: #ccc;
  font-style: italic;
}

textarea {
  border: none;
  border-bottom: 2px solid #000;
  padding: 5px 0;
  font-size: 16px;
  resize: none;
}

h6 {
  margin-bottom: 10px;
}

.form-check-inline {
  margin-right: 15px;
}

.btn-submit {
  background-color: #d89834;
  color: white;
  font-weight: bold;
  padding: 10px 30px;
  border-radius: 30px;
  border: none;
  transition: background-color 0.3s;
}

.btn-submit:hover {
  background-color: #d89834;
  color: white;
}

input[type="radio"]:checked + label {
  color: #23aaa6;
}

.form-check-input[type="checkbox"] {
  border-radius: 1em !important;
}

/* Footer bottom */

/* Center align content on smaller screens */
@media (max-width: 768px) {
}
.book-now-btn {
  background-color: #e39600;
  color: white;
  /* font-weight: bold; */
  padding: 10px 20px;
  border-radius: 30px;
}

.book-now-btn:hover {
  background-color: #e39600;
}
/* nav bar end */
.hero-section {
  background-image: url("./assets/Mask-group.svg"); /* Use your image path here */
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: white;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* Overlay with some transparency */
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 200px;
  text-align: center;
}

.hero-content h1 {
  font-size: 40px;
  font-weight: bold;
}

.hero-content .search-container {
  margin-top: 30px;
}

.search-input {
  border-radius: 30px;
  padding: 10px 20px;
}

.search-container .search-wrapper {
  display: flex;
  align-items: flex-start;
  background: white;
  border-radius: 40px;
  /* padding: 20px; */
  box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.search-container .search-item {
  margin-top: 6px;
}

.search-container label {
  display: block;
  /* margin-bottom: 5px; */
  /* font-weight: bold; */
  font-size: 10px;
  color: #333;
  text-align: justify;
  margin-left: 29px;
}

.search-container input {
  border: none;
  /* padding: 10px; */
  border-radius: 30px;
  outline: none;
  width: 100%;
  margin-left: 18px;
}

.search-container input:focus {
  box-shadow: none;
}

.search-container .btn-search {
  background-color: #00bfa5;
  color: white;
  padding: 5px 20px;
  border-radius: 30px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 14px;
  margin-bottom: 14px;
  margin-right: 10px;
}

.search-container .btn-search i {
  margin-left: 5px;
}
.form-check-input:checked {
  background-color: #23aaa6 !important;
  border-color: #23aaa6 !important;
}
