/* Fix rounded corner issue on hero display tables -ze */
.home-7_pricing-section {
border-radius: 0px;
}
/* Fix zoom issue on typing into chat window */
#user-input {
    font-size: 16px;
    padding: 0.375rem 0.75rem; /* Matches Bootstrap sm padding; adjust if needed */
}
/* ----------------------------
  Prevent horizontal overflow sitewide
---------------------------- */
html, body {
  max-width: 100%;
  overflow-x: hidden;
}

/* Ensure menu wrappers don’t push past viewport */
nav.navbar .menu-block,
nav.navbar .menu-block-wrapper {
  max-width: 100%;
  overflow-x: hidden;
}

/* ----------------------------
  Mobile CTA button
---------------------------- */
ul.site-menu-main .nav-item .btn-masco {
  display: block;
  width: auto;
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  white-space: normal; /* prevent text forcing overflow */
}

/* Specific CTA button styling */
.btn-cta-green {
  background-color: #3EA26C;
  border-color: #3EA26C;
  color: #ffffff;
  transition: background-color 0.3s ease;
}

.btn-cta-green:hover {
  background-color: #2b8052;
  border-color: #2b8052;
}

/* Mobile tap-friendly hover */
@media (hover: none) and (pointer: coarse) {
  .btn-cta-green {
    transition: background-color 0.15s ease;
  }
}

/* ----------------------------
  Mobile menu CTA display
---------------------------- */
@media (max-width: 991px) {
  .site-menu-main .mobile-cta {
    display: block;
    padding: 10px 0;
  }
  .site-menu-main .mobile-cta a {
    display: block;
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .site-navbar {
    padding: 10px 0;
  }
  .header-cta-btn-wrapper {
    display: none; /* hide desktop CTA on mobile */
  }
}

/* ----------------------------
  Desktop menu CTA display
---------------------------- */
@media (min-width: 992px) {
  .site-menu-main .mobile-cta {
    display: none; /* hide mobile CTA on desktop */
  }
  .site-navbar {
    padding: 15px 0;
  }
  .header-cta-btn-wrapper {
    display: flex;
    align-items: center;
    column-gap: 30px;
  }

  /* Hero images adjustments */
  .home-5_hero-image { margin-right: -14%; }
  .home-9_hero-image { margin: 0 -450px 0 15px; }
  .home-10_hero-image { margin-right: -7%; }

  .home-10_service-video-block .absolute-center {
    top: 53%;
    left: 44%;
  }
  .home-10_service-video-image { margin-left: -8%; margin-right: 7%; }
}

/* ----------------------------
  Header & sticky header
---------------------------- */
.site-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transition: transform 0.4s ease, background-color 0.4s ease, box-shadow 0.4s ease;
  z-index: 1030;
}

.site-header--sticky.scrolling {
  transform: translateY(-100%);
}

.site-header--sticky.reveal-header {
  transform: translateY(0);
  background-color: #fff;
  box-shadow: 0 12px 34px -11px rgba(65, 62, 101, 0.1);
}

.site-header--sticky.reveal-header .site-navbar {
  background-color: #fff;
  padding: 15px 10px;
  border-radius: 0;
  box-shadow: none;
}

.site-header--sticky.reveal-header .logo-dark { display: block; }
.site-header--sticky.reveal-header .logo-light { display: none; }

/* ----------------------------
  Brand logo
---------------------------- */
.brand-logo {
  display: flex;
  align-items: center;
}
.brand-logo img { max-height: 38px; }
.brand-logo .logo-dark { display: none; }

/* ----------------------------
  Colors & backgrounds
---------------------------- */
.bg-darkblue { background: #1d4989; }
.about_stats-single span { color: #3ea26c; }
.inner_banner-title { color: #1D4989; }

/* ----------------------------
  Container width
---------------------------- */
.container-pagewidth {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
@media (min-width: 1200px) {
  .container-pagewidth { max-width: 1400px; }
}

/* ----------------------------
  Feature cards
---------------------------- */
.feature-card {
  background-color: #EBF5EB;
  border: 0;
  border-radius: 10px;
  padding: 30px;
  transition: 300ms;
  cursor: default;
}

.feature-card img,
.feature-card h3,
.feature-card p {
  cursor: default;
}

.feature-card.clickable { cursor: pointer; }

.feature-card__icon { padding-bottom: 30px; }
.feature-card__title {
  padding-bottom: 15px;
  font-family: var(--font-family-base);
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  letter-spacing: -0.5px;
  color: #000;
}
.feature-card p {
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  margin-bottom: 0;
}
.feature-card p span { font-weight: 600; color: #3EA26C; }

.feature-card:hover {
  box-shadow: 10px 10px #1d4989;
  background-color: #F5F5F5;
  border: 0 solid #1D4989;
}

/* ----------------------------
  Service pages
---------------------------- */
.service-details_main-section { padding: 60px 0; }
.service-details_main-single { padding: 0 15px 40px; }
.service-details_main-title { margin-bottom: 20px; }

/* ----------------------------
  Services plan styling
---------------------------- */
.pricing-card-3__plan { color: #3EA26C; }
.pricing-card-3__list li::before { background-color: #3ea26c; }

/* ----------------------------
  Service cards
---------------------------- */
.service-card-2 {
  border: 0;
  background-color: #EBF5EB;
}
.service-card-2:hover { background-color: #F5F5F5; }

/* ----------------------------
  Homepage hero styling
---------------------------- */
.home-7_hero-content .hero-content__title { color: #1D4989; }
.testimonial-card__star { width: 40%; height: auto; display: inline-block; }
.home-10_service-video-block { position: relative; }
.home-10_service-video-image img { width: 100%; }

/* ----------------------------
  Mobile menu link hover
---------------------------- */
.site-menu-main .nav-link-item:hover { color: #000; }
/* Fix text page header ratio error on Google PSI -ze */