@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&family=Fenix&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Josefin+Sans:ital,wght@0,100..700;1,100..700&family=Lora:ital,wght@0,400..700;1,400..700&family=Mirza:wght@400;500;600;700&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nata+Sans:wght@100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0px;
  padding: 0px;
  font-family: "Fenix", serif !important;
}

/* index page--------------------------------------------------------------------------------------- */
/* HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url("./assets/resources/index/header-bg.webp") center/cover no-repeat;
  padding-top: 30px;
}

.overlay {
  position: absolute;
  inset: 0;
}

/* Navbar */
.hero-nav {
  position: relative;
  z-index: 2;
}

.logo {
  height: 80px;
}

.hero-nav {
  width: 100%;
}

/* Left & Right fixed */
.nav-left,
.nav-right {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
}

/* Center takes remaining space */
.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

/* Optional spacing */
.nav-right {
  gap: 20px;
}

.nav-pill {
  background: #fff;
  border-radius: 50px;
  padding: 10px 60px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.nav-pill a {
  margin: 0 20px;
  color: black;
  font-weight: 600;
  text-decoration: none;
}

.nav-pill a:hover {
  color: #4d8fac;
}

.nav-pill a.active {
  color: #4d8fac;
  font-weight: 700;
}

.book-btn {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #4d8fac;
  color: #fff;
  border: none;
  text-decoration: none;
}

.book-btn:hover {
  background-color: #30647a;
}

.navbar-toggler {
  border: none;
  background: transparent;
  font-size: 32px;
}

/* Mobile menu spacing */
@media (max-width: 991px) {
  .nav-pill a {
    display: block;
    margin: 15px 0;
  }
}

/* Content */
.hero-content {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  max-width: 480px;
  margin-top: 15px;
}

.btn-book {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #4d8fac;
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.btn-book:hover {
  background-color: #30647a;
}

.btn-services {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: #fff;
  color: #4d8fac;
  border: none;
  text-decoration: none;
}

.btn-services:hover {
  background-color: #c9c9c9;
}

/* Right Image */
.hero-image {
  border-radius: 25px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  max-width: 70%;
}

/* Responsive */
@media (max-width: 991px) {
  .hero-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 576px) {
  .hero-content {
    text-align: center;
  }

  .hero-content p {
    margin: auto;
  }
}

/* ----Our Services------------------------------------------------ */
.services-section {
  background-color: #fff;
}

.section-title {
  font-family: "Marcellus", serif;
  font-size: 36px;
  margin-bottom: 5px;
}

.section-subtitle {
  color: #777;
  font-size: 16px;
}

/* Card */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 25px 30px;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 8px;
  width: 100%;
  background-color: #4d8fac;
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-6px);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background-color: #4d8fac;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #fff;
  font-size: 28px;
}

.service-card h5 {
  font-family: "Marcellus", serif;
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* --Choose us---------------------------------------------------------------------------------- */
.choose-us-section {
  background-color: #f9fafb;
}

.choose-title {
  font-weight: 700;
  font-size: 2.2rem;
  color: #222;
}

.choose-item {
  align-items: flex-start;
}

.choose-icon {
  flex-shrink: 0;
  margin-right: 16px;
}

.choose-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.choose-content h5 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.choose-content p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0;
}

.choose-main-img {
  max-width: 90%;
}

/* 🔹 Tablet adjustments */
@media (max-width: 991px) {
  .choose-title {
    text-align: center;
  }

  .choose-item {
    justify-content: center;
  }

  .choose-content {
    text-align: left;
  }
}

/* 🔹 Mobile adjustments */
@media (max-width: 576px) {
  .choose-item {
    flex-direction: column;
    text-align: center;
  }

  .choose-icon {
    margin-bottom: 10px;
    margin-right: 0;
  }

  .choose-main-img {
    margin-top: 20px;
  }
}

/* ---Founder------------------------------------------------------------------------------------- */
.founder-section {
  background-color: #ffffff;
}

.founder-img {
  max-width: 85%;
  border-radius: 12px;
}

/* Text styles */
.founder-subtitle {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #1c7c7c;
  margin-bottom: 8px;
  background-color: #f8f522;
  padding: 8px;
  border-radius: 20px;
}

.founder-name {
  font-size: 2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
}

.founder-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .founder-name {
    font-size: 1.8rem;
  }

  .founder-img {
    max-width: 75%;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .founder-section {
    text-align: center;
  }

  .founder-img {
    max-width: 70%;
    margin-bottom: 20px;
  }

  .founder-description {
    text-align: left;
  }
}

/* --Ready to start----------------------------------------------------------------------- */
.cta-section {
  background-color: #4f8fa8;
  /* teal-blue tone */
  color: #ffffff;
}

.cta-title {
  font-size: 2rem;
  font-weight: 600;
}

.cta-subtitle {
  font-size: 0.95rem;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.95;
}

.cta-btn {
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta-info h6 {
  margin-top: 10px;
  font-size: 0.95rem;
  font-weight: 600;
}

.cta-info p {
  font-size: 0.9rem;
  margin-bottom: 0;
  opacity: 0.95;
}

.cta-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
  display: inline-block;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .cta-title {
    font-size: 1.8rem;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .cta-title {
    font-size: 1.5rem;
  }

  .cta-subtitle {
    font-size: 0.9rem;
  }

  .cta-info {
    margin-bottom: 10px;
  }
}

/* --FAQ Section------------------------------------------------------------------------------- */
/* Section tag */
.section-tag {
  font-size: 13px;
  color: #5a8fa8;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag .dot {
  width: 8px;
  height: 8px;
  background: #5a8fa8;
  border-radius: 50%;
}

/* Accordion */
/* Base accordion item */
.faq-accordion .accordion-item {
  background: #fff;
  color: #222;
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* Question button */
.faq-accordion .accordion-button {
  background: transparent;
  color: #222;
  font-weight: 500;
  box-shadow: none;
}

/* REMOVE Bootstrap blue focus */
.faq-accordion .accordion-button:focus {
  box-shadow: none;
}

/* OPEN (ACTIVE) FAQ */
.faq-accordion .accordion-item:has(.accordion-collapse.show) {
  background: #5a8fa8;
  color: #fff;
}

/* OPEN question text */
.faq-accordion .accordion-item:has(.accordion-collapse.show) .accordion-button {
  color: #080808;
}

/* Answer text */
.faq-accordion .accordion-body {
  font-size: 14px;
  line-height: 1.6;
}

/* Image */
.faq-image-wrapper {
  position: relative;
  display: inline-block;
}

.faq-img {
  border-radius: 24px;
  max-width: 100%;
}

/* Background shape behind image */
.faq-image-wrapper::before {
  content: "";
  position: absolute;
  top: -10px;
  right: -20px;
  width: 80%;
  height: 80%;
  background: #5a8fa8;
  border-radius: 24px;
  z-index: -1;
}

/* Responsive */
@media (max-width: 991px) {
  .faq-image-wrapper::before {
    display: none;
  }
}

/* --Review section------------------------------------------------------------------------------- */
.testimonials {
  background: #ffffff;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 16px;
  padding: 24px;
  transition: 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.stars {
  color: #ffc107;
  font-size: 18px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 15px;
  color: #555;
  margin-top: 10px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.text-pink {
  color: #ff4f8b;
  font-size: 13px;
}

.rating-badge {
  display: inline-block;
  background: #5a93a5;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 14px;
}

/* ----Footer---------------------------------------------------------------------------------------- */
.footer-section {
  background: linear-gradient(180deg, #0f1b2d, #0b1422);
  color: #ffffff;
}

.footer-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.footer-text {
  font-size: 0.9rem;
  color: #cfd6df;
  max-width: 350px;
}

.footer-heading {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  font-size: 0.88rem;
  color: #cfd6df;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  font-size: 0.85rem;
  color: #cfd6df;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .footer-title {
    font-size: 1.1rem;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .footer-section {
    text-align: center;
  }

  .footer-text {
    margin: 0 auto;
  }

  .footer-links {
    text-align: center;
  }
}

.footer-section {
  background: #0f172a;
  color: #cbd5e1;
}

.footer-title {
  color: #fff;
  font-weight: 600;
}

.footer-heading {
  color: #fff;
  margin-bottom: 1rem;
  font-weight: 500;
}

.footer-text {
  font-size: 14px;
  line-height: 1.7;
}

.footer-links,
.footer-contact {
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 10px;
  font-size: 14px;
}

.footer-links a,
.footer-contact a {
  color: #cbd5e1;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #f2f5f3;
}

.footer-contact i {
  margin-right: 8px;
  color: #f1f7f3;
}

.footer-bottom {
  background: #020617;
  font-size: 14px;
}

.footer-social a {
  color: #cbd5e1;
  font-size: 18px;
  margin-left: 12px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #c1c4c2;
}

/* -About us page----------------------------------------------------------------------------- */
/* Banner */
.page-header {
  background-color: #9ec4d3;
  /* soft blue */
  padding: 70px 0;
}

.page-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.page-breadcrumb {
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
}

.page-breadcrumb span {
  margin: 0 6px;
}

.page-breadcrumb .active {
  color: #2e6f8e;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .page-title {
    font-size: 2rem;
  }

  .page-header {
    padding: 60px 0;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .page-title {
    font-size: 1.7rem;
  }

  .page-header {
    padding: 50px 0;
  }

  .page-breadcrumb {
    font-size: 0.9rem;
  }
}

/* ---about us--------------------------------------------------------------------------------------- */
.about-story-section {
  background-color: #ffffff;
}

.about-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  color: #222;
}

.about-subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.about-text {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-img {
  max-width: 90%;
  border-radius: 12px;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .about-main-title {
    font-size: 2rem;
  }

  .about-subtitle {
    font-size: 1.4rem;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .about-story-section {
    text-align: center;
  }

  .about-text {
    text-align: left;
  }

  .about-img {
    margin-top: 20px;
  }
}

/* -- vision & mission------------------------------------------------------------------------ -- */
.vision-mission-section {
  background-color: #f8f9fb;
}

/* Card */
.vm-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Icon */
.vm-icon {
  width: 52px;
  height: 52px;
  background-color: #4f8fa8;
  color: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

/* Content */
.vm-content h4 {
  font-weight: 600;
  margin-bottom: 10px;
}

.vm-content p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Mission list */
.mission-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 10px;
  line-height: 1.6;
}

.mission-list i {
  color: #28a745;
  margin-top: 3px;
  font-size: 1rem;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .vm-card {
    padding: 20px;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .vm-card {
    flex-direction: column;
  }

  .vm-icon {
    margin-bottom: 10px;
  }
}

/* ----Meet our founder---------------------------------------------------------------------------- */
.founder-profile-section {
  background-color: #ffffff;
}

.founder-main-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.founder-main-subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  color: #4f8fa8;
  letter-spacing: 1px;
}

.founder-profile-img {
  max-width: 85%;
  border-radius: 16px;
}

/* Right content */
.founder-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.founder-qualification {
  font-size: 1rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
}

.founder-role {
  font-size: 0.9rem;
  font-weight: 600;
  color: #4f8fa8;
  margin-bottom: 14px;
}

.founder-description {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .founder-main-title {
    font-size: 2rem;
  }

  .founder-profile-img {
    max-width: 75%;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .founder-profile-section {
    text-align: center;
  }

  .founder-description {
    text-align: left;
  }

  .founder-profile-img {
    margin-bottom: 20px;
  }
}

/* --Icon section------------------------------------------------------------------------ */
.founder-highlights {
  background-color: #ffffff;
}

.highlight-item {
  padding: 20px;
}

.highlight-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background-color: #cfe0ea;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.highlight-icon i {
  font-size: 1.4rem;
  color: #4f8fa8;
}

.highlight-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #222;
}

.highlight-text {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 0;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .highlight-icon {
    width: 52px;
    height: 52px;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .highlight-item {
    padding: 10px 0;
  }

  .highlight-text {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* --Our Team section------------------------------------------------------------------------ */
.team-section {
  background: #fff;
}

.team-card {
  padding: 20px;
  border-radius: 16px;
}

.team-card img {
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 20px;
  margin-bottom: 15px;
}

.team-card h6 {
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.4;
}

/* Mobile tweaks */
@media (max-width: 576px) {
  .team-card img {
    width: 120px;
    height: 120px;
  }
}

/* -- Our treatment------------------------------------------------------------------------ -- */
.treatment-philosophy-section {
  background-color: #ffffff;
}

.philosophy-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.philosophy-text {
  font-size: 1 rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 14px;
}

/* Cards */
.philosophy-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  height: 100%;
}

.card-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  background-color: #4f8fa8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon i {
  font-size: 1.4rem;
  color: #ffffff;
}

.philosophy-card h5 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.philosophy-card p {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.6;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .philosophy-title {
    font-size: 2rem;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .philosophy-title {
    font-size: 1.7rem;
  }

  .philosophy-text {
    text-align: left;
  }

  .philosophy-card {
    padding: 24px 18px;
  }
}

/* -- Certificate------------------------------------------------------------------------ -- */
.certificate-section {
  background-color: #ffffff;
}

/* Card */
.certificate-card {
  background-color: #eaf6fa;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  align-items: flex-start;
}

/* Icon */
.certificate-icon {
  width: 48px;
  height: 48px;
  background-color: #eaf6fa;
  /* same blue as other sections */
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f8fa8;
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* Content */
.certificate-content h5 {
  font-weight: 600;
  margin-bottom: 12px;
}

/* List */
.certificate-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.certificate-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.certificate-list i {
  color: #2db34a;
  margin-top: 3px;
  font-size: 1rem;
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .certificate-card {
    flex-direction: column;
  }
}

/* --Book Consulting page-------------------------------------------------------------------------- */
/* --Book appointment-- */
.appointment-title {
  font-size: 2.2rem;
  font-weight: 700;
}

.appointment-subtitle {
  color: #777;
  font-size: 0.95rem;
}

.appointment-img {
  width: 100%;
  height: 580px;
  object-fit: cover;
  border-radius: 16px;
}

/* Tablet */
@media (max-width: 991px) {
  .appointment-img {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .appointment-img {
    height: 280px;
  }
}

.opening-hours {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(79, 143, 168, 0.9);
  color: #fff;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.85rem;
}

/* Form */
.appointment-form .form-label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-control,
.form-select {
  border-radius: 8px;
  padding: 10px;
}

/* Button */
.send-btn {
  background-color: #4f8fa8 !important;
  color: #fff !important;
  padding: 10px 26px;
  border-radius: 8px;
  font-weight: 500;
}

.send-btn:hover {
  background-color: #3c7488 !important;
  color: #fff;
}

/* Mobile */
@media (max-width: 576px) {
  .appointment-title {
    font-size: 1.8rem;
  }

  .opening-hours {
    font-size: 0.75rem;
  }
}

/* ----- Expect -------------------------------------------------------------------------- */
.expect-section {
  background-color: #ffffff;
}

/* Card */
.expect-card {
  background-color: #eaf6fa;
  border-radius: 18px;
  padding: 30px 28px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.expect-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
}

/* Item */
.expect-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.expect-item {
  justify-content: center;
}

.check-icon {
  font-size: 1.1rem;
  font-weight: 700;
  color: #000;
  margin-top: 2px;
}

/* Text */
.expect-item h6 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.expect-item p {
  font-size: 0.85rem;
  color: #555;
  margin-bottom: 0;
  line-height: 1.5;
}

/* 🔹 Tablet */
@media (max-width: 991px) {
  .expect-card {
    padding: 26px 22px;
  }
}

/* 🔹 Mobile */
@media (max-width: 576px) {
  .expect-title {
    font-size: 1.4rem;
  }

  .expect-item {
    gap: 10px;
  }
}

/* ---- article page----------------------------------------------------------------------------------  */

.article-banner {
  background-color: #9ec3d2;
  padding: 110px 0;
}

.article-banner h1 {
  font-size: 50px;
  font-weight: 1000;
}

.small-text {
  font-size: 20px;
  font-weight: 500;
}

.small-text a {
  color: #ffffff;
  text-decoration: none;
}

.small-text span {
  color: #3b7f97;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .article-banner {
    padding: 80px 0;
  }

  .article-banner h1 {
    font-size: 34px;
  }
}

/* blogs */
.blog-intro {
  padding: 80px 15px;
  text-align: center;
  background-color: #ffffff;
}

.blog-title {
  font-family: "Marcellus", serif;
  font-size: 42px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 25px;
}

.blog-description {
  font-family: "Marcellus", serif;
  font-size: 22px;
  line-height: 1.7;
  color: #777777;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .blog-title {
    font-size: 30px;
  }

  .blog-description {
    font-size: 18px;
  }
}

/* --------------------article cards */

.articlecard-section {
  display: flex;
  gap: 25px;
  padding: 40px;
}

/* Card */
.articlecard-card {
  background: #ffffff;
  width: 33%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Image */
.articlecard-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Content */
.articlecard-content {
  padding: 20px;
}

/* Date */
.date {
  color: #777;
  font-size: 14px;
  margin-bottom: 10px;
}

/* Title */
.articlecard-content h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Paragraph */
.articlecard-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

.articlecard-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
}

.articlecard-bottom a {
  text-decoration: none;
  color: #3b7f97;
  font-size: 14px;
}

.articlecard-bottom span {
  font-size: 14px;
  color: #3b7f97;
}

.articlecard-bottom i {
  margin-left: 4px;
  font-size: 13px;
}

/* Mobile */
@media (max-width: 768px) {
  .articlecard-section {
    flex-direction: column;
  }

  .articlecard-card {
    width: 100%;
  }
}

/* advice page */
.advice-banner {
  background-color: #eaf6fa;
  padding: 50px 30px;
  margin: 40px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.advice-banner h2 {
  font-size: 30px;
  font-weight: normal;
  margin-bottom: 20px;
}

.main-text {
  font-size: 18px;
  margin-bottom: 12px;
}

.sub-text {
  font-size: 16px;
  color: #555;
}

/* ----contact  pages----------------------------------------------------------------------------------------  */

.contact-banner {
  background-color: #9ec3d2;
  padding: 110px 0;
}

.contact-banner h1 {
  font-size: 50px;
  font-weight: 1000;
}

.small-text {
  font-size: 20px;
  font-weight: 500;
}

.small-text a {
  color: #ffffff;
  text-decoration: none;
}

.small-text span {
  color: #3b7f97;
  margin-left: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-banner {
    padding: 80px 0;
  }

  .contact-banner h1 {
    font-size: 34px;
  }
}

/* contact us */
.contactus-intro {
  padding: 80px 15px;
  text-align: center;
  background-color: #ffffff;
}

.contactus-title {
  font-family: "Marcellus", serif;
  font-size: 42px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 25px;
}

.contactus-description {
  font-family: "Marcellus", serif;
  font-size: 22px;
  line-height: 1.7;
  color: #777777;
  max-width: 900px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contactus-title {
    font-size: 30px;
  }

  .contactus-description {
    font-size: 18px;
  }
}

/* help section */
.contact-help {
  padding: 50px 20px;
}

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-left h2 {
  color: #777;
  font-weight: normal;
  margin-bottom: 20px;
}

.contact-left img {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* RIGHT */
.contact-right {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

/* CARD */
.contact-card {
  background: #4f8ea8;
  color: white;
  padding: 30px;
  border-radius: 20px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-card i {
  font-size: 22px;
  margin-bottom: 12px;
}

.contact-card h4 {
  margin-bottom: 10px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

@media (max-width: 576px) {
  .contact-right {
    grid-template-columns: 1fr;
  }

  .contact-left h2 {
    text-align: center;
  }
}

/* -----------------location */
.location {
  padding: 40px;
  color: white;
}

/* BIG BOX */
.location-box {
  display: flex;
  background: #4f8ea8;
  border-radius: 25px;
  overflow: hidden;
}

/* LEFT FORM */
.location-form {
  width: 50%;
  padding: 40px;
  color: #000;
}

.location-form h2 {
  font-weight: normal;
  margin-bottom: 25px;
}

/* INPUT ROWS */
.input-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.location-form input,
.location-form textarea {
  width: 100%;
  padding: 15px;
  border-radius: 20px;
  border: none;
  outline: none;
}

.location-form textarea {
  height: 120px;
  resize: none;
  margin-bottom: 20px;
}

/* BUTTON */
.location-form button {
  width: 100%;
  padding: 15px;
  background: #cfe9f3;
  border: none;
  border-radius: 20px;
  font-size: 16px;
  cursor: pointer;
}

/* RIGHT MAP */
.location-map {
  width: 50%;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  z-index: 1;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
  }

  .location-form,
  .location-map {
    width: 100%;
  }

  .location-map iframe {
    height: 300px;
  }

  .input-row {
    flex-direction: column;
  }
}

/* --Services Page------------------------------------------------------------- */
.services-section {
  background: #fff;
}

.service-card {
  border: 1.5px solid #bcd6e3;
  border-radius: 16px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
}

.service-img {
  border-radius: 14px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h5 {
  margin-bottom: 10px;
}

.service-card p {
  color: #555;
  font-size: 14.5px;
}

.service-card .btn {
  background: #4f8fa5;
  border: none;
  padding: 6px 14px;
  border-radius: 8px;
}

.service-card .btn:hover {
  background: #3c768a;
}

/* --Our Treatment process--------------- */
.treatment-process {
  background: #fff;
}

.process-wrapper {
  background: #b7dce9;
  padding: 40px 20px;
  border-radius: 25px;
  position: relative;
}

/* horizontal line */
.process-row {
  position: relative;
}

.process-row::before {
  content: "";
  position: absolute;
  top: 50px;
  left: 6%;
  right: 6%;
  height: 8px;
  background: #7fb6c8;
  z-index: 0;
}

/* step */
.process-step {
  position: relative;
  z-index: 1;
}

.process-circle {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  padding: 5px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.process-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.process-step h6 {
  font-weight: 600;
  margin-top: 10px;
}

/* ================== Responsive ================== */
@media (max-width: 767px) {
  .process-row {
    flex-direction: column;
  }

  .process-row::before {
    top: 0;
    bottom: 0;
    left: 50%;
    width: 6px;
    height: 80%;
    transform: translateX(-50%);
  }

  .process-step {
    margin-bottom: 30px;
  }
}

/* --------What we do------------ */
/* SECTION TAG */
.section-tag {
  font-size: 20px;
  color: #5a8fa8;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-tag .dot {
  width: 10px;
  height: 10px;
  background: #5a8fa8;
  border-radius: 50%;
}

/* RIGHT IMAGE */
.what-we-do-img {
  max-width: 60%;
  border-radius: 20px;
}

/* CTA CARD */
.cta-card {
  background: #eaf6fa;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-card .btn {
  background: #5a8fa8;
  border: none;
  padding: 10px 24px;
  border-radius: 10px;
}

.cta-card .btn:hover {
  background: #47778d;
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .what-we-do-img {
    margin-top: 20px;
  }
}

/* --Wellness and rehabilation page--------------------------------------------------------------- */
.wellness-packages {
  background: #fff;
}

/* Card */
.package-card {
  border: 1.5px solid #bcd6e3;
  border-radius: 18px;
  padding: 24px;
  background: #fff;
}

/* Program details icons */
.icon-box {
  width: 34px;
  height: 34px;
  background: #e6f3f8;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

/* Image */
.image-box {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.icon-box i {
  font-size: 20px;
  color: #416779;
}

.image-overlay i {
  font-size: 16px;
  color: #fff;
}

/* Overlay */
.image-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.01);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
  font-size: 16px;
  text-align: center;
}

/* Buttons */
.package-card .btn {
  background: #5a8fa8;
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
}

.package-card .btn:hover {
  background: #47778d;
}

/* Responsive */
@media (max-width: 767px) {
  .image-box img {
    height: 220px;
  }
}

/* -WhatsApp Floating Button----------------------------------------------------------------------- */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  z-index: 99999 !important;

  /* Animation */
  animation: whatsapp-pulse 1.8s infinite ease-in-out;
}

/* Pulse effect */
@keyframes whatsapp-pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  }

  50% {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(37, 211, 102, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* Hover stops animation */
.whatsapp-float:hover {
  animation-play-state: paused;
  background-color: #05f866;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 50px;
  }
}

@keyframes whatsapp-bounce {
  0% {
    transform: translateY(100px);
    opacity: 0;
  }

  60% {
    transform: translateY(-10px);
  }

  80% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

.whatsapp-float {
  animation:
    whatsapp-bounce 0.8s ease-out,
    whatsapp-pulse 1.8s infinite ease-in-out 0.8s;
}


/* ================= LAYOUT ================= */
.blog-layout {
  display: flex;
  gap: 20px;
  padding: 0 20px;

}

.blog-left {
  width: 68%;

}

.blog-right {
  width: 32%;
}

/* ================= IMAGE ================= */
.blog-main-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  animation: zoomFade 1s ease;
}

@keyframes zoomFade {
  from {
    opacity: 0;
    transform: scale(1.08);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ================= LEFT CONTENT ================= */
.blog-content {
  padding: 30px 20px;
  margin-top: 25px;
  background: #ffffff;
  border-radius: 14px;
  animation: slideFadeLeft 1s ease;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  animation: slideRight 1s ease;
}

@keyframes slideFadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.blog-text p {
  line-height: 1.7;
  font-size: 15px;
  margin-bottom: 12px;
}

/* ================= TEXT ANIMATION ================= */
.blog-text p,
.blog-text h4,
.blog-text ul {
  opacity: 0;
  animation: textFadeUp 0.7s ease forwards;
}

.blog-text p:nth-of-type(1) {
  animation-delay: 0.2s;
}

.blog-text p:nth-of-type(2) {
  animation-delay: 0.4s;
}

.blog-text h4 {
  animation-delay: 0.6s;
}

.blog-text ul {
  animation-delay: 0.8s;
}

.blog-text p:last-of-type {
  animation-delay: 1s;
}

@keyframes textFadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= RIGHT STICKY CARD ================= */
.sticky-card {
  position: sticky;
  top: 20px;
  margin-top: 25px;
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  animation: slideRight 1s ease;
}

@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.sticky-card h5 {
  font-size: 16px;
  margin-bottom: 10px;
}

.mini-card {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
}

.mini-card img {
  width: 55px;
  height: 45px;
  object-fit: cover;
  border-radius: 6px;
}

.mini-card h6 {
  font-size: 13px;
  margin: 0;
}

.mini-card a {
  font-size: 12px;
  text-decoration: none;
  color: #4d8fac;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .blog-layout {
    flex-direction: column;
  }

  .blog-left,
  .blog-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .blog-main-img {
    height: 220px;
  }
}

/* ===== BLOG HEADER ===== */
/* BLOG HEADER ALIGN */
.blog-header {
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

/* TITLE CENTER */
.blog-page-title {
  font-size: 26px;
  font-weight: 600;
  margin: 0;
}

/* BACK BUTTON LEFT */
.back-link {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #4d8fac;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  text-decoration: underline;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .blog-header {
    text-align: left;
  }

  .back-link {
    position: static;
    transform: none;
    margin-bottom: 8px;
    display: inline-flex;
  }

  .blog-page-title {
    text-align: center;
    font-size: 22px;
  }
}


/* Animation */
@keyframes headerFade {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* LEFT CARD FOOTER */
.left-card-footer {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e6e6e6;
  text-align: right;

}

/* BACK BUTTON */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  background-color: #4d8fac;
  color: #ffffff;

  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;

  border-radius: 8px;
  text-decoration: none;

  transition: background 0.3s ease, transform 0.2s ease;
}

.back-btn:hover {
  background-color: #3b7498;
  color: #ffffff;
  transform: translateX(-3px);
}

.back-btn i {
  font-size: 14px;
}
/* IFRAME CONTAINER */
.iframe-wrapper {
  margin: 10px 0;          
  padding: 10px;               
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* IFRAME */
.iframe-wrapper iframe {
  border: none;
  width: 100%;
  min-height: 400px;          
  border-radius: 10px;
  display: block;
}
@media (max-width: 576px) {
  .iframe-wrapper {
    margin: 8px 0;
    padding: 6px;
  }

  .iframe-wrapper iframe {
    min-height: 820px;
  }
}
