/* Global Resets */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  color: #333;
}

a {
  text-decoration: none;
}

/* Custom Teal */
.bg-teal {
  background-color: #009688;
}

.navbar .nav-link {
  color: #fff;
  margin-right: 1rem;
}

.navbar .nav-link:hover {
  color: #ffc107;
}

/* HERO Section */

#heroCarousel {
  height: 100vh;
  overflow: hidden;
  position: relative;
}

#heroCarousel .carousel-item img {
  height: 100vh;
  object-fit: cover;
}

.overlay-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4); /* semi-transparent overlay */
  padding: 2rem;
}

.hero {
  background: url('../assets/hero-bg.jpg') no-repeat center center/cover;
  height: 480px;
  position: relative;
}

.hero .overlay {
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
}


.move-forward-banner {
  background: linear-gradient(to right, #009688, #00a29a);

  color: white;
}

.advantage-card {
  background-color: #f2f2f2;
  color: #000;
  border-radius: 12px;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 140px;
}

.advantage-card:hover {
  background-color: #e2e2e2;
  transform: translateY(-3px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.advantage-card p {
  font-size: 0.95rem;
  line-height: 1.5;
}


/* ABOUT CARDS */
.about-card-section .card {
  height: 100%;
  background-size: cover;
  background-position: center;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.about-card-section .card:hover {
  transform: translateY(-5px);
}

.about-card-section .card-body {
  color: #fff;
  font-size: 0.95rem;
  border-radius: 0 0 10px 10px;
}

/* CAROUSEL CARDS */
#therapyCarousel .carousel-inner {
  padding-bottom: 30px;
}

#therapyCarousel .card {
  border: none;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

#therapyCarousel .card:hover {
  transform: scale(1.02);
}

#therapyCarousel img {
  height: 180px;
  object-fit: cover;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}



/* --- Page Specific: Mobile Therapy Section --- */

.container h2,
.container h4,
.container h5 {
  font-weight: bold;
  line-height: 1.4;
}

.container p {
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

/* Optional: add a subtle background section */
section.container {
  background-color: #ffffff;
  border-radius: 8px;
  padding: 40px 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Override Bootstrap colors if needed */
.text-primary {
  color: #00796b !important; /* Dark Teal */
}

.text-success {
  color: #388e3c !important; /* Green */
}

.text-danger {
  color: #d32f2f !important; /* Red */
}

.text-teal {
  color: #009688;
}


video {
  border-radius: 10px;
}
ul {
  padding-left: 20px;
  line-height: 1.7;
}
li {
  margin-bottom: 10px;
}



img[usemap] {
  max-width: 100%;
  height: auto;
  border: 3px solid #ccc;
}


/* Custom Carousel Arrow Colors */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-image: none; /* Remove Bootstrap's white arrow image */
  width: 2.5rem;
  height: 2.5rem;
  background-color: #009688; /* Your teal color */
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23ffffff' viewBox='0 0 16 16'%3E%3Cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L6.707 7l4.647 4.646a.5.5 0 0 1-.708.708l-5-5a.5.5 0 0 1 0-.708l5-5a.5.5 0 0 1 .708 0z'/%3E%3C/svg%3E");
  mask-size: cover;
  mask-repeat: no-repeat;
}

/* For the right arrow */
.carousel-control-next-icon {
  transform: rotate(180deg);
}


.body-map-wrapper {
  max-width: 300px;
  position: relative;
}

.dot {
  position: absolute;
  width: 18px;
  height: 18px;
  background-color: #2f8f72;
  border: 3px solid white;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.dot:hover {
  transform: scale(1.2);
  box-shadow: 0 0 10px #2f8f72;
}

.dot::after {
  content: attr(data-label);
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  padding: 4px 8px;
  font-size: 12px;
  white-space: nowrap;
  border-radius: 5px;
  display: none;
  z-index: 10;
}

.dot:hover::after {
  display: block;
}


.about-section {
  background-color: #f9f9f9;
  padding: 4rem 1rem;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00796B;
  font-weight: bold;
  margin-bottom: 3rem;
}

.about-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.about-card {
  background-color: #fff;
  border-left: 5px solid #009688;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.about-card h4 {
  color: #009688;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.about-card p {
  line-height: 1.6;
}

.about-card a {
  color: #00796B;
  text-decoration: underline;
}

.about-card a:hover {
  color: #004D40;
}


.in-home-banner {
  background-color: #009688; /* or your custom teal */
  font-size: 1.1rem;
  font-weight: 600;
}



/* FOOTER */
.footer-gray {
  background-color: #f1f3f5; /* Light gray background */
  color: #212529;
  width: 100%;
  padding-top: 3rem;
  padding-bottom: 2rem;
}

.footer-link {
  color: #006e67;
  text-decoration: underline;
}

.footer-link:hover {
  color: #004f49;
  text-decoration: none;
}

.footer-map {
  max-width: 100%;
  height: auto;
  border: 1px solid #ccc;
  border-radius: 12px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.footer-map:hover {
  transform: scale(1.02);
}

.footer-divider {
  border-top: 1px solid #ced4da;
  margin-top: 2rem;
}

/* Contact line: icon + label + text inline */
.contact-line {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  line-height: 1.35;
  font-size: 1rem;
}

.contact-line i {
  margin-right: 8px;
}

.contact-line a {
  color: #006e67;
  text-decoration: underline;
}

/* Contact section layout */
.contact-section {
  margin-bottom: 108px; /* base spacing */
}

.contact-section + .contact-section {
  margin-top: 80px; /* extra space only for second section */
}

.contact-section h5 {
  margin-bottom: 12px;
}

.contact-section p {
  margin-bottom: 5px;
  line-height: 1.35;
  font-size: 1rem;
}

/* Responsive map alignment */
@media (max-width: 768px) {
  .text-md-end {
    text-align: center !important;
    margin-top: 20px;
  }

  .social-icons {
    text-align: center !important;
    margin-top: 1rem;
  }
}

/* Social Icons */
.social-icon {
  color: #006e67;
  transition: color 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  color: #004f49;
}

/* Align social icons right under map */
.social-icons {
  text-align: right;
  margin-top: 1.5rem;
}

/* Footer contact section container */
.footer-contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
}

/* Left: Contact info */
.footer-contact-info {
  flex: 1;
}

/* Right: Map */
.footer-map-wrapper {
  flex: 1;
  margin-top: 80px; /* Adjust this to move map lower */
}

/* Responsive fix for mobile */
@media (max-width: 768px) {
  .footer-contact-wrapper {
    flex-direction: column;
  }

  .footer-map-wrapper {
    margin-top: 20px;
  }
}

/* Copyright below icons (optional styling) */
.footer-gray .text-muted {
  font-size: 0.875rem;
  margin-top: 0.75rem;
}




.advantage-section {
  font-size: 1rem;
}

.advantage-heading {
  background-color: #009688; /* REPLACED GREEN with TEAL */
  color: #fff;
}

.bg-light-gray {
  background-color: #cccccc; /* Matches image background */
}

.advantage-section p {
  font-size: 1rem;
  line-height: 1.5;
}




.step-circle {
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  text-align: center;
  font-weight: bold;
  border-radius: 50%;
  font-size: 18px;
}
