/* ==========================
   Holistic Evolution Styles
   ========================== */

:root {
  --primary-color: #2c9c92;      /* sea green */
  --primary-soft: #e0f4f2;       /* very light sea green */
  --accent-color: #b58ad6;       /* lavender */
  --dark-text: #234041;
  --light-text: #fdfdfd;
  --section-padding: 4rem;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark-text);
  background-color: #f7faf9;
}

/* Navbar */
.navbar {
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
}

.navbar-brand {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.navbar-brand img {
  height: 52px;
}

/* Hero / Carousel */
.hero-carousel .carousel-item {
  min-height: 80vh;
  color: var(--light-text);
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.6);
  z-index: 1;
}
  
.hero-heading {
  color: var(--light-text);
}

.hero-subheading {
  color: var(--light-text);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 6rem 1rem;
}

.hero-heading {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
   text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

.hero-subheading {
  font-size: 1.1rem;
  max-width: 640px;
   text-shadow: 0 3px 5px rgba(0, 0, 0, 0.6);
}

/* Background images for slides */
.hero-slide-1 {
  background-image: url("../images/hero1.jpg");
}

.hero-slide-2 {
  background-image: url("../images/hero2.jpg");
}

.hero-slide-3 {
  background-image: url("../images/hero3.jpg");
}


.hero-carousel .carousel-item {
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

/* CTA buttons */
.btn-primary-soft {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
}

.btn-primary-soft:hover {
  background-color: #227870;
  border-color: #227870;
}

.btn-outline-light-soft {
  border-color: #fdfdfd;
  color: #fdfdfd;
}

.btn-outline-light-soft:hover {
  background-color: #fdfdfd;
  color: var(--primary-color);
}

/* Sections */
.section {
  padding: var(--section-padding) 0;
}

.section-light {
  background-color: #ffffff;
}

.section-soft {
  background-color: var(--primary-soft);
}

.section-heading {
  text-align: center;
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-subheading {
  text-align: center;
  margin-bottom: 2.5rem;
  color: #607d7d;
}

/* Cards */
.service-card {
  border: none;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.08);
}

/* Testimonials */
.testimonial-card {
  border-radius: 1rem;
  border: none;
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(0,0,0,0.06);
}

.testimonial-name {
  font-weight: 600;
}

/* Book a Session form */
.book-form {
  border-radius: 1rem;
  background: #ffffff;
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  padding: 2rem;
}

/* Footer */
footer {
  padding: 2rem 0;
  background-color: #123735;
  color: #cfe6e4;
}

footer a {
  color: #e3d2ff;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Utility spacing tweaks */
.mt-6 {
  margin-top: 4rem;
}
.mb-6 {
  margin-bottom: 4rem;
}



/* ==========================
   ABOUT PAGE – HERO BANNER
   ========================== */

.about-hero {
  position: relative;
  min-height: 55vh;
  background-image: url("../images/about-hero.jpg"); /* replace with your banner file */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 146, 0.55),
    rgba(0, 0, 0, 0.35)
  );
}

.about-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.about-hero-heading {
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.about-hero-subheading {
  font-size: 1.15rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

.about-portrait-card {
  max-width: 340px;                   /* size of the card */
  margin: 2rem auto;                  /* centers it horizontally */
  background: #ffffff;
  border-radius: 1.25rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  padding: 1.5rem 1.75rem 1.75rem 1.75rem;
  overflow: hidden;                   /* keeps image inside the card */
  text-align: center;
}
.about-portrait-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;   /* centers the image inside the card */
  margin-bottom: 1rem;
}

.about-portrait-image-wrapper img {
  width: 70%;                /* adjust size as you like */
  max-width: 220px;
  height: auto;
  display: block;
  margin: 0 auto;            /* double-centering safety */
  border-radius: 12px;       /* optional: soften corners */
}

.about-name {
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.about-credentials {
  font-size: 0.95rem;
  color: #607d7d;
  margin-bottom: 0.75rem;
}

.about-tagline {
  font-size: 0.9rem;
  color: #7a9393;
}


/* Mobile */
@media (max-width: 767.98px) {
  .about-hero {
    min-height: 45vh;
    background-attachment: scroll;
    text-align: center;
  }
}


/* ==========================
   SERVICES PAGE – HERO BANNER
   ========================== */

.services-hero {
  position: relative;
  min-height: 55vh;
  background-image: url("../images/services-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--light-text);
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 146, 0.55),
    rgba(0, 0, 0, 0.35)
  );
}

.services-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 4rem 1rem;
}

.services-hero-heading {
  font-size: clamp(2.3rem, 5vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.services-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.7;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

/* Mobile tweak */
@media (max-width: 767.98px) {
  .services-hero {
    min-height: 45vh;
    background-attachment: scroll;
    text-align: center;
  }

  .services-hero-content {
    padding: 3rem 1.5rem;
  }
}



/* ==========================
   LEARN PAGE – CALMING HERO
   ========================== */

.learn-hero {
  position: relative;
  min-height: 55vh;
  background-image: url("../images/learn-hero.png"); /* Replace with your calm banner image */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.learn-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 146, 0.55) 0%,
    rgba(181, 138, 214, 0.45) 100%
  );
}

.learn-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.learn-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.learn-hero-subheading {
  font-size: 1.15rem;
  line-height: 1.6;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

/* MOBILE ADJUSTMENTS */
@media (max-width: 767.98px) {
  .learn-hero {
    min-height: 45vh;
    background-attachment: scroll;
  }
}

/* ==========================
   CONTACT PAGE – HERO BANNER
   ========================== */

.contact-hero {
  position: relative;
  min-height: 50vh;
  background-image: url("../images/contact-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 146, 0.5),
    rgba(0, 0, 0, 0.45)
  );
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 2rem;
}

.contact-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.contact-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Mobile adjustments */
@media (max-width: 767.98px) {
  .contact-hero {
    min-height: 40vh;
    background-attachment: scroll;
    text-align: center;
  }

  .contact-hero-content {
    padding: 3rem 1.5rem;
  }
}

/* ==========================
   TESTIMONIALS PAGE – HERO
   ========================== */

.testimonials-hero {
  position: relative;
  min-height: 50vh;
  background-image: url("../images/testimonials-hero.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.testimonials-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 146, 0.5),
    rgba(0, 0, 0, 0.45)
  );
}

.testimonials-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.testimonials-hero-heading {
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.testimonials-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 650px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Mobile tweak */
@media (max-width: 767.98px) {
  .testimonials-hero {
    min-height: 40vh;
    background-attachment: scroll;
    text-align: center;
  }

  .testimonials-hero-content {
    padding: 3rem 1.5rem;
  }
}

/* ==========================
   BOOK SESSION – HERO BANNER
   ========================== */

.book-hero {
  position: relative;
  min-height: 55vh;
  background-image: url("../images/book-hero.jpg"); /* add this image to your images folder */
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
}

.book-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(44, 156, 146, 0.6),
    rgba(0, 0, 0, 0.35)
  );
}

.book-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 2rem;
}

.book-hero-heading {
  font-size: clamp(2.3rem, 5vw, 3.1rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.45);
}

.book-hero-subheading {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .book-hero {
    min-height: 45vh;
    background-attachment: scroll;
    text-align: center;
  }

  .book-hero-content {
    padding: 3rem 1.5rem;
  }
}


@media (max-width: 767.98px) {
  .hero-content {
    padding: 4rem 1.5rem;
    text-align: center;
  }

  .hero-subheading {
    margin-left: auto;
    margin-right: auto;
  }

 



























