
 

    [data-theme=blue] {
      background-color: #757629
    }

    .content-grid {
      --padding-inline: 1rem;
      width: 100%;
      --content-max-width: 1500px;
      --breakout-max-width: 85ch;
      --breakout-size: calc((var(--breakout-max-width) - var(--content-max-width)) / 2);
      display: grid;
      grid-template-columns:
        [full-width-start] minmax(var(--padding-inline), 1fr) [breakout-start] minmax(0, var(--breakout-size)) [content-start] min(100% - (var(--padding-inline) * 2), var(--content-max-width)) [content-end] minmax(0, var(--breakout-size)) [breakout-end] minmax(var(--padding-inline), 1fr) [full-width-end];
    }

    .content-grid> :not(.breakout, .full-width) {
      grid-column: content;
      width: 100%;
      padding-inline: 0px;
    }

    .content-grid>.breakout {
      grid-column: breakout
    }

    .content-grid>.full-width {
      grid-column: full-width
    }

    .testimonial-section.content-grid {
      width: 100%;
      max-width: 1500px;
      margin-inline: auto;
    }


    :root {
      --green: #174785;
      --yellow: #f28b21fa;
      --white: #ffffff;
      --light-bg: #ecf5f4;
      --text: #636363;
      --dark: #fff;
      --black2: #222222;
      --black3: #333333;
      --black4: #1a1a1a;
      --border: #dddddd;
    }

 
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Work Sans', sans-serif;
      background: #f0f0f0;
    }

    /* ══════════════════════════════════════════
   TOPBAR
   ══════════════════════════════════════════ */
    .topbar {
      background: var(--light-bg);
      overflow: hidden;
    }

    .topbar__inner {
      display: flex;
      align-items: stretch;
      justify-content: space-between;
      width: 100%;
    }

    .topbar__note {
      display: flex;
      align-items: center;
      gap: 18px;
    }

    .topbar__note__title {
      flex-shrink: 0;
      padding: 8px 7px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .05em;
      color: #fff;
      text-transform: uppercase;
      /* background: var(--yellow); */
      background: linear-gradient(135deg, #e17416 0, #f97809 100%);
      writing-mode: vertical-lr;
      transform: rotate(180deg);
      position: relative;
      align-self: stretch;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .topbar__note__title::after {
      content: "";
      position: absolute;
      top: 50%;
      left: -9px;
      transform: translateY(-50%);
      border-style: solid;
      border-width: 9px 9px 9px 0;
      border-color: transparent #e17416 transparent transparent;
          /* background: linear-gradient(135deg, #e17416 0, #f97809 100%); */
    }

    .topbar__note__text {
      font-size: 13.5px;
      color: var(--black3);
      padding-left: 8px;
    }

    .topbar__info {
      display: flex;
      align-items: center;
      gap: 30px;
      list-style: none;
      padding: 10px 0;
    }

    .topbar__info li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13.5px;
      color: var(--text);
    }

    .topbar__info li svg {
      color: var(--green);
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    .topbar__info li a {
      color: inherit;
      text-decoration: none;
      transition: color .3s;
    }

    .topbar__info li a:hover {
      color: var(--green);
    }

    .topbar__social-wrap {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 3px 0 28px;
      margin-left: 20px;
      position: relative;
      z-index: 1;
    }

    .topbar__social-wrap::before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      width: 100vw;
      background: var(--green);
      z-index: -1;
      clip-path: polygon(14px 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .topbar__social-wrap p {
      font-size: 13px;
      color: var(--white);
      font-weight: 500;
      white-space: nowrap;
    }

    /* shared social links */
    .menu-social-links {
      display: flex;
      gap: 8px;
      align-items: center;
    }

    .menu-social-links a {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, .35);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .8);
      text-decoration: none;
      transition: all .3s;
    }

    .menu-social-links a svg {
      width: 11px;
      height: 11px;
      fill: currentColor;
    }

    .menu-social-links a:hover {
      border-color: var(--yellow);
      color: var(--yellow);
    }

    /* ══════════════════════════════════════════
   MAIN HEADER
   ══════════════════════════════════════════ */
    .main-header {
      background: var(--white);
      box-shadow: 0 2px 20px rgba(0, 0, 0, .06);
      position: sticky;
      top: 0;
      z-index: 999;
    }

    .main-header__inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
    }

    /* ── Logo (real image) ── */
    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .logo__img-wrap {
      width: 200px;
      height: 63px;
      overflow: hidden;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      
    }

    .logo__img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      
    }

    .logo__text {
      font-size: 28px;
      font-weight: 700;
      color: var(--dark);
      letter-spacing: -.5px;
    }

    .logo__text span {
      color: var(--green);
    }

    /* ── Desktop nav ── */
    .main-nav {
      display: flex;
      align-items: center;
    }

    .main-menu__list {
      display: flex;
      align-items: center;
      list-style: none;
    }

    .main-menu__list>li {
      position: relative;
    }

    .main-menu__list>li>a {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 38px 18px;
      font-size: 1.1rem;
      font-weight: 500;
      color: var(--black3);
      text-decoration: none;
      transition: color .3s;
      white-space: nowrap;
    }

    .main-menu__list>li>a .caret {
      width: 10px;
      height: 10px;
      transition: transform .3s;
    }

    .main-menu__list>li:hover>a,
    .main-menu__list>li.active>a {
      color: var(--yellow);
    }

    .main-menu__list>li:hover>a .caret {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 100%;
      left: 0;
      min-width: 200px;
      background: var(--white);
      box-shadow: 0 10px 40px rgba(0, 0, 0, .1);
      list-style: none;
      padding: 10px 0;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all .3s;
      z-index: 100;
    }

    .main-menu__list>li:hover .dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .dropdown-menu li a {
      display: block;
      padding: 9px 22px;
      font-size: 14px;
      font-weight: 500;
      color: var(--black3);
      text-decoration: none;
      transition: all .25s;
    }

    .dropdown-menu li:hover>a {
      background: var(--yellow);
      color: var(--dark);
      padding-left: 28px;
    }

    /* ── Header actions ── */
    .header-actions {
      display: flex;
      align-items: center;
      gap: 4px;
      flex-shrink: 0;
    }

    .search-btn {
      background: none;
      border: none;
      cursor: pointer;
      padding: 8px 14px;
      color: var(--dark);
      transition: color .3s;
    }

    .search-btn svg {
      width: 20px;
      height: 20px;
      stroke: currentColor;
      fill: none;
    }

    .search-btn:hover {
      color: var(--yellow);
    }

    /* ── Findox Button ── */
    .findox-btn {
      display: inline-flex;
      gap: 20px;
      align-items: center;
      position: relative;
      cursor: pointer;
      vertical-align: middle;
      -webkit-appearance: none;
      border: none;
      outline: none !important;
      padding: 7px 8px 7px 32px;
      /* background-color: var(--yellow); */
      background: linear-gradient(135deg, #e17416 0, #f97809 100%);
      z-index: 1;
      overflow: hidden;
      border-radius: 0px 100px 100px 0px;
      transition: 500ms;
      text-decoration: none;
    }

    .findox-btn::before {
      content: "";
      width: 2px;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-color: var(--green);
      transition: all 500ms ease;
    }

    .findox-btn::after {
      content: "";
      width: 0%;
      height: 100%;
      position: absolute;
      top: 0;
      right: 0;
      z-index: -1;
      background-color: var(--green);
      transition: all 500ms ease;
    }

    .findox-btn:hover::after {
      width: 100%;
      left: 0;
    }

    .findox-btn__text {
      display: inline-block;
      font-size: 15px;
      color: var(--dark);
      font-weight: 500;
      line-height: 1.25;
      text-transform: uppercase;
      transition: all 500ms ease;
      font-family: 'Work Sans', sans-serif;
    }

    .findox-btn__icon-box {
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      border-radius: 50%;
      background-color: var(--green);
      transition: all 500ms ease;
    }

    .findox-btn__icon {
      width: 14px;
      height: 14px;
      position: relative;
      overflow: hidden;
      color: var(--white);
      transition: all 500ms ease;
    }

    .findox-btn__icon svg {
      width: 14px;
      height: 14px;
      position: absolute;
      bottom: 0;
      left: 0;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      /* transform: rotate(-45deg); */
      transition: all 0.5s ease;
    }

    .findox-btn__icon svg.arrow2 {
      left: -15px;
      bottom: -15px;
    }

    .findox-btn:hover .findox-btn__text {
      color: var(--white);
    }

    .findox-btn:hover .findox-btn__icon-box {
      background-color: var(--yellow);
    }

    .findox-btn:hover .findox-btn__icon {
      color: var(--green);
    }

    .findox-btn:hover .findox-btn__icon svg {
      transform: translate(15px, -15px) rotate(-10deg);
    }

    /* ── Hamburger ── */
    .hamburger {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--yellow);
      border: none;
      cursor: pointer;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 5px;
      margin-left: 12px;
      transition: background .3s;
      flex-shrink: 0;
    }

    .hamburger:hover {
      background: var(--green);
    }

    .hamburger span {
      display: block;
      width: 20px;
      height: 2px;
      background: var(--dark);
      border-radius: 2px;
      transition: background .3s, width .3s;
    }

    .hamburger:hover span {
      background: var(--dark);
    }

    .hamburger span:nth-child(2) {
      width: 14px;
      margin-left: 6px;
    }

    .hamburger:hover span:nth-child(2) {
      width: 20px;
      margin-left: 0;
    }

    /* ── Responsive ── */
    @media (max-width: 1100px) {

    .topbar__info {
   display: none;
    }

      .main-menu__list {
        display: none;
      }

      .search-btn {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .topbar {
        display: none !important;
      }

      .contact-btn {
        display: none;
      }

      .main-header__inner {
        padding-block: 14px;
      }
    }

    /* ══════════════════════════════════════════
   SIDEBAR OVERLAY
   ══════════════════════════════════════════ */
    .sidebar-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, .55);
      z-index: 1998;
      opacity: 0;
      visibility: hidden;
      transition: opacity .4s, visibility .4s;
    }

    .sidebar-overlay.active {
      opacity: 1;
      visibility: visible;
    }

    /* ══════════════════════════════════════════
   SIDEBAR PANEL
   ══════════════════════════════════════════ */
    .sidebar-panel {
      position: fixed;
      top: 0;
      right: 0;
      width: 340px;
      max-width: 90vw;
      height: 100%;
      background: var(--white);
      z-index: 1999;
      padding: 40px 36px;
      overflow-y: auto;
      display: flex;
      flex-direction: column;
      gap: 28px;
      transform: translateX(100%);
      transition: transform .45s cubic-bezier(.4, 0, .2, 1);
    }

    .sidebar-panel.active {
      transform: translateX(0);
    }
/* 
    .sidebar-close {
      position: absolute;
      top: 48px;
      right: 48px;
      background: none;
      border: none;
      cursor: pointer;
      transition: color .3s, transform .3s;
      color: var(--dark);
    } */

.sidebar-close {
  position: absolute;
  top: 12px;
  right: 12px;

  width: 48px;
  height: 48px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: none;
  border: none;
  cursor: pointer;

  z-index: 2; /* prevents overlap issues */
}


    .sidebar-close svg {
      width: 22px;
      height: 22px;
      stroke: #000;
      fill: none;
    }

    .sidebar-close:hover {
      color: var(--green);
      transform: rotate(90deg);
    }

    .sidebar-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      padding-top: 10px;
    }

    .sidebar-logo .logo__img-wrap {
      width: auto;
      height: auto;
    }

    .sidebar-logo .logo__text {
      font-size: 26px;
      font-weight: 700;
      color: var(--dark);
    }

    .sidebar-desc {
      font-size: 14.5px;
      color: var(--text);
      line-height: 1.75;
      border-bottom: 1px solid var(--border);
      padding-bottom: 28px;
    }

    .sidebar-section__title {
      font-size: 20px;
      font-weight: 700;
      color: var(--black3);
      position: relative;
      padding-bottom: 14px;
      margin-bottom: 6px;
    }

    .sidebar-section__title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 36px;
      height: 3px;
      background: var(--green);
      border-radius: 2px;
    }

    .sidebar-section__title::before {
      content: "";
      position: absolute;
      left: 44px;
      bottom: 0;
      width: 10px;
      height: 3px;
      background: var(--yellow);
      border-radius: 2px;
    }

    .sidebar-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
      margin-top: 20px;
    }

    .sidebar-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      font-size: 16px;
      color: var(--black3);
      line-height: 1.6;
    }

    .sidebar-contact-list li a {
      color: inherit;
      text-decoration: none;
      transition: color .3s;
    }

    .sidebar-contact-list li a:hover {
      color: var(--green);
    }

    .menu-contact-icon {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .menu-contact-icon svg {
      width: 15px;
      height: 15px;
      stroke: white;
      fill: none;
    }

    .sidebar-social {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 20px;
    }

    .sidebar-social a,
    .mobile-sidebar-social a {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--green);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      text-decoration: none;
      transition: background .3s, color .3s;
    }

    .sidebar-social a svg,
    .mobile-sidebar-social a svg {
      width: 14px;
      height: 14px;
      fill: currentColor;
    }

    .sidebar-social a:hover,
    .mobile-sidebar-social a:hover {
      background: var(--yellow);
      color: var(--dark);
    }

    .sidebar-newsletter {
      border-top: 1px solid var(--border);
      padding-top: 28px;
    }

    .sidebar-newsletter p {
      font-size: 14px;
      color: var(--text);
      margin: 14px 0 16px;
      line-height: 1.65;
    }

    .newsletter-form {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .newsletter-form input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      font-family: 'Work Sans', sans-serif;
      font-size: 14px;
      color: var(--dark);
      outline: none;
      border-radius: 4px;
      transition: border-color .3s;
    }

    .newsletter-form input:focus {
      border-color: var(--green);
    }

    .newsletter-form button {
      width: 100%;
      padding: 13px;
      background: var(--green);
      color: var(--white);
      border: none;
      font-family: 'Work Sans', sans-serif;
      font-size: 14px;
      font-weight: 600;
      letter-spacing: .04em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 4px;
      transition: background .3s, color .3s;
    }

    .newsletter-form button:hover {
      background: var(--yellow);
      color: var(--dark);
    }

    /* ── Mobile nav (inside sidebar) ── */
    .mobile-nav-list {
      display: none;
      flex-direction: column;
      list-style: none;
      width: 100%;
    }

    .mobile-nav-list li {
      border-bottom: 1px solid rgba(255, 255, 255, .07);
    }

    .mobile-nav-list li:last-child {
      border-bottom: none;
    }

    .mnav-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
    }

    .mnav-row>a {
      font-size: 16px;
      font-weight: 600;
      color: var(--black4);
      text-decoration: none;
      transition: color .3s;
    }

    .mnav-row>a:hover {
      color: var(--yellow);
    }

    .mobile-contact-info {
      display: none;
      flex-direction: column;
      gap: 14px;
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 4px;
    }

    .mobile-contact-info a {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 16px;
      color: var(--black4);
      text-decoration: none;
      transition: color .3s;
    }

    .mobile-contact-info a:hover {
      color: var(--yellow);
    }

    .mobile-contact-info .menu-contact-icon {
      width: 34px;
      height: 34px;
    }

    .mobile-sidebar-social {
      display: none;
      flex-wrap: wrap;
      gap: 10px;
    }

    /* ── Mobile sidebar overrides ── */
    @media (max-width: 767px) {
      .sidebar-panel {
        background: #fff;
        padding: 30px 24px 40px;
        width: 300px;
        gap: 20px;
      }

      .sidebar-close {
        color: var(--black4);
      }

      .sidebar-close:hover {
        color: var(--yellow);
      }

      .sidebar-logo .logo__text {
        color: var(--white);
      }

      .sidebar-desc {
        display: none;
      }

      .sidebar-contact {
        display: none;
      }

      .sidebar-newsletter {
        display: none;
      }

      .mobile-nav-list {
        display: flex;
      }

      .mobile-contact-info {
        display: flex;
      }

      .mobile-sidebar-social {
        display: flex;
      }
    }
