/* -------------------------
	 Wellbeing Meet - Header
	 Styles for: .main-header, .header-inner, .main-nav, header actions
	 ------------------------- */
:root {
  /* branding + global tokens (merged) */
  --wb-primary: #285630; /* primary green - updated */
  --wb-primary-dark: #1f4026;
  --wb-light: #9dd0a7;
  --theme-color: #fa6501;
  --wb-muted: #6b7a74;
  --wb-bg: #ffffff;
  --wb-radius: 10px;
  --wb-font: "Avenir", "Nunito", "Helvetica Neue", Arial, sans-serif;

  /* Header-specific tokens */
  --brand: #1D9A6A; /* primary green (header) */
  --primary: #1f7a42;
  --brand-dark: #123d29;
  --brand-contrast: #ffffff;
  --muted: #6b7280;
  --border: rgba(0, 0, 0, 0.06);
  --header-height: 64px;
  --shadow: 0 2px 8px rgba(16, 24, 40, 0.04);
}

html {
  height: 100%;
  font-size: 16px;
}

body {
  top: 0 !important;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.goog-te-gadget {
  display: block !important;
}

#google_translate_element,
select.goog-te-combo {
  position: fixed;
  z-index: 999;
  top: -999px;
}

.skiptranslate {
  display: none !important;
}

.goog-te-gadget {
	display: block !important;
}

#goog-gt-tt{
    display: none !important;
}

/* Match the common dynamic class prefix used by the translate overlay */
font{
    background: transparent !important;
    -webkit-box-shadow: none !important;
}


/* Avenir font-family registration (local files) */
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir Book.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir Regular.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir Heavy.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/Avenir Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}


body {
  font-family: "Avenir", "Nunitor", "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.main-header {
  background: var(--wb-bg);
  border-bottom: 1px solid rgba(47, 122, 74, 0.06);
  box-shadow: 0 2px 8px rgba(15, 23, 20, 0.03);
  position: sticky;
  top: 0;
  z-index: 60;
}

.main-header .header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 20px;
}
.main-header .brand img {
  height: 36px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: var(--wb-primary-dark);
  text-decoration: none;
  font-family: var(--wb-font);
  font-size: 15px;
  padding: 8px 6px;
  border-radius: 6px;
}
.main-nav a:hover,
.main-nav a:focus {
  background: rgba(47, 122, 74, 0.06);
  color: var(--wb-primary);
}


.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}
.header-right .login-link {
  background: transparent;
  border: none;
  color: var(--wb-primary-dark);
  padding: 6px 10px;
  cursor: pointer;
  font-size: 14px;
}
.btn_wrapper {
  font-family: var(--wb-font);
}
.btn_wrapper.btn-primary {
  background: var(--wb-primary);
  color: #fff;
  padding: 16px 22px;
    border-radius: 5px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(47, 122, 74, 0.12);
  font-weight: 700;
}
.btn_wrapper.btn-primary:hover {
  background: var(--wb-primary-dark);
  box-shadow: 0 6px 18px rgba(36, 95, 58, 0.12);
}
.btn_wrapper.btn-ghost {
  background: transparent;
  color: var(--wb-primary-dark);
  border: 1px solid rgba(47, 122, 74, 0.12);
  padding: 7px 14px;
  border-radius: 12px;
  text-decoration: none;
}

.signup-btn {
  padding: 7px 14px;
}

.navbar-row-left {
  margin-top: 4px;
  display: flex;
  align-items: flex-start;
  gap: 5px;
  color: var(--foundation-nuetrals-nuetrals-1);
  font-weight: 400;
  padding: 5px 2px 3px 0;
}
/* Make header sign-up button a rounded pill (matches provided design) */
.signup-btn {
  background: var(--wb-primary);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 999px;
  display: inline-block;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(15, 23, 20, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 700;
}
.signup-btn:hover {
  background: var(--wb-primary-dark);
  color: #fff;
}

.lang-compact {
  display: flex;
  align-items: center;
}
.lang-select {
  border: 1px solid rgba(15, 23, 20, 0.06);
  background: transparent;
  padding: 6px 8px;
  border-radius: 8px;
  font-size: 13px;
}

button .border-0 {
  background: transparent
}

.text-foot,  .col a{
  opacity: 0.75 !important;
}

#chat-widget-container {
    bottom: 18px !important;
}

/* Responsive: collapse nav on smaller screens */
@media (max-width: 900px) {
  .main-header .header-inner {
    grid-template-columns: auto 1fr auto;
    padding: 12px;
  }
  .main-nav ul {
    gap: 12px;
  }
}
@media (max-width: 720px) {
  .main-header .header-inner {
    grid-template-columns: auto auto;
  }
  .main-nav {
    grid-column: 1 / -1;
    order: 3;
  }
  .main-nav ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
  }
  .header-right {
    gap: 8px;
  }
      #chat-widget-container {
    bottom: 7px !important;
}

}



/* ----------
   Contact section - design match from mock
   ---------- */
#ContactUsSection.contact-section {
  padding: 84px 0;
}
#ContactUsSection .container {
  max-width: 1278px;
  margin: 0 auto;
  position: relative;
}
#ContactUsSection .contact-inner {
  background: #FFFFFF;
  border-radius: 54px;
  padding: 56px 48px;
  box-shadow: 14px 17px 66px rgba(0, 0, 0, 0.10);
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 48px;
  align-items: stretch;
  position: relative;
  overflow: visible;
}
#ContactUsSection .contact-left {
  padding: 8px 6px;
}
#ContactUsSection .contact-left h2 {
  font-family: 'Archivo', Avenir, sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 1.15;
  color: var(--wb-primary-dark);
  margin: 0 0 12px;
}
#ContactUsSection .contact-left p {
  color: #595959;
  opacity: 0.7;
  margin: 0 0 8px;
  font-size: 16px;
}
#ContactUsSection .contact-left address {
  margin-top: 18px;
  color: #595959;
  font-size: 16px;
  line-height: 1.45;
}

/* Trust panel (green box with white badge inside) */
#ContactUsSection .trust-panel {
  position: absolute;
  right: 40px;
  top: 40px;
  background: linear-gradient(0deg, rgba(0,0,0,0.06), rgba(0,0,0,0.06)), #285630;
  color: #fff;
  padding: 22px 24px;
  border-radius: 20px;
  width: 360px;
  box-shadow: 0 18px 50px rgba(36, 95, 58, 0.12);
  z-index: 8;
}
#ContactUsSection .trust-panel .badge {
  display: inline-block;
  background: #fff;
  color: #285630;
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 900;
  margin-bottom: 8px;
}
#ContactUsSection .trust-panel p {
  margin: 6px 0 0;
  font-size: 18px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}

/* Contact form card on right */
#ContactUsSection .contact-right .contact-form {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 28px;
  width: 100%;
  max-width: 600px;
  position: relative;
  margin-top: 0;
   align-self: flex-end;
}
#ContactUsSection .contact-form label {
  display: block;
  margin-bottom: 10px;
  /* color: #8C8C8C; */
  font-size: 16px;
}
#ContactUsSection .contact-form input[type="text"],
#ContactUsSection .contact-form input[type="email"],
#ContactUsSection .contact-form input[type="tel"],
#ContactUsSection .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #D9D9D9;
  background: #FFFFFF;
  font-size: 15px;
  color: #000000;
}
#ContactUsSection .contact-form textarea { min-height: 140px; }
#ContactUsSection .contact-form .g-recaptcha { margin: 12px 0; }
#ContactUsSection .contact-form .btn_wrapper.btn-primary {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  background: #285630;
  color: #fff;
  font-weight: 700;
  border: none;
}

/* Floating meetings stat on left */
#ContactUsSection .meetings-card {
    margin-top: 435px;
    text-align: right;
    width: 301px;
    align-items: end;
    height: 131px;
    justify-content: right;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 22px 26px;
    box-shadow: 21px 17px 55px -13px rgba(23, 85, 12, 0.2);
    display: flex;
    flex-direction: column;
}
#ContactUsSection .meetings-card strong {
  font-size: 48px;
  color: #285630;
  font-weight: 900;
  line-height: 1;
}
#ContactUsSection .meetings-card span {
  font-family: 'Archivo', Avenir, sans-serif;
  font-weight: 700;
  color: #285630;
}

/* Responsive adjustments */
@media (max-width: 1000px) {
  #ContactUsSection .contact-inner { grid-template-columns: 1fr 360px; padding: 40px; gap: 28px; }
  #ContactUsSection .trust-panel { display: none; }
  
}
@media (max-width: 720px) {
  #ContactUsSection .contact-inner { grid-template-columns: 1fr; padding: 28px; }
  #ContactUsSection .contact-right { order: 2; }
  #ContactUsSection .contact-left { order: 1; }
}

/* Small polish: focus outlines for accessibility */
.main-nav a:focus,
.btn_wrapper:focus,
.login-link:focus,
.lang-select:focus {
  outline: 3px solid rgba(47, 122, 74, 0.12);
  outline-offset: 2px;
}

/* -------------------------
	 Wellbeing Meet - Team training visual
	 ------------------------- */




.feature-box {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  text-align: left;
  transition: all 0.3s ease;
}

.feature-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.feature-icon {
  margin-bottom: 16px;
  display: inline-block;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 600;
  color: #285630;
  margin-bottom: 12px;
}

.feature-box p {
  font-size: 14px;
  color: #6b7a74;
  line-height: 1.6;
  margin: 0;
}

.team-training {
  padding: 28px 0 48px;
}
.team-inner {
  max-width: 1100px;
  margin: 18px auto 0;
  position: relative;
}
.team-image {
  position: relative;
  border-radius: 16px;
  overflow: visible;
}
.team-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  box-shadow: 0 14px 40px rgba(15, 23, 20, 0.06);
}

/* Empowerment image block (inserted under the empowerment heading) */
.empowerment-image {
  position: relative;
  margin-top: 18px;
  border-radius: 14px;
  overflow: visible;
}
.empowerment-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 16px 44px rgba(15, 23, 20, 0.06);
}
.empowerment .overlay-box {
  width: 160px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.empowerment .overlay-box .icon {
  width: 28px;
  height: 28px;
}
.empowerment .overlay-box.box-left {
  left: 18px;
  bottom: 18px;
}
.empowerment .overlay-box.box-right {
  right: 18px;
  top: 48%;
  transform: translateY(-50%);
}

/* Full-width banners */
.full-width-banner {
  width: 100%;
  overflow: hidden;
  display: block;
}
.full-width-banner img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.full-width-banner.banner-top img {
  height: 220px;
}
.full-width-banner.banner-after-about img {
  height: 360px;
}

@media (max-width: 900px) {
  .full-width-banner img {
    height: 220px;
  }
  .full-width-banner.banner-after-about img {
    height: 260px;
  }
}
@media (max-width: 520px) {
  .full-width-banner img {
    height: 180px;
  }
}

.overlay-box {
  position: absolute;
  background: #fff;
  padding: 14px 16px;
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(15, 23, 20, 0.08);
  width: 260px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  transform: translateY(0);
}
.overlay-box .icon {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
}
.overlay-box p {
  margin: 0;
  color: var(--wb-primary-dark);
  font-size: 14px;
  line-height: 1.4;
}
.overlay-box p strong {
  display: block;
  margin-bottom: 6px;
  font-weight: 700;
}

.overlay-box.box-left {
  left: 18px;
  bottom: 18px;
}
.overlay-box.box-right {
  right: 18px;
  top: 48%;
  transform: translateY(-50%);
}

/* make overlay boxes slightly smaller on narrow viewports */
@media (max-width: 900px) {
  .overlay-box {
    width: 220px;
    padding: 12px;
  }
  .overlay-box.box-right {
    top: 52%;
  }
}
@media (max-width: 720px) {
  .team-inner {
    padding: 0 12px;
  }
  .overlay-box {
    position: relative;
    width: 100%;
    margin: 12px 0;
    transform: none;
  }
  .overlay-box.box-left,
  .overlay-box.box-right {
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
  }
  .team-image img {
    border-radius: 12px;
  }
   
}


.empowerment-content {
  width: 100%;
  min-height: 90vh;              /* Full viewport height */
  background-image: url("../images/hero-image.png");
  background-size: cover;         /* Cover full area */
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;            /* Vertical center */
  justify-content: center;        /* Horizontal center */
  position: relative;
  overflow: visible;
}

.features-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-img-1,
.feature-img-2 {
  max-width: 40%;
  height: auto;
  display: block;
}

/* Desktop version - images centered inside container */
@media (min-width: 769px) {
  .feature-img-1 {
    position: absolute;
    left: 10%;
    top: 25%;
  }
  
  .feature-img-2 {
    position: absolute;
    right: 10%;
    top: 25%;
  }
}

/* Mobile/Tablet version - images outside container */
@media (max-width: 768px) {
  .empowerment-content {
    min-height: 50vh;
    overflow: visible;
    padding: 40px 0;
  }
  
  .features-container {
    position: static;
    display: block;
    width: 100%;
    max-width: 90%;
    margin: 0 auto;
  }
  
  .feature-img-1 {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 20px auto;
  }
  
  .feature-img-2 {
    display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
    margin: 20px auto;
  }
  .main-wrapper .container {
    padding: 0 12px;
  }
}

/* -------------------------
	 Wellbeing Meet - Hero + Stats
	 ------------------------- */
.hero-section {
  padding: 56px 0 42px;
  background: transparent;
}
.hero-inner {
  max-width: 1100px;
  margin: 70px auto;
}
.hero-card {
  background: #eaf7ef; /* soft green background */
  border-radius: 34px;
  padding: 48px 36px;
  text-align: center;
  box-shadow: 0 20px 60px rgba(36, 95, 58, 0.08);
  /* max-width: 980px; */
  /* margin: 0 0 18px; */
}
.title-sub-heading {
  display: inline-block;
  font-size: 25px;
  color: var(--wb-primary);
  background: #e6f6ea;
  padding: 6px 12px;
  border-radius: 14px;
  /* margin-bottom:16px; */
  font-weight: 700;
}

/* Custom title format: maps to provided typography spec */
.title-format {
  font-style: normal;
  font-size: 50px;
  letter-spacing: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.title-sub-heading {
  /* font-weight: 800; */
  font-style: normal;
  font-size: 20px;
  /* line-height: 72px; */
  letter-spacing: 0;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Global section headers: apply consistent size/weight/spacing across sections */
section h2 {
  text-align: center;
  color: var(--wb-primary);
  line-height: 1.04;
  margin: 10px 0 18px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.sub-text {
  color: var(--wb-primary);
  max-width: 760px;
  margin: 0 auto 18px;
  line-height: 25px;
  font-size: 19px;
  font-weight: 500;
}
.hero-cta {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 20px;
}

.hero-cta .btn_wrapper.btn-ghost {
  padding: 10px 18px;
  border-radius: 12px;
}

.stats-row{
  display:flex;
  gap:0;
  margin-top:22px;
  justify-content:space-between;
  align-items:center;
  background: #9dd0a7; /* soft green bar */
  border-radius:28px;
  padding:22px 18px;
}
.stat-box{
  background:transparent;
  color:var(--wb-primary-dark);
  flex:1;
  padding:0 18px;
  border-radius:0;
  text-align:center;
  box-shadow:none;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}
.stat-box strong{
  display:block;
  font-size:48px;
  font-weight:800;
  /* margin-bottom:12px; */
  color:var(--wb-primary);
}

@media (max-width: 900px){
  .stats-row{ padding:18px; }
  .stat-box strong{ font-size:36px; }
  .stats-row{ gap:12px }
}
@media (max-width: 720px){
  .stats-row{ flex-direction:column; gap:14px; padding:14px }
  .stat-box{ padding:12px 0 }
  .stat-box strong{ font-size:28px }
}

.empowerment {
  margin: 28px 0 36px;
}

/* About Us: two-column layout with left content card and right image */
.about-us {
  padding: 36px 0;
}
.about-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-content {
  flex: 1 1 48%;
  
}

.about-content p{
  font-size: 13px;
    color: var(--wb-primary);
  line-height: 1.6;
  margin-bottom: 10px;
}

/* .about-content > p{ background:#ffffff; border-radius:14px; padding:22px; box-shadow: 0 6px 20px rgba(15,23,20,0.04); border: 3px solid rgba(40,86,48,0.06); color:var(--wb-primary-dark); line-height:1.5 } */
.about-content .btn_wrapper {
  margin-top: 18px;
  display: inline-block;
}
.about-image {
  flex: 1 1 48%;
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  border-radius: 18px;
  display: block;
}


.about-us {
    padding: 70px 0;
    margin: auto 70px;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 520px;
  gap: 34px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.about-content h2 {
  color: var(--wb-primary);
  font-size: 26px;
  margin-bottom: 12px;
}

.tags {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}
.tag {
  background: #eaf6ed;
  color: var(--wb-primary-dark);
  padding: 8px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 13px;
}

.about-image {
  display: flex;
  justify-content: center;
}
.about-image img {
  width: 100%;
  max-width: 520px;
  border-radius: 22px;
  box-shadow: 0 10px 30px rgba(47, 122, 74, 0.07);
  position: relative;
}
.about-image::before {
  content: "";
  position: absolute;
  width: 460px;
  height: 260px;
  right: 60px;
  top: -28px;
  background: linear-gradient(
    180deg,
    rgba(47, 122, 74, 0.06),
    rgba(47, 122, 74, 0.03)
  );
  border-radius: 36px;
  transform: rotate(-12deg);
  z-index: -1;
}
/* -------------------------
   How we support section
   ------------------------- */
.how-we-support {
  position: relative;
  padding: 100px 0 48px;
  overflow: visible;
}
.how-we-support .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.how-we-support::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -30px;
  transform: translateX(-50%) rotate(-6deg);
  width: 92%;
  height: 220px;
  background: linear-gradient(
    180deg,
    rgba(47, 122, 74, 0.06),
    rgba(47, 122, 74, 0.03)
  );
  border-radius: 28px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
  position: relative;
  margin: 0px 87px;
}
.benefit {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 14px 36px rgba(15, 23, 20, 0.06);
  text-align: left;
}
.benefit h4 {
  color: var(--wb-primary);
  font-size: 18px;
  margin: 0px 0px 8px;
  font-weight: 800;
  line-height: 22px;
}
.benefit p {
  color: var(--wb-primary);
  margin: 0;
  line-height: 1.6;
  text-align: center;
  font-size: 12px;
}
.center-cta {
  text-align: center;
  margin-top: 22px;
  position: relative;
}
.center-cta .btn_wrapper.btn-primary {
    padding: 14px 36px;
    min-width: 253px;
    border-radius: 8px;
    text-align: center;
}

@media (max-width: 900px) {
  .benefits-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .how-we-support::before {
    height: 160px;
    top: -10px;
  }
  .how-we-support {
    padding-top: 48px;
  }
}

@media (min-width: 1000px) {
  .benefits-row .benefit {
    min-height: 160px;
  }
}

/* -------------------------
   Main Wrapper styles
   ------------------------- */
.main-wrapper {
  position: relative;
  z-index: 1;
  margin-top: var(--header-height);
  min-height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
}

/* -------------------------
   Footer styles
   ------------------------- */
.site-footer {
  background: var(--wb-primary);
  color: white;
  padding: 56px 0 40px;
  position: relative;
  width: 100%;
  margin-top: auto;
}
.site-footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}
.footer-top {
  text-align: center;
  margin-bottom: 18px;
}
.footer-logo {
  height: 36px;
  display: inline-block;
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 65px;
  text-align: left;
  margin-top: 6px;
}
.footer-columns h4 {
  color: #fff;
  margin: 0 0 14px;
  font-size: 15px;
}
.footer-columns ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-columns li {
  margin-bottom: 8px;
}
.footer-columns a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  font-size: 14px;
}
.footer-columns a:hover {
  text-decoration: underline;
}
.footer-payments {
  text-align: center;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.9);
}
.footer-payments .payments {
  margin-bottom: 6px;
    display: flex;
    justify-content: center;
    gap: 7px;
}
.footer-payments .encryption {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

/* -------------------------
	 Language dropdown styles
	 ------------------------- */
.language-dropdown {
  position: relative;
  display: inline-block;
}
.btn-lang {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid rgba(15, 23, 20, 0.1);
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
  color: var(--wb-primary-dark);
  box-shadow: 0 6px 18px rgba(15, 23, 20, 0.06);
}
.btn-lang .flag-icon {
  width: 20px;
  height: auto;
  display: block;
}
.btn-lang .arrow {
  font-size: 12px;
  color: var(--wb-muted);
  transition: transform 0.18s ease;
}
.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 18px 40px rgba(15, 23, 20, 0.12);
  min-width: 180px;
  display: block;
  z-index: 120;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.language-dropdown.open .language-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.language-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  color: var(--wb-primary-dark);
  text-decoration: none;
  font-size: 14px;
}
.language-option img,
.language-option object {
  width: 18px;
  height: auto;
  display: block;
}
.language-option:hover {
  background: rgba(47, 122, 74, 0.04);
  color: var(--wb-primary);
}
.language-dropdown.open .btn-lang .arrow {
  transform: rotate(180deg);
}

@media (max-width: 720px) {
  .language-menu {
    right: 8px;
    left: auto;
    min-width: 140px;
  }
}
.footer-meta {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
}

/* Get-in-touch list small icon spacing */
.get-in-touch ul li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.92);
}

@media (max-width: 900px) {
  .footer-columns {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .footer-columns h4 {
    text-align: left;
  }
  .get-in-touch ul li {
    justify-content: center;
  }
}

/* -------------------------
   Contact section styles
   ------------------------- */
.contact-section {
  padding: 72px 0;
  position: relative;
}
.contact-section .container {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.contact-inner {
  background: #fff;
  border-radius: 28px;
  padding: 46px 36px;
  box-shadow: 0 30px 80px rgba(15, 23, 20, 0.06);
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 32px;
  align-items: stretch;
  position: relative;
  overflow: visible;
}
.contact-left {
  padding: 12px 6px;
  position: relative;
}
.contact-left h2 {
  font-style: normal;
  font-size: 40px;
  letter-spacing: 0;
  text-align: left;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.contact-left p {
  color: var(--wb-muted);
  margin: 0 0 12px;
}
.contact-left address p {
  color: var(--wb-muted);
  margin: 6px 0;
}
.trust-badge {
  margin-top: 14px;
}

.contact-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.contact-form {
  background: #fff;
  border-radius: 12px;
  padding: 22px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 24px 60px rgba(15, 23, 20, 0.08);
  border: 1px solid rgba(15, 23, 20, 0.03);
  position: relative;
  margin-top: -40px;
}
.contact-form h2{
color: var(--wb-primary);
text-align: left;
font-size:30px;
font-weight: 600;
}
.contact-form label {
  display: block;
  margin-bottom: 12px;
  color: var(--wb-primary-dark);
  font-size: 14px;
}
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(15, 23, 20, 0.06);
  background: #fafafa;
  font-size: 14px;
  color: var(--wb-primary-dark);
}
.contact-form textarea {
  min-height: 110px;
}
.contact-form .captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.contact-form .btn_wrapper.btn-primary {
  width: 100%;
  display: inline-block;
  padding: 12px 18px;
  border-radius: 8px;
}
.contact-trust {
  margin-bottom: 71px;
  /* margin-right: 90px;
  margin-top: 81px; */
}

.row .contact-col:nth-child(2) {
  padding: 67px 90px 0px 0px;
}

.contact-trust img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.trust-panel {
  position: absolute;
  right: -24px;
  top: -18px;
  background: var(--wb-primary);
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  width: 320px;
  box-shadow: 0 18px 50px rgba(36, 95, 58, 0.12);

}


/* Desktop: Show original button in about-content, hide mobile version */
@media (min-width: 769px) {
  .about-content .btn_wrapper {
    display: inline-block !important;
  }
  
  .mobile-signup {
    display: none !important;
  }
}

/* Mobile: Hide original button, show mobile version below image */
@media (max-width: 768px) {
  .about-content .btn_wrapper {
    display: none !important;
  }
  
  .mobile-signup {
    display: block !important;
    text-align: center;
    width: 100%;
    margin-top: 24px;
  }
  
  .mobile-signup .btn_wrapper {
    display: inline-block;
    width: 100%;
    max-width: 100%;
  }
}

/* Ensure about content centers vertically and CTA is larger */
.about-content{ display:flex; flex-direction:column; justify-content:center; align-items:flex-start }
.about-content .btn_wrapper.btn-primary {
    padding: 14px 36px;
    min-width: 253px;
    border-radius: 8px;
    text-align: center;
}


@media (max-width: 720px) {
  .about-inner {
    flex-direction: column;
  }
  .about-content,
  .about-image {
    width: 100%;
  }

  .about-content .btn_wrapper {
    width: 100%;
    text-align: center;
  }
    .stats-row {
    gap: 12px;
  }
  .hero-card {
    padding: 22px;
  }
  .hero-title {
    font-size: 22px;
  }
  .stats-row {
    flex-direction: column;
  }
  .stat-box {
    text-align: left;
    padding: 18px;
  }
  .stat-box strong {
    font-size: 45px;
  }

  .sub-text {
    font-size: 18px;
    text-align: center;
  }

  .features-container{
    gap: 0px;
    flex-direction: column;
  }
  .about-us, .how-we-support, .pricing {
    padding: 72px 0;
    margin: auto 5px;
  }

  #ContactUsSection {
    padding: 72px 0;
    margin: auto 5px;
  }

  .about-content > p {
    padding: 18px;
    font-size: 20px;
    text-align: center;
  }

  .benefits-row{
    margin: 0px 10px;
  }
  .title-format {
    font-size: 35px;
  }

  .benefit h4{
    font-size: 26px;
  }

  .benefit p{
    font-size: 16px;
}

.meetings-card{
  display: none !important;
}
  .about-inner{ grid-template-columns: 1fr; }
  .about-image img{ max-width:480px }
  .about-content .btn_wrapper.btn-primary{ min-width: auto; padding:12px 18px }
  .about-content{ align-items:center }
  .row .contact-col:nth-child(2) {
    padding: 0px;
  }
  .footer-columns{
    text-align: left;
  }
  .footer-columns h4 {
    text-align: left;
  }

  .get-in-touch ul li {
    justify-content: flex-start;
  }
}




/* Pricing styles moved to assets/css/pricing.css */

/* Desktop: Show default h2, hide mobile header */
@media (min-width: 769px) {
  .mobile-pricing-header {
    display: none !important;
  }
}

/* Mobile: Hide default h2, show mobile header */
@media (max-width: 768px) {
  .pricing > .container > h2:first-of-type {
    display: none !important;
  }
  
  .mobile-pricing-header {
    display: block !important;
    text-align: center;
    color: var(--wb-primary);
    line-height: 1.04;
    margin: 10px 0 18px;
    font-weight: 700;
    letter-spacing: -0.5px;
  }
}

