/* ============================================
   LISIKA BAJAJ — HOMEPAGE STYLES (Pixel-Perfect)
   Fonts: Cormorant Garamond (display), Poppins (body)
   Palette: Forest Greens (#0D1A10, #132216), Earthy Sage (#7D8B5E, #B7BF6F), Warm Cream (#FAF8F5, #F5F1E8)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&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&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

.google-sans-flex {
  font-family: "Google Sans Flex", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-variation-settings:
    "slnt" 0,
    "wdth" 100,
    "GRAD" 0,
    "ROND" 0;
}

.cormorant-garamond {
  font-family: "Cormorant Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.plus-jakarta-sans {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

/* ── CSS Custom Properties ── */
:root {
  --forest-darkest: #0d1a10;
  --forest-dark: #132216;
  --forest-mid: #1a2c1e;
  --forest-deep: #1e3324;
  --forest-medium: #2a3c2a;

  --sage: #80805E;
  --sage-dark: #656834;
  --sage-light: #8A9A65;
  --sage-lighter: #98A77C;
  --sage-pale: #B7BF6F;
  --sage-muted: #c2cda8;
  --sage-bg: #EEE8E1;

  --cream: #F7F2EC;
  --cream-mid: #F5F1E8;
  --cream-warm: #F0EBE0;
  --linen: #F8F5EE;
  --beige: #EDE8DD;

  --text-dark: #262625;
  --text-body: #212027;
  --text-muted: #5A6258;
  --text-light: #8C968B;
  --text-white: #ffffff;
  --text-cream: #D4D9CC;

  --border: #E5DFD5;
  --border-light: #ECE7DD;
  --shadow-sm: 0 4px 20px rgba(13, 26, 16, 0.04);
  --shadow-md: 0 6px 25px rgba(13, 26, 16, 0.06);
  --shadow-hover: 0 14px 40px rgba(13, 26, 16, 0.1);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
}

/* ── Base Reset ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-size: 14px;
  line-height: 1.7;
  background: var(--cream);
  font-family: "Google Sans Flex", sans-serif;
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
}

/* ── Container Width ── */
.container {
  max-width: 1240px;
  padding-left: 20px;
  padding-right: 20px;
}

/* ── Typography Helpers ── */
.poppinsfonts,
button,
.btn,
input,
p {
  font-family: "Google Sans Flex", sans-serif;
}

.cormorantfonts,
h1,
h2,
h3,
h4 {
  font-family: "Cormorant Garamond", serif;
}

li,
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

p,
span,
h1,
h2,
h3,
h4,
h5,
h6,
nav,
section {
  margin: 0;
  padding: 0;
}

img {
  max-width: 100%;
  height: auto;
}

.mobile_sectionbanner,
.mobile_image {
  display: none;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.main_header_sec {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
}

.top_header {
  padding: 45px 0;
  transition: var(--transition);
}

.main_header_sec.scrolled .top_header {
  background: rgba(13, 26, 16, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 12px 0;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.25);
}

.header_logo img {
  width: auto;
  height: 44px;
}

.header_right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.header_nav {
  display: block;
}

.header_nav .nav_list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0;
}

.header_nav .nav_list li {
  display: flex;
  align-items: center;
}

.header_nav .nav_list li:not(:last-child)::after {
  content: "";
  width: 5px;
  height: 5px;
  background: #FFFFFF;
  margin: 0 18px;
  display: block;
  flex-shrink: 0;
  border-radius: 100px;
}

.nav_link {
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: rgb(247 253 254);
  letter-spacing: 0.3px;
  transition: var(--transition);
  position: relative;
}

.nav_link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--sage-pale);
  transition: var(--transition);
}

.nav_link:hover {
  color: #fff;
}

.nav_link:hover::after {
  width: 100%;
}

.btn_header_cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #296C00;
  background: #ffffff;
  padding: 11px 24px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  border: 1px solid #ffffff;
}

.btn_header_cta:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
}

/* Hamburger: always visible, sits to the right of the desktop menu */
.mobile_menu_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #6E7247;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  padding: 7px;
}

.mobile_menu_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile_menu_overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile_menu_drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100%;
  background: var(--cream);
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
}

.mobile_menu_drawer.active {
  right: 0;
}

.drawer_header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
}

.drawer_header .header_logo img {
  height: 30px;
  filter: none;
}

.drawer_close_btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.drawer_nav {
  padding: 8px 28px 32px;
  text-align: center;
}

.drawer_nav ul {
  text-align: left;
}

.drawer_nav ul li {
  margin-bottom: 0;
}

.drawer_nav ul li a {
  display: block;
  padding: 16px 0;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.drawer_nav ul li a:hover {
  color: var(--sage);
}

.drawer_cta {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 28px auto 0;
  padding: 14px 32px;
  background: #6E7247 !important;
  border: 1px solid #6E7247 !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 50px;
}

.drawer_cta:hover {
  background: #5c603c !important;
  border-color: #5c603c !important;
  color: #fff !important;
}


/* ============================================
   HERO BANNER
   ============================================ */
.banner_sec {
  position: relative;
  background: url('../images/banner-bh.jpg') center center / cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 0;
  overflow: hidden;
}

.banner_bg_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.banner_sec .container {
  z-index: 2;
}

.banner_content {
  padding-top: 40px;
  padding-bottom: 40px;
}

.banner_subtitle {
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 3.5px;
  color: #A2AD63;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.banner_title {
  font-size: 65px;
  font-weight: 600;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 20px;
}

.banner_title span {
  color: var(--sage-pale);
}

.banner_divider_row {
  display: flex;
  align-items: center;
  gap: 0px;
  margin-top: 26px;
  margin-bottom: 36px;
  max-width: 440px;
}

.banner_line {
  flex-grow: 1;
  height: 1px;
  background: #3E451D;
}

.banner_leaf_icon {
  flex-shrink: 0;
  stroke: var(--sage-pale);
  color: var(--sage-pale);
}

.banner_desc {
  font-size:20px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 30px;
  max-width: 490px;
}

/* Book a Session Button */
.btn_book_session {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Google Sans Flex", sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: #212220;
  background: #F6F1E4;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  border: 1px solid #ffffff;
}

.btn_book_session:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--forest-darkest);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.25);
}

.btn_leaf_icon {
  stroke: var(--forest-darkest);
  color: var(--forest-darkest);
  flex-shrink: 0;
}

/* Banner Portrait */
.banner_image_wrap {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 92vh;
  z-index: 2;
  display: none;
  align-items: flex-end;
}

.banner_portrait {
  height: 100%;
  width: auto;
  max-height: 92vh;
  object-fit: contain;
  object-position: bottom right;
}


/* ============================================
   SECTION TAGS & SHARED
   ============================================ */
.section_tag_row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: #fff;
}

.section_divider {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--sage);
}

.section_divider.light {
  background: #fff;
}

.section_tag {
  font-size: 16px;
  font-weight: 600;
  color: #777F62;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 3px;
  font-style: italic;
}
.section_tag span{color: #000;    display: contents;}
.section_tag.light {
  color: #fff;
}

.tag_icon {
  flex-shrink: 0;
}

.giveback_sec .section_tag {
  color: #5C6630;
  font-size: 13px;
  letter-spacing: 1px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials_sec {
  padding: 95px 0 85px;
  background: var(--cream);
  position: relative;
}

.section_title {
  font-size: 50px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.section_title em {
  font-style: italic;
  color: var(--sage);
}

.testimonial_card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 30px 28px 0;
  transition: var(--transition);
  height: 100%;
  position: relative;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.testimonial_card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.quote_icon {
  margin-bottom: 16px;
}

.testimonial_text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #000;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial_author {
  display: block;
  align-items: center;
  margin-bottom: 10px;
}

.testimonial_author p {
  color: #050808db;
}

.author_name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.author_rating {
  display: flex;
  gap: 1px;
}

.testimonial_platform {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0 -21px;
}


/* ============================================
   ABOUT SECTION
   ============================================ */
.about_sec {
  padding: 95px 0 100px;
  background: var(--cream);
}

.about_row {
  margin-top: 10px;
}

.about_image_wrap {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.about_portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

.about_title {
  font-size: 46px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 8px;
}

.about_title em {
  font-style: italic;
  color: var(--sage);
}

.about_text {
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 30px;
}

/* About Qualifications — Two Clean Columns */
.about_quals_wrap {
  margin-top: 45px;
}

.about_qual_divider {
  border-right: 1px solid var(--border);
  padding-right: 28px;
}

.about_quals_wrap .col-md-6:last-child {
  padding-left: 28px;
}

.qual_col_header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 900;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 16px;
}

.qual_icon_badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sage-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.qual_icon_badge svg {
  width: 25px;
  height: 25px;
}

.qualifications_list li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 10px;
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.7;
}

.qualifications_list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--sage);
  font-size: 19px;
  line-height: 1;
}


/* ============================================
   MY APPROACH
   ============================================ */
.approach_sec {
  padding: 110px 0;
  background: #ffffff;
}

.approach_title {
  font-size: 52px;
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 16px;
}

.approach_title em {
  font-style: italic;
  color: var(--sage);
}

.approach_leaf_divider {
  display: flex;
  align-items: center;
  gap:0px;
  margin: 20px 0 24px;
  max-width: 320px;
}

.approach_leaf_line {
  flex-grow: 1;
  height: 1px;
  background: rgba(125, 139, 94, 0.3);
}

.approach_desc {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-body);
  max-width: 420px;
}

/* Steps Layout with Connected Numbers and Cards */
.approach_steps_container {
  padding-left: 15px;
  position: relative;
}

.approach_steps_container::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 45px;
  bottom: 50px;
  width: 1px;
  border-left: 1.5px dashed var(--sage-muted);
  z-index: 1;
}

.approach_step_item {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 42px;
  position: relative;
  z-index: 2;
}

.approach_step_item.last_item {
  margin-bottom: 0;
}

.step_num_badge {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #F2F2F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 600;
  color: #666E42;
  flex-shrink: 0;
  position: relative;
  box-shadow: 0 6px 10px rgb(0 0 0 / 16%);
}

.step_num_badge::after {
  content: '';
  position: absolute;
  right: -28px;
  top: 50%;
  width: 28px;
  height: 1px;
  border-top: 1.5px dashed var(--sage-muted);
}

.step_card_box {
  width: 115px;
  height: 115px;
  background: #ffffff;
  border-radius: 11px;
  box-shadow: 0 6px 10px rgb(0 0 0 / 16%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.step_card_box .step_icon_circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #FAFAF7;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step_icon_circle svg {
  width: 58px;
  height: 58px;
}

.step_info_col {
  padding-left: 8px;
}

.step_heading {
  font-size: 26px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.2;
}

.step_line_divider {
  width: 36px;
  height: 1.5px;
  background: var(--sage);
  margin-bottom: 12px;
}

.step_para {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}


.specialisations_sec {
  position: relative;
  background: #fff;
  padding: 0 0 100px;
}

.specialisations_banner {
  position: relative;
  padding: 90px 0 202px;
  background-image: url("../images/cover.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

.specialisations_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.specialisations_overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00000000;
}

.specialisations_title {
  font-size: 46px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 8px;
}

.specialisations_title em {
  font-style: italic;
}

/* 4 Overlapping Cards */
.specialisation_cards_row {
  margin-top: -129px;
  position: relative;
  z-index: 5;
  padding-bottom: 25px;
}

.specialisation_card {
  background: #ffffff;
  border: 1px solid var(--border-light);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  padding: 40px 22px 34px;
  transition: var(--transition);
  height: 100%;
  text-align: center;
}

.specialisation_card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}

.spec_card_icon_circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F0F0E5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.spec_card_icon_circle svg {
  width: 54px;
  height: 54px;
}

.spec_card_title {
  font-size: 22px;
  font-weight: 800;
  color: #000;
  margin: 0 0 12px;
  line-height: 1.25;
  position: relative;
  padding: 16px 0 0;
}

.spec_card_title::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 2px;
  background: #f0f0e5;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 0;
}

.spec_card_text {
  font-size: 12.5px;
  color: var(--text-body);
  line-height: 1.75;
}


/* ============================================
   NAVIGATE IN SILENCE (Mobile-Visible)
   ============================================ */
.navigate_sec {
  padding: 55px 0;
  background: var(--forest-mid);
  display: none;
}

.navigate_content {
  text-align: center;
}

.navigate_title {
  font-size: 32px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.navigate_title em {
  font-style: italic;
  color: var(--sage-pale);
}

.navigate_text {
  font-size: 12.5px;
  color: var(--text-cream);
  line-height: 1.85;
  margin-bottom: 24px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.85;
}

.navigate_btn {
  background: var(--sage) !important;
  border-color: var(--sage) !important;
}

.navigate_btn:hover {
  background: var(--sage-light) !important;
}


/* ============================================
   DEPTH WORK
   ============================================ */
.depth_sec {
  padding: 0px 0px 100px 0;
  background: #FFFFFF;
  position: relative;
}

.depth_title {
  font-size: 46px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.12;
  margin-bottom: 12px;
}

.depth_title em {
  font-style: italic;
  color: #5D6D37;
}

.depth_leaf_divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 24px;
  max-width: 320px;
}

.depth_leaf_line {
  flex-grow: 1;
  height: 1px;
  background: rgba(125, 139, 94, 0.3);
}

.depth_desc {
  font-size: 16px;
  color: #515960;
  line-height: 1.85;
  margin-bottom: 28px;
  max-width: 373px;
  position: relative;
  z-index: 2;
  background: #ffffffb5;
}

.depth_image_wrap {
  border-radius: 20px;
  overflow: hidden;
  margin-top: 10px;
  box-shadow: var(--shadow-sm);
}

.depth_image {
  width: 100%;
  height: 219px;
  max-width: 550px;
  object-fit: cover;
  display: block;
  border-radius: 0;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

.depth_card {
  background: #ffffff;
  border: 1px solid #F2F1ED;
  border-radius: 13px;
  box-shadow: 5px 0 10px #0000001a;
  padding: 38px 28px 32px;
  transition: var(--transition);
  height: 100%;
  text-align: center;
  position: relative;
}

.depth_card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.depth_card_num {
  font-size: 28px;
  font-style: italic;
  color: #B2BE9C;
  position: absolute;
  top: 20px;
  right: 24px;
}

.box_custom_left {
  display: flex;
  justify-content: start;
}

.depth_card_icon_circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #F0EFE9;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.depth_card_icon_circle svg {
  width: 43px;
  height: 43px;
}

.depth_card_divider {
  width: 28px;
  height: 1px;
  background: var(--sage);
  margin: 9px 0 14px;
}

.depth_card_title {
  font-size: 21px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-align: left;
}

.depth_card_text {
  font-size: 16px;
  color: var(--text-body);
  line-height: 24px;
  text-align: left;
}


/* ============================================
   GIVING BACK / COMMUNITY OUTREACH
   ============================================ */
.giveback_sec {
  padding: 100px 0 110px;
  background: #ffffff;
}

.giveback_tag_line {
  width: 32px;
  height: 1.5px;
  background: var(--sage);
  margin-bottom: 18px;
}

.tag_icon_left {
  margin-right: 4px;
}

.giveback_title {
  font-size: 48px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}

.giveback_title em {
  font-style: italic;
  color: var(--sage);
}

.giveback_leaf_divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  max-width: 300px;
}

.giveback_leaf_line {
  flex-grow: 1;
  height: 1px;
  background: rgba(125, 139, 94, 0.3);
}

.giveback_cards {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.giveback_card {
  display: flex;
  gap: 28px;
  align-items: center;
  background: #FCFCFB;
  border: 1px solid #EDEBE9;
  border-radius: 13px;
  box-shadow: var(--shadow-sm);
  padding: 34px 30px;
  transition: var(--transition);
}

.giveback_card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.giveback_card_icon_wrap {
  flex-shrink: 0;
}

.giveback_card_icon_circle {
  width: 150px;
  border-radius: 7px;
  background: #F3F3EB;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.giveback_card_icon_circle svg {
  width: 100px;
  height: 100px;
}

.giveback_card_content {
  border-left: solid 1px #E0DFD4;
  padding: 15px 0 15px 28px;
}

.giveback_card_title {
  font-size: 23px;
  font-weight: 600;
  color: var(--sage-dark);
  margin-bottom: 8px;
  line-height: 1.25;
}

.giveback_card_text {
  font-size: 13px;
  color: var(--text-body);
  line-height: 1.75;
}


/* ============================================
   FOOTER
   ============================================ */
.footer_sec {
  background: #F9F6F1;
  position: relative;
}



.footer_sec .container {
  position: relative;
  z-index: 2;
}

.footer_cta_sec {
  padding: 100px 0 35px;
  text-align: center;
}

.footer_cta_title {
  font-size: 43px;
  font-weight: 800;
  letter-spacing: 4px;
  color: #27292B;
  margin-bottom: 16px;
}

.footer_cta_title span {
  color: #52662C;
}

.footer_leaf_divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0 auto 24px;
  max-width: 360px;
}

.footer_leaf_line {
  flex-grow: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.footer_cta_text {
  font-size: 16px;
  color: #3E3D3F;
  line-height: 1.85;
  margin-bottom: 34px;
}

.footer_cta_btn {
  background: #5E7332 !important;
  border-color: #5E7332 !important;
  color: #fff !important;
}

.footer_cta_btn:hover {
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--forest-darkest) !important;
}

/* Contact Bar */
.footer_contact_bar {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0px 0;
}

.footer_contact_row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer_contact_item {
  display: grid;
  align-items: center;
  gap: 0px;
  font-size: 15px;
  color: #12140e;
  transition: var(--transition);
  justify-content: center;
  text-align: center;
  border: solid 1px #ECE8DE;
  padding: 30px 10px;
  border-radius: 10px;
  flex: 1;
}

.footer_contact_item:hover {
  color: #5e7332;
}

.contact_icon_circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #ECECDD;
  border: 1px solid #FAF7F2;
  flex-shrink: 0;
  margin: 0 auto 12px;
}

span.contact_icon_circle svg {
  width: 30px;
  height: 30px;
}

.footer_divider_bar {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 300;
  font-size: 14px;
}

/* Copyright */
.copyright_sec {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.copyright_text {
  font-size: 16px;
  color: rgb(20 12 12 / 98%);
}

.footer_contact_item strong {
  font-size: 15px;
  color: #5e7332;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  animation: fadeInUp 0.5s ease forwards;
}

.content_boxover {
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.silence_sec .section_tag {
  font-size: 15px;
  color: #344229;
  letter-spacing: 1px;
}

.silence_sec .about_title {
  font-size: 55px;
  font-weight: 800;
  color: #13240F;
}

.content_boxover p {
  color: #13240f;
  font-size: 16px;
  font-weight: 500;
}

.max_customsec {
  max-width: 667px;
}

.silence_sec .btn_book_session {
  margin: 30px 0 0;
}

.shap_right .shap {
  position: absolute;
  right: 0;
  top: 0;
}

.silence_sec {
  padding: 0;
  background: #fff;
}

.row.depth_grid {
  row-gap: 20px;
}
.testsortname{ background: #a6a56f;
    color: #fff;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100px;
    gap: 0px;
    font-size: 17px;
    letter-spacing: 1px;
    
    line-height: 0;
    text-align: center;
    display: grid;
    padding-left: 3px;}

    .silence_sec .section_tag {
    font-size: 15px;
    color: #ffffff;
    letter-spacing: 1px;
}
.content_boxover p {
    color: #ffffff;
    font-size: 16px;
    font-weight: 500;
}
.silence_sec .about_title {
    font-size: 55px;
    font-weight: 800;
    color: #ffffff !important;
}
.max_customsec {
    max-width: 100%;
    margin: auto;
    text-align: center;
}
#navigate .section_tag_row { 
    text-align: center;
    justify-content: center;
}

/* Hamburger menu - 0px to 2000px */
@media screen and (min-width: 0px) and (max-width: 2000px) {

    .navbar-toggler,
    .menu-toggle,
    .mobile-menu-toggle {
        display: flex !important;
        width: 40px !important;
        height: 40px !important;
        align-items: center !important;
        justify-content: center !important;
        background: #69714a !important;
        border: 0 !important;
        border-radius: 5px !important;
    }

    .navbar-toggler span,
    .menu-toggle span,
    .mobile-menu-toggle span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        margin: 3px 0 !important;
        background: #fff !important;
    }
}


.bg_sec{text-align: center;  background:url(../images/Silence-banner3.jpg) no-repeat bottom;
  background-size: cover;  background-attachment: fixed;
  padding:7rem 5rem;}
.bg_sec .max_customsec{    max-width: 70%;
    margin: auto;
    gap: 20px;
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;}
.bg_sec h2, .bg_sec p, .bg_sec .section_tag{color: #fff;}
.bg_sec .section_tag_row{text-align: center;  justify-content: center; align-items: center;color: #fff;}
.pspan{font-style: italic; }
.pspan span{font-style: italic;   color: var(--sage-pale);}
.bold_color_span span{ font-weight: 700;  color:#656834;font-style: italic; }