/* ======================================== */
/* GLOBX - SHARED UTILITIES                 */
/* ======================================== */

/* Ghost Button Styles - Common across hero landing pages */
.gx-btn-ghost {
  background: transparent !important;
  color: var(--text-light-3) !important;
  border: 2px solid var(--text-light-3) !important;
  box-shadow: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  font-weight: 300;
}

.gx-btn-ghost:hover,
.gx-btn-ghost:focus {
  /* Fill with solid brand primary on hover so white text from .gx-btn-primary
     stays readable when both classes are combined (e.g. About-Us "Inquire Now"). */
  background: var(--primary) !important;
  color: #ffffff !important;
  border-color: var(--primary) !important;
  box-shadow: 0 6px 20px rgba(26, 127, 174, 0.45) !important;
}

/* Save the Globe Button Styles - Common across pages */
.gx-save-globe-btn {
  display: inline-block;
  padding: 0.7rem 2.2rem;
  font-size: 1rem;
  font-family: "Poppins", Arial, sans-serif;
  font-weight: 300;
  color: var(--text-light-3) !important;
  background: linear-gradient(
    90deg,
    #ff914d 0%,
    var(--secondary) 100%
  ) !important;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background 0.2s;
  box-shadow: none;
  outline: none;
  letter-spacing: 0.01em;
}

.gx-save-globe-btn:hover {
  background: linear-gradient(
    90deg,
    var(--secondary) 0%,
    #ff914d 100%
  ) !important;
}

/* Primary Button Styles  high-contrast white text on solid primary */
.gx-btn-primary {
  background: var(--primary);
  color: #ffffff !important;          /* full white  was --text-light-2 (semi-transparent) */
  border-radius: 0.5rem;
  padding: 0.8rem 1.75rem;
  border: 2px solid var(--primary);   /* visible border for both states */
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.2px;
  box-shadow: 0 4px 14px rgba(26, 127, 174, 0.35);  /* primary-tinted shadow */
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s, border-color 0.2s;
  text-align: center;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.gx-btn-primary:hover,
.gx-btn-primary:focus {
  background: var(--primary-hover, #155f82);
  border-color: var(--primary-hover, #155f82);
  color: #ffffff !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(26, 127, 174, 0.45);
}

.gx-btn-primary:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.45);
  outline-offset: 2px;
}

.gx-btn-primary:active {
  transform: translateY(0);
  background: var(--primary) !important;
  color: #ffffff !important;
  box-shadow: 0 2px 8px rgba(26, 127, 174, 0.35);
}

/* Save the Globe Button Focus Styles */
.gx-save-globe-btn:focus-visible,
.gx-save-globe-btn:active {
  background: linear-gradient(
    90deg,
    #ff914d 0%,
    var(--secondary) 100%
  ) !important;
  color: var(--text-light-3) !important;
}

/* Arrow Rotation Styles - Common across pages */
.gx-arrows {
  transition: transform 0.4s ease-out;
  transform: rotate(0deg);
}

.gx-arrows.rotated {
  transform: rotate(90deg);
}

/* Hide arrows on mobile screens */
@media (max-width: 767.98px) {
  .gx-arrows {
    display: none;
  }
}

/* ======================================== */
/* NAVBAR VARIANTS - Common across pages   */
/* ======================================== */

.gx-products-section,
.gx-job-detail-hero,
.gx-products-section,
.gx-category-section {
  /* margin-top: 13rem !important; */
}
.gx-product-detail-section,
.gx-sell-excess-hero {
  /* margin-top: 11rem !important; */
}

/* @media (max-width: 991.98px) {
  .gx-product-detail-section,
  .gx-sell-excess-hero {
    margin-top: 8rem !important;
  }
} */

.gx-products-section .gx-search-section,
.gx-careers-hero .gx-search-section,
.gx-category-section .gx-search-section,
.gx-product-detail-section .gx-search-section {
  display: none;
}

/* ── Navbar  overlays hero, transparent when at top, solid when scrolled ── */
.gx-navbar-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-bottom: 0;
  background: transparent;
  box-shadow: none !important;
  transition: background-color .25s ease, box-shadow .25s ease;
}

/* When scrolled: navbar becomes fixed + solid white */
body.has-scrolled .gx-navbar-container {
  position: fixed;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04) !important;
  backdrop-filter: saturate(180%) blur(8px);
  -webkit-backdrop-filter: saturate(180%) blur(8px);
  animation: navbar-slide-down .3s ease;
}

@keyframes navbar-slide-down {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* Mobile: navbar overlays the hero (transparent at top, white when scrolled) */
@media (max-width: 991.98px) {
  .gx-navbar-container {
    position: absolute;
    top: 0;
    background: transparent;
    box-shadow: none !important;
  }
  body.has-scrolled .gx-navbar-container {
    position: fixed;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  }
}

/* ════════════════════════════════════════════════════════════════
   MOBILE SIDEBAR DRAWER  slide-in nav menu with close button
═══════════════════════════════════════════════════════════════ */
@media (max-width: 991.98px) {
  /* The collapse container becomes a fixed slide-in drawer */
  .gx-navbar .navbar-collapse {
    position: fixed !important;
    top: 0;
    right: 0;
    bottom: 0;
    width: 86%;
    max-width: 360px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    padding: 5rem 1.5rem 2rem;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 1100;
    display: block !important;       /* override Bootstrap's display: none */
    visibility: hidden;              /* but keep accessibility hidden when closed */
    flex-direction: column !important;
  }
  .gx-navbar .navbar-collapse.show {
    transform: translateX(0);
    visibility: visible;
  }
  /* Bootstrap's collapsing animation is replaced by our transform  no height anim */
  .gx-navbar .navbar-collapse.collapsing {
    height: 100vh !important;
    transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
    visibility: visible;
  }

  /* Backdrop overlay */
  .gx-drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 1099;
  }
  body.gx-drawer-open .gx-drawer-backdrop {
    opacity: 1;
    pointer-events: auto;
  }
  body.gx-drawer-open {
    overflow: hidden;                 /* prevent body scroll when drawer is open */
  }

  /* Close button (top-right of drawer) */
  .gx-drawer-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #1a1f2e;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.18s, transform 0.18s;
    z-index: 2;
  }
  .gx-drawer-close:hover,
  .gx-drawer-close:focus {
    background: #1a7fae;
    color: #fff;
    transform: rotate(90deg);
  }

  /* Drawer brand row (top of drawer) */
  .gx-drawer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    padding-bottom: 1.25rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e8ecf0;
  }
  .gx-drawer-brand img {
    height: 40px;
    width: auto;
  }
  .gx-drawer-tagline {
    font-size: 0.78rem;
    font-weight: 500;
    color: #6b7280;
    letter-spacing: 0.3px;
  }

  /* Nav links inside drawer  clean list */
  .gx-navbar .navbar-collapse .gx-nav-links {
    flex-direction: column !important;
    gap: 0.25rem;
    width: 100%;
    padding: 0;
  }
  .gx-navbar .navbar-collapse .gx-nav-links .nav-item {
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
  }
  .gx-navbar .navbar-collapse .gx-nav-links .nav-item:last-child {
    border-bottom: none;
  }
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link {
    color: #1a1f2e !important;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.95rem 0.25rem;
    margin: 0;
    width: 100%;
    text-align: left;
    transition: color 0.15s, padding-left 0.18s;
    display: flex;
    align-items: center;
    text-decoration: none;
  }
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link::after {
    content: '\f054';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    color: #cbd5e1;
    margin-left: auto;
    transition: color 0.15s, transform 0.18s;
  }
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link:hover,
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link:focus,
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link.active,
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link.gx-nav-active {
    color: #1a7fae !important;
    padding-left: 0.6rem;
    text-decoration: none;
  }
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link:hover::after,
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link.active::after,
  .gx-navbar .navbar-collapse .gx-nav-links .nav-link.gx-nav-active::after {
    color: #1a7fae;
    transform: translateX(3px);
  }

  /* Hide in-collapse desktop flag (mobile uses external flag in nav header) */
  .gx-navbar .navbar-collapse .gx-flag-selector { display: none !important; }
}

/* Desktop  backdrop, close button, drawer-brand all hidden */
@media (min-width: 992px) {
  .gx-drawer-backdrop,
  .gx-drawer-close,
  .gx-drawer-brand {
    display: none !important;
  }
}

.gx-navbar-sub-container {
  position: relative;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background: transparent;
  transition: background-color .25s ease;
  /* Auto height  was forcing 10rem which created the empty white bar */
  height: auto;
}

/* Solid sub-container when scrolled */
body.has-scrolled .gx-navbar-sub-container {
  background: #fff;
}

/* Mobile: sub-container transparent at top, white only when scrolled.
   Removed `height: 8rem` and `background: #fff` defaults that were creating
   the white strip ABOVE the hero. Auto height + transparent bg now. */
@media (max-width: 991.98px) {
  .gx-navbar-sub-container {
    background: transparent;
    height: auto;
  }
  body.has-scrolled .gx-navbar-sub-container {
    background: #fff;
  }
}

/* The compact pill search box (.gx-header-search in base.css) is now the
   single search entry point in the header on every page. The wide
   full-width "Search MPN here" bar that _header.php renders below the
   navbar is therefore hidden ALWAYS to avoid duplication. */
.gx-search-section-search-nav {
  display: none !important;
}

.search-navbar {
  box-shadow: unset !important;
  background: unset !important;
  position: static;
}

.gx-top-bar-search {
  position: relative;
  z-index: 1111;
}

.gx-search-section-search-nav {
  margin: 0 auto;
  padding-inline: 4rem;
  width: 100%;
}

@media (min-width: 1200px) {
  .gx-search-section-search-nav {
    width: 1220px !important;
  }
}

/* Tablet/mobile: tighten the horizontal padding so the search pill aligns with
   the rest of the page content instead of stretching edge-to-edge. */
@media (max-width: 991.98px) {
  .gx-search-section-search-nav {
    padding-inline: 1rem;
    max-width: 720px;
  }
}
@media (max-width: 575.98px) {
  .gx-search-section-search-nav {
    padding-inline: 0.75rem;
  }
}

.gx-navbar--application {
  background: #fff !important;
  border-bottom: 1px solid #e0e0e0 !important;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1.5px 4px rgba(0, 0, 0, 0.04) !important;
  /* top: 2rem; */
}

/* ======================================== */
/* VISUAL ELEMENTS - Common across pages   */
/* ======================================== */

.gx-wwd-visual {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 2.2rem;
  min-width: 340px;
  min-height: 320px;
}

.gx-wwd-chevron-outline,
.gx-wwd-chevron-masked {
  height: 320px;
  width: auto;
  display: block;
  position: static;
  object-fit: contain;
  max-width: 100%;
  margin-right: -7rem;
}

.gx-navbar--application .nav-link {
  /* color: #333 !important;
  font-weight: 500; */
}

.gx-navbar--application .nav-link:hover {
  color: var(--primary) !important;
}

.gx-navbar--application .gx-chevron svg {
  stroke: #333;
}

.gx-navbar--application .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(51, 51, 51, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ======================================== */
/* FORM SUBMIT BUTTONS - Common across pages */
/* ======================================== */

.gx-form-submit {
  margin-top: 3rem;
}

.gx-submit-btn {
  padding: 0.7rem 1rem;
  font-size: 1.1rem;
  font-weight: 400;
  border-radius: 0.5rem;
}

/* ======================================== */
/* DUAL CTA SECTION - Common across pages  */
/* ======================================== */

.gx-cta-section {
  background: #fff;
  padding: 4rem 0;
}

.gx-cta-card {
  height: 280px;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

.gx-cta-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.gx-cta-card--blue {
  background: var(--primary);
}

.gx-cta-card--orange {
  background: var(--secondary);
}

.gx-cta-content {
  text-align: center;
}

.gx-cta-heading {
  font-size: 1.5rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gx-cta-description {
  font-size: 1rem;
  color: #fff;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.95;
  font-weight: 300;
}

.gx-cta-btn {
  background: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  min-width: 200px;
}

.gx-cta-btn--blue {
  color: var(--primary);
}

.gx-cta-btn--blue:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gx-cta-btn--orange {
  color: var(--secondary);
}

.gx-cta-btn--orange:hover {
  background: #f8f9fa;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ======================================== */
/* SECTION STRUCTURE & LAYOUT              */
/* ======================================== */

/* Common Section Container */
.gx-section-common {
  padding: 7rem 0;
}

.gx-section-common--white {
  background: #fff;
}

.gx-problem-solution-section,
.gx-services-section,
.gx-markets-industries-section,
.gx-why-work-section,
.gx-save-globe-section {
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  place-content: center;
}
.gx-testimonials-section {
  min-height: 80vh;
}

.gx-section-common--light {
  background: var(--primary-light);
}

/* Common Content Container */
.gx-content-container-common {
  background: transparent;
  border-radius: 1rem;
  /* padding: 3rem; */
  width: 100%;
  min-height: 500px;
  position: relative;
}

.gx-content-container-common--bordered {
  border: 3px solid var(--primary-light);
  box-shadow: none;
}

/* ======================================== */
/* HEADER/TYPOGRAPHY HIERARCHY             */
/* ======================================== */

/* Section Header Container */
.gx-section-header-common {
  margin-bottom: 3rem;
}

/* Section Labels */
.gx-section-label-common {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.gx-section-label-common--small {
  font-size: 1.1rem;
}

.gx-section-label-common--medium {
  font-size: 1.5rem;
}

/* Section Headlines */
.gx-section-headline-common {
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.gx-section-headline-common--large {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.gx-section-headline-common--medium {
  font-size: 2.5rem;
  margin: 0;
}

/* Section Descriptions */
.gx-section-description-common {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
  /* width: 55ch; */
}

.gx-section-description-common--with-margin {
  margin-bottom: 0;
}

/* ======================================== */
/* CONTENT TYPOGRAPHY                      */
/* ======================================== */

/* Content Subtitles */
.gx-content-subtitle-common {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.gx-content-subtitle-common--medium {
  font-size: 1.2rem;
}

/* Content Titles */
.gx-content-title-common {
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.gx-content-title-common--large {
  font-size: 3.5rem;
  font-weight: 500;
}

.gx-content-title-common--medium {
  font-size: 2rem;
}

/* Content Body Text */
.gx-content-text-common {
  color: var(--text-dark);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 400;
}

.gx-content-text-common--with-margin {
  margin-bottom: 1.25rem;
}

.gx-content-text-common--no-margin {
  margin-bottom: 0;
}

.gx-content-text-common--centered {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.5rem;
}

/* ======================================== */
/* ILLUSTRATION SYSTEM                     */
/* ======================================== */

/* Illustration Container */
.gx-illustration-container-common {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 510px;
}

/* Illustration Wrapper */
.gx-illustration-wrapper-common {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gx-illustration-wrapper-common--with-padding {
  padding: 1rem;
}

/* Background Images */
.gx-illustration-background-common {
  position: absolute;
  top: 56%;
  left: 45%;
  transform: translate(-50%, -50%);
  max-width: 100%;
  height: auto;
  z-index: 1;
  opacity: 0.8;
}

/* Foreground Images */
.gx-illustration-foreground-common {
  position: relative;
  height: auto;
  z-index: 2;
  border-radius: 0.5rem;
}

.gx-illustration-foreground-common--full {
  max-width: 115%;
}

.gx-illustration-foreground-common--reduced {
  max-width: 62%;
}

/* ======================================== */
/* CONTENT LAYOUT                          */
/* ======================================== */

/* Content Areas */
.gx-content-area-common {
  padding-right: 2rem;
}

.gx-content-area-common--centered {
  text-align: center;
  padding-right: 0;
}

/* Content Display */
.gx-content-display-common {
  display: flex;
  align-items: flex-start;
}

/* ======================================== */
/* SIDEBAR PAGINATION - Common across pages */
/* ======================================== */

.gx-sidebar-pagination {
  margin-top: 1rem;
  gap: 0;
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  max-width: 100%;
  width: 100%;
  padding-inline: 2rem;
}

/* Navigation Arrow Buttons */
.gx-nav-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  background-color: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
  outline: none;
  position: relative;
}

.gx-nav-arrow:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: scale(1.05);
}

.gx-nav-arrow:active {
  transform: scale(0.95);
}

.gx-nav-arrow:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: rgba(255, 255, 255, 0.05);
}

.gx-nav-arrow:disabled:hover {
  transform: none;
  background-color: rgba(255, 255, 255, 0.05);
}

.gx-nav-arrow svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
}

/* Navigation arrows container */
.gx-nav-arrows {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Pagination indicator styling */
.gx-pagination-indicator {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  opacity: 0.9;
  user-select: none;
  min-width: 2.5rem;
  text-align: left;
  white-space: nowrap;
}

/* Responsive pagination indicator */
@media (max-width: 768px) {
  .gx-pagination-indicator {
    font-size: 0.8rem;
    min-width: 2rem;
  }
}

/* Ensure pagination layout works properly */
.gx-sidebar-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Ensure pagination is visible */
.gx-hero-pagination,
.gx-sidebar-pagination {
  z-index: 10;
  position: relative;
}

/* ======================================== */
/* RESPONSIVE DESIGN                       */
/* ======================================== */

/* Tablet Breakpoint (max-width: 991.98px) */
@media (max-width: 991.98px) {
  .gx-hero-pagination {
    justify-content: center !important;
  }

  .gx-section-headline-common--large,
  .gx-section-headline-common--medium {
    font-size: 2rem;
  }

  .gx-content-container-common {
    padding: 2rem;
    margin-top: 2rem;
  }

  .gx-content-title-common--large {
    font-size: 1.75rem;
  }

  .gx-content-title-common--medium {
    font-size: 1.75rem;
  }

  .gx-content-text-common--centered {
    font-size: 1rem;
  }

  .gx-content-area-common {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  /* Visual Elements Tablet */
  .gx-wwd-visual {
    display: none;
    min-width: 220px;
    min-height: 160px;
    justify-content: center;
    margin-bottom: 1.5rem;
    gap: 1.2rem;
  }

  .gx-wwd-chevron-outline,
  .gx-wwd-chevron-masked {
    height: 160px;
  }
}

/* Mobile Breakpoint (max-width: 767.98px) */
@media (max-width: 767.98px) {
  .gx-section-common {
    padding: 2rem 0;
  }

  .gx-section-headline-common--large,
  .gx-section-headline-common--medium {
    font-size: 1.75rem;
  }

  .gx-content-container-common {
    padding: 1.5rem;
  }

  .gx-content-title-common--large {
    font-size: 1.5rem;
  }

  .gx-content-title-common--medium {
    font-size: 1.5rem;
  }

  .gx-content-subtitle-common--medium {
    font-size: 1.1rem;
  }

  .gx-content-text-common--centered {
    font-size: 0.95rem;
  }

  /* CTA Section Responsive */
  .gx-cta-card {
    height: auto;
    min-height: 250px;
    margin-bottom: 1rem;
  }

  .gx-cta-heading {
    font-size: 1.75rem;
  }

  .gx-cta-description {
    font-size: 0.95rem;
  }

  /* Application Navbar Mobile */
  .gx-navbar--application {
    top: 0rem;
    padding: 0.5rem 0;
    min-height: auto;
  }

  .gx-navbar--application .container {
    min-height: auto;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}

/* Small Mobile Breakpoint (max-width: 575.98px) */
@media (max-width: 575.98px) {
  .gx-content-container-common {
    padding: 1rem;
  }

  .gx-section-headline-common--large,
  .gx-section-headline-common--medium {
    font-size: 1.5rem;
  }

  .gx-content-title-common--large {
    font-size: 1.25rem;
  }

  .gx-content-title-common--medium {
    font-size: 1.25rem;
  }

  /* Form Submit Button Mobile */
  .gx-submit-btn {
    width: 100%;
    padding: 0.875rem 2rem;
  }

  /* Visual Elements Small Mobile */
  .gx-wwd-visual {
    min-width: 80px;
    min-height: 70px;
    gap: 0.6rem;
    display: none;
  }

  .gx-wwd-chevron-outline,
  .gx-wwd-chevron-masked {
    height: 70px;
  }
}

@media (min-width: 992px) {
  .gx-navbar--application {
    /* top: 2rem; */
  }
}

/* ======================================== */
/* SEARCH BAR STYLES - Common across pages */
/* ======================================== */

.gx-search-section {
  margin-bottom: 2rem;
}

.gx-search-container {
  margin: 0 auto;
}

.gx-search-input-group {
  transition: box-shadow 0.2s, border-color 0.2s;
  display: flex;
  background-color: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 5px;
  overflow: hidden;
  /* box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05); */
}

/* .gx-search-input-group:focus-within {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border-color: var(--primary);
} */

.gx-search-input {
  flex: 1;
  border: none;
  padding: 0.875rem 1rem;
  font-size: 1rem;
  color: #333;
  /* background: transparent; */
  outline: none;
}

.gx-search-input::placeholder {
  color: #999;
}

.gx-search-button {
  background: var(--primary);
  border: none;
  padding: 0.875rem 1.25rem;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.2s;
}

.gx-search-button:hover {
  background: var(--primary-dark);
}

.gx-search-button i {
  font-size: 1rem;
}

/* ======================================== */
/* SEARCH BAR RESPONSIVE DESIGN            */
/* ======================================== */

/* Mobile */
@media (max-width: 767.98px) {
  .gx-search-container {
    max-width: 100%;
    padding: 0 1rem;
  }
}

/* Small Mobile */
@media (max-width: 575.98px) {
  .gx-search-input-group {
    /* flex-direction: column; */
    border-radius: 0.5rem;
  }

  .gx-search-input {
    width: 100%;
    border-bottom: 1px solid #e0e0e0;
    border-radius: 0.5rem 0.5rem 0 0;
  }

  .gx-search-button {
  }
}

/* ======================================== */
/* ANCHOR NAVIGATION STYLES                */
/* ======================================== */

/* Anchor highlight effect for navigation feedback */
.gx-anchor-highlight {
  animation: anchorHighlight 2s ease-out;
}

@keyframes anchorHighlight {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(0, 123, 255, 0.3);
    transform: scale(1.02);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    transform: scale(1);
  }
}

/* Ensure smooth scrolling behavior */
html {
  scroll-behavior: smooth;
}

/* Scroll offset for fixed headers */
section[id] {
  scroll-margin-top: 100px; /* Adjust based on your header height */
}

/* Enhanced focus styles for accessibility */
section[id]:focus {
  outline: 2px solid var(--primary, #007bff);
  outline-offset: 2px;
}

/* ======================================== */
/* END ANCHOR NAVIGATION STYLES            */
/* ======================================== */
