.contact-info {
  display: flex;
  align-items: center;
  height: 80px;
}

.icon-box {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130%;


}

.number-box {
  display: flex;
  align-items: center;
  height: 130%;

}

.bg-img {
  background-image: url('page4\ 1.jpg');


  background-size: cover;
  margin-top: 0;
  padding-top: 30px;
  background-position: center;
  position: relative;
  height: 100vh;

}


.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(242, 253, 251, .74);
}

.content {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

h2 {
  color: #2d698b;
  font-size: 50px;
  font-weight: bold;
}

.content p {
  color: #2d698b;
  font-size: large;
  line-height: 1.5;
  font-weight: lighter;
  font-size: 18px;
}

.btn-primary {
  background-color: #669f66;
  border-radius: 20px;
  padding: 10px 30px;

  margin-top: 30px;
}



.service-header {
  background-color: #4a4a4a;
  color: white;
  padding: 10px;
  font-weight: bold;
}

.service-item {
  padding: 10px;
  border-bottom: 1px solid #e0e0e0;
}

.btn-select {
  background-color: #28a745;
  color: white;
}

.btn-select:hover {
  background-color: #218838;
}


.booking-summary {
  position: absolute;

  right: 10%;
  z-index: 10;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.contact-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.contact-item img {
  width: 50px;
  /* Adjust icon size here */
  margin-bottom: 15px;
}

.contact-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}



footer {
  background-color: #000;
  color: #fff;
  padding: 20px 0;
}

footer a {
  color: #fff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .icon-box {
    display: none;
  }

  .number-box {
    display: none;
  }

  .navbar-toggler {
    margin-left: 40%;
  }

  .booking-summary {
    display: none;
  }
}