.top-bar {
  font-size: 0.9rem;
}
.top-bar a:hover {
  color: white;
  text-decoration: underline;
}

body {
  padding-top: 140px; /* Adjust according to combined height */
}

.bi {
  color: #0091c5;
}




/* Navbar */
.navbar {
  padding: 10px 0;
}
.navbar-brand span {
  color: #0091c5;
  font-size: 1.2rem;
}
.navbar-nav .nav-link {
  font-weight: 500;
  padding: 8px 15px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #0091c5;
}

body {
  padding-top: 70px;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0,0,0,0.4)), url('https://source.unsplash.com/1600x600/?nature,wellness') center/cover no-repeat;
  color: #fff;
  /* padding: 120px 0; */
  text-align: center;
}
.hero h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.hero .btn:hover {
  transform: scale(1.05);
}

.hero img {
  height: 650px;
  object-fit: cover;
}

.carousel-caption {
  background: rgba(0,0,0,0.4);
  padding: 15px;
  border-radius: 8px;
}

.carousel-caption h1 {
  font-size: 2rem;
  font-weight: bold;
}

.carousel-caption p {
  font-size: 1.1rem;
}


.about-img {
  max-width: 350px;
  border-radius: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.about h2 {
  font-weight: bold;
  margin-bottom: 15px;
}

.about p {
  font-size: 1.05rem;
  line-height: 1.7;
}



.promo-banner {
  position: relative;
  background: url('img/hero_banner_7.png') center/cover no-repeat;
  height: 300px;
  margin: 40px 0;
  border-radius: 10px;
  overflow: hidden;
}

.promo-banner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.promo-banner .content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.promo-banner h2 {
  font-size: 2rem;
}

.promo-banner p {
  font-size: 1.2rem;
}

.promo-banner .btn {
  font-weight: bold;
  padding: 10px 20px;
}




/* Treatments */
.treatment-card {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.treatment-card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.treatment-card img {
  height: 220px;
  object-fit: cover;
}

.treatment-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.treatment-card .btn {
  margin-top: 10px;
  transition: background-color 0.3s ease;
}

.treatment-card .btn:hover {
  background-color: #5ea132;
}



/* Testimonials */
.testimonial-img {
  width: 90px;
  height: 90px;
  object-fit: cover;
  border: 3px solid black;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.stars {
  font-size: 1.3rem;
  color: #ffc107;
  margin-top: 8px;
}

/* Map Responsive */
.map-responsive {
  overflow: hidden;
  border-radius: 12px;
}

.map-responsive iframe {
  width: 100%;
  height: 350px;
  display: block;
}



/* Footer */
.footer {
  margin-top: 50px;
}

.footer h4, .footer h5 {
  color: #fff;
}

.footer p {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-link {
  color: #ddd;
  text-decoration: none;
  display: block;
  margin: 5px 0;
  transition: color 0.3s ease;
}

.footer-link:hover {
  color: #0091c5;
}

/* Copyright section */
.copyright {
  font-size: 0.85rem;
  letter-spacing: 0.5px;
}


.btn {
  background-color: #0091c5;
}

.btn:hover {
  background-color: #5ea132;
}

