@charset "UTF-8";
/* =============================================================================
   Mobile & Tablet Styles – Divi Child Theme (Homepage)
   ============================================================================= */
/* Hide JS-created mobile elements on desktop */
@media (min-width: 981px) {
  .mobile-menu-overlay,
  .mobile-menu-panel,
  .shop-filter-overlay,
  .shop-filter-panel,
  .shop-filter-toggle {
    display: none !important;
  }
}
/* =============================================================================
   Tablet (max-width: 980px)
   ============================================================================= */
@media all and (max-width: 980px) {
  /* Visibility Utilities */
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: block !important;
  }
  .woocommerce-result-count {
    text-align: center !important;
    width: 100% !important;
  }
  html, body, #page-container {
    overflow-x: hidden !important;
    max-width: 100vw !important;
  }
  html #logo {
    max-height: 50% !important;
  }
  h1.route {
    width: auto !important;
  }
  /* ---------------------------------------------------------------------------
     Mobile Slide Menu – Panel & Overlay
     --------------------------------------------------------------------------- */
  #et_mobile_nav_menu .mobile_nav .et_mobile_menu {
    display: none !important;
  }
  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 99998;
    pointer-events: none;
    transition: background 0.4s ease;
  }
  .mobile-menu-overlay.is-visible {
    background: rgba(0, 0, 0, 0.55);
    pointer-events: auto;
    backdrop-filter: blur(2px);
  }
  .mobile-menu-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #0a1628;
    z-index: 99999;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
  }
  .mobile-menu-panel.is-open {
    transform: translateX(0);
  }
  .mobile-menu-panel.is-closing {
    transform: translateX(-30%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.55, 0, 1, 0.45), opacity 0.35s ease;
  }
  .mobile-menu-panel__header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .mobile-menu-panel__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .mobile-menu-panel__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
  }
  .mobile-menu-panel__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 12px 0;
  }
  .mobile-menu-panel__body::-webkit-scrollbar {
    width: 3px;
  }
  .mobile-menu-panel__body::-webkit-scrollbar-track {
    background: transparent;
  }
  .mobile-menu-panel__body::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
  }
  .slide-menu {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .slide-menu li {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
  }
  .slide-menu li a {
    display: block;
    padding: 14px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.2px;
    text-decoration: none;
    transition: all 0.25s ease;
  }
  .slide-menu li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    padding-left: 30px;
  }
  .slide-menu li.current-menu-item > a, .slide-menu li.current_page_item > a {
    color: #ED8B00;
    font-weight: 600;
    border-left: 3px solid #ED8B00;
    padding-left: 21px;
  }
  .menu-item-has-children > a {
    padding-right: 48px;
  }
  .menu-item-has-children .submenu-toggle {
    position: absolute;
    right: 12px;
    top: 10px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.4);
    transition: all 0.25s ease;
  }
  .menu-item-has-children .submenu-toggle svg {
    transition: transform 0.3s ease;
  }
  .menu-item-has-children .submenu-toggle:hover {
    color: #ED8B00;
    background: rgba(237, 139, 0, 0.1);
  }
  .menu-item-has-children.submenu-open > .submenu-toggle {
    color: #ED8B00;
  }
  .menu-item-has-children.submenu-open > .submenu-toggle svg {
    transform: rotate(180deg);
  }
  .menu-item-has-children.submenu-open > a {
    color: #fff;
    font-weight: 600;
  }
  .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.04);
  }
  .sub-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }
  .sub-menu li:last-child {
    border-bottom: none;
  }
  .sub-menu li a {
    padding: 11px 24px 11px 40px;
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    position: relative;
  }
  .sub-menu li a::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease;
  }
  .sub-menu li a:hover {
    color: #ED8B00;
    padding-left: 44px;
  }
  .sub-menu li a:hover::before {
    background: #ED8B00;
  }
  .sub-menu li.current-menu-item > a, .sub-menu li.current_page_item > a {
    color: #ED8B00;
    border-left: none;
    padding-left: 40px;
  }
  .sub-menu li.current-menu-item > a::before, .sub-menu li.current_page_item > a::before {
    background: #ED8B00;
    width: 6px;
    height: 6px;
  }
  .sub-menu .sub-menu {
    background: rgba(0, 0, 0, 0.15);
  }
  .sub-menu .sub-menu li a {
    padding-left: 56px;
  }
  .sub-menu .sub-menu li a::before {
    left: 42px;
    width: 4px;
    height: 4px;
  }
  .sub-menu .sub-menu li a:hover {
    padding-left: 60px;
  }
  body.mobile-menu-open {
    overflow: hidden !important;
  }
  /* ---------------------------------------------------------------------------
     Hero Section (video background)
     --------------------------------------------------------------------------- */
  .et_pb_section_0.et_pb_section_video,
  body #page-container .et-db #et-boc .et-l .et_pb_section_0.et_pb_section {
    min-height: 85vh;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 0 !important;
    margin: 0 !important;
    background-color: rgba(0, 0, 0, 0.43) !important;
  }
  body #page-container .et-db #et-boc .et-l .et_pb_row_0.et_pb_row,
  body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_0.et_pb_row,
  #transparent-container {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 !important;
    margin: 0 !important;
    background-color: transparent !important;
    background: transparent !important;
    border: none !important;
    overflow: visible !important;
  }
  .et_pb_section_0 .et_pb_column {
    padding: 0 !important;
  }
  #transparent-container {
    height: auto !important;
    padding: 80px 24px 40px !important;
    gap: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  #transparent-container .et_pb_text_inner {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }
  #transparent-container .et_pb_text_inner h1 {
    font-size: 36px !important;
    line-height: 44px !important;
    letter-spacing: -0.72px !important;
    color: #fff !important;
    margin-bottom: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    text-align: center !important;
  }
  #transparent-container .et_pb_text_inner p.self {
    font-size: 16px !important;
    line-height: 26px !important;
    max-width: 600px !important;
    margin: 0 auto !important;
    color: rgba(255, 255, 255, 0.8) !important;
  }
  #transparent-container .et_pb_text_inner .btn-cont {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 14px !important;
    margin-top: 8px;
  }
  #transparent-container .et_pb_text_inner .btn-cont a.see-portfolio,
  #transparent-container .et_pb_text_inner .btn-cont a.contact-button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 32px !important;
    font-size: 15px !important;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    white-space: nowrap;
    transition: opacity 0.2s ease;
  }
  #transparent-container .et_pb_text_inner .btn-cont a.see-portfolio {
    background: #ED8B00 !important;
    color: #fff !important;
  }
  #transparent-container .et_pb_text_inner .btn-cont a.contact-button {
    background: rgba(255, 255, 255, 0.15) !important;
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(4px);
  }
  /* ---------------------------------------------------------------------------
     About Section (#about-section)
     --------------------------------------------------------------------------- */
  #about-section {
    padding: 0 30px !important;
  }
  #about_row {
    padding: 60px 0 !important;
    flex-direction: column !important;
    display: flex !important;
  }
  #about_row .et_pb_column_1 {
    width: 100% !important;
    margin-bottom: 30px;
  }
  #about_row .et_pb_column_1 .qoute {
    font-size: 60px !important;
    text-align: center !important;
  }
  #about_row .et_pb_column_1 p {
    text-align: center !important;
    font-size: 16px;
    line-height: 26px;
  }
  #about_row .lab-image .et_pb_image_wrap img {
    width: 100% !important;
    height: auto !important;
    border-radius: 16px;
  }
  #about_row .et_pb_column_2 {
    width: 100% !important;
  }
  p.about_title {
    font-size: 32px !important;
    line-height: 42px !important;
    text-align: center !important;
    margin: 20px auto 20px !important;
  }
  .blue-cont {
    padding: 24px !important;
    border-radius: 20px;
  }
  .blue-cont p {
    font-size: 15px;
    line-height: 24px;
  }
  div#about_row {
    width: 80%;
  }
  html #logo {
    max-height: 50% !important;
  }
  /* ---------------------------------------------------------------------------
     Core Expertise Section
     --------------------------------------------------------------------------- */
  .core-expertise {
    padding: 60px 30px !important;
    gap: 32px;
  }
  .core-expertise__title {
    font-size: 42px;
    line-height: 52px;
  }
  .core-expertise__cards {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin: 30px auto;
  }
  .expertise-card {
    width: 100% !important;
    max-width: 100%;
  }
  /* ---------------------------------------------------------------------------
     Portfolio Section
     --------------------------------------------------------------------------- */
  .portfolio {
    padding: 60px 30px !important;
    gap: 32px;
  }
  .portfolio .portfolio__title {
    font-size: 42px;
    line-height: 52px;
  }
  .portfolio .cards {
    flex-direction: column;
    gap: 20px;
  }
  .portfolio .card {
    max-width: 100%;
    width: 100%;
  }
  .portfolio .card__description {
    height: auto;
  }
  /* ---------------------------------------------------------------------------
     Partners Carousel Section
     --------------------------------------------------------------------------- */
  .partners .partners__content {
    padding: 20px 30px;
    width: 100%;
  }
  .partners .partners__header {
    width: 100% !important;
    height: auto;
  }
  .partners .partners__title {
    font-size: 36px;
    line-height: 44px;
    text-align: left !important;
  }
  .partners .partners__subtitle {
    text-align: left !important;
  }
  .partners .partners__fade {
    display: none;
  }
  /* ---------------------------------------------------------------------------
     Founder / About Leader Section
     --------------------------------------------------------------------------- */
  .founder {
    padding: 60px 30px !important;
  }
  .founder__content {
    gap: 40px;
  }
  .founder__profile {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }
  .founder__photo {
    width: 280px;
    height: 280px;
  }
  .founder__name {
    font-size: 36px;
    line-height: 44px;
  }
  .founder__bio {
    align-items: center;
  }
  .founder__text {
    font-size: 16px;
    line-height: 26px;
  }
  .founder__stats {
    align-items: stretch;
  }
  .founder__stats-row {
    flex-direction: column;
    gap: 20px !important;
  }
  .stat-image--lg {
    width: 100% !important;
    top: 0;
  }
  .stat-image--wide {
    height: auto;
    min-height: 134px;
  }
  .stat-cards-stack {
    gap: 20px;
    width: 100%;
  }
  .stat-cards-stack .stat-card {
    width: 100%;
  }
  .founder__stats-row--bottom > .stat-card {
    width: 100% !important;
  }
  /* ---------------------------------------------------------------------------
     RPA Section (Regional Entities page)
     --------------------------------------------------------------------------- */
  h2.rpa-title {
    font-size: 28px !important;
    line-height: 36px !important;
    text-align: center !important;
  }
  #rpa .rpa-subtitle {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  #rpa .transparent-cont {
    padding: 20px 14px !important;
    gap: 20px !important;
  }
  .row-content {
    flex-direction: column !important;
    height: auto !important;
    gap: 16px !important;
  }
  .main-image {
    min-height: 200px !important;
    width: 100% !important;
    border-radius: 16px !important;
    background-size: cover !important;
  }
  a.rpa-btn:first-child {
    position: relative;
    top: 0px;
  }
  .cont-api-text {
    width: 100% !important;
    padding: 20px !important;
    align-items: flex-start !important;
    gap: 10px !important;
    border-radius: 16px !important;
    display: inline-table;
  }
  h3.rpa-content-title {
    font-size: 20px !important;
    line-height: 28px !important;
    text-align: left !important;
  }
  p.rpa-text {
    font-size: 14px !important;
    line-height: 22px !important;
    text-align: left !important;
    align-self: stretch !important;
  }
  .cont-api-text {
    align-items: flex-start !important;
  }
  .rpa-card-email {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: flex-start !important;
    align-self: stretch !important;
    gap: 5px !important;
    width: 100% !important;
  }
  .rpa-card-email svg {
    flex-shrink: 0 !important;
    width: 18px !important;
    height: 18px !important;
    margin-top: 1px !important;
  }
  .rpa-card-email a {
    font-size: 12px !important;
    line-height: 1.4 !important;
    word-break: break-word !important;
    min-width: 0 !important;
    flex: 1 !important;
  }
  .rpa-card-action {
    align-self: flex-start !important;
    margin-top: 4px !important;
  }
  /* ---------------------------------------------------------------------------
     #oliver – About Leader (if used on homepage)
     --------------------------------------------------------------------------- */
  #oliver .about__content {
    padding: 40px 30px 80px;
    gap: 40px;
  }
  #oliver .leader {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  #oliver .leader__photo {
    width: 260px;
    height: 320px;
    margin-top: -100px;
  }
  #oliver .leader__info {
    width: 100%;
  }
  #oliver .leader__name {
    font-size: 36px;
    line-height: 44px;
    text-align: center;
  }
  #oliver .leader__bio {
    font-size: 16px;
    text-align: center;
  }
  #oliver .stats__row-top,
  #oliver .stats__row-bottom {
    flex-direction: column;
    gap: 20px;
  }
  #oliver .stats__image-lg {
    width: 100%;
    height: 220px;
  }
  #oliver .stat-card--wide {
    width: 100%;
  }
  /* ---------------------------------------------------------------------------
     Quote Banner
     --------------------------------------------------------------------------- */
  .quote-banner {
    padding: 40px 30px !important;
  }
  .quote-banner .et_pb_text_inner {
    padding: 30px 20px;
    flex-direction: column;
    align-items: center !important;
    gap: 16px;
  }
  .quote-banner .quote-banner__text {
    width: 100%;
    text-align: center;
  }
  .quote-banner .quote-banner__quote {
    font-size: 20px;
    line-height: 28px;
    text-align: center;
  }
  .quote-banner .quote-banner__author {
    font-size: 18px;
    text-align: center;
  }
  .contact {
    background: rgba(255, 255, 255, 0.1) !important;
  }
  /* ---------------------------------------------------------------------------
     Technical Leadership Section
     --------------------------------------------------------------------------- */
  .tech-leadership {
    padding: 40px 30px !important;
    display: flex !important;
    width: 100% !important;
  }
  .tech-leadership .tech-leadership__row {
    flex-direction: column !important;
    height: auto !important;
    gap: 30px !important;
    width: 100% !important;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content {
    width: 100% !important;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content h1 {
    font-size: 36px !important;
    line-height: 44px !important;
    text-align: center !important;
    letter-spacing: -0.72px !important;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content p:has(svg) {
    display: flex;
    justify-content: center;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content p:has(svg) svg {
    width: 100% !important;
    max-width: 300px;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content p {
    font-size: 16px !important;
    text-align: center !important;
    line-height: 26px !important;
  }
  .tech-leadership .tech-leadership__images {
    min-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 16px !important;
  }
  .tech-leadership .tech-leadership__photo {
    position: relative !important;
    outline-width: 6px !important;
    transform: none !important;
    width: 85% !important;
    max-width: 400px !important;
    height: auto !important;
    border-radius: 8px;
  }
  .tech-leadership .tech-leadership__photo--top {
    top: auto !important;
    right: auto !important;
    transform: rotate(2deg) !important;
  }
  .tech-leadership .tech-leadership__photo--bottom {
    bottom: auto !important;
    right: auto !important;
    transform: rotate(-2deg) !important;
  }
  body #page-container .et-db #et-boc .et-l .et_pb_row_3.et_pb_row,
  body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_3.et_pb_row {
    padding: 0 !important;
  }
  /* ---------------------------------------------------------------------------
     Regional Experts Section
     --------------------------------------------------------------------------- */
  .et_pb_section_5.et_pb_section,
  div.et_pb_section.et_pb_section_5 {
    padding: 50px 20px !important;
  }
  body #page-container .et-db #et-boc .et-l .et_pb_row_4.et_pb_row,
  body.et_pb_pagebuilder_layout.single #page-container #et-boc .et-l .et_pb_row_4.et_pb_row,
  body.et_pb_pagebuilder_layout.single.et_full_width_page #page-container #et-boc .et-l .et_pb_row_4.et_pb_row {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  #regional-experts.et_pb_section {
    padding: 40px 16px !important;
  }
  .regional-experts {
    padding: 0 !important;
    gap: 24px !important;
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }
  .regional-experts__header {
    width: 100% !important;
  }
  .regional-experts__title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .regional-experts__divider {
    width: 150px !important;
  }
  .regional-experts__cards {
    width: 100% !important;
    max-width: 100% !important;
    align-self: stretch !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  .expert-card {
    width: 100% !important;
    padding: 16px !important;
    border-radius: 24px !important;
    gap: 12px !important;
  }
  .expert-card__photo {
    width: 120px !important;
    height: 120px !important;
  }
  .expert-card__name {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  .expert-card__role {
    font-size: 12px !important;
  }
  .expert-card__bio {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .expert-card__quote-text {
    font-size: 12px !important;
    line-height: 18px !important;
  }
  .expert-card__quote-author {
    font-size: 13px !important;
  }
  /* ---------------------------------------------------------------------------
     Community Impact Section
     --------------------------------------------------------------------------- */
  #community-impact {
    padding: 60px 30px !important;
  }
  #community-impact .community-impact__title {
    font-size: 36px;
    line-height: 44px;
  }
  #community-impact .community-impact__stat {
    font-size: 60px !important;
    line-height: 68px !important;
  }
  #community-impact .community-impact__stat span {
    font-size: 60px !important;
    line-height: 68px !important;
  }
  #community-impact .community-impact__desc {
    font-size: 18px;
    line-height: 28px;
  }
  #community-impact .community-impact__photo {
    width: 100px !important;
    height: 100px !important;
  }
  /* ---------------------------------------------------------------------------
     Talk To Us / CTA Section
     --------------------------------------------------------------------------- */
  #talk-to-us {
    padding: 60px 30px !important;
  }
  #talk-to-us .talk-to-us__content {
    width: 100% !important;
  }
  #talk-to-us .talk-to-us__title {
    font-size: 40px;
    line-height: 50px;
  }
  #talk-to-us .talk-to-us__desc {
    font-size: 16px;
  }
  /* ---------------------------------------------------------------------------
     Footer
     --------------------------------------------------------------------------- */
  .site-footer .footer__main {
    padding: 50px 30px !important;
    gap: 40px;
  }
  .site-footer .footer__copyright {
    padding: 20px 30px;
  }
  /* ---------------------------------------------------------------------------
     Contact Section
     --------------------------------------------------------------------------- */
  .contact {
    padding: 40px 30px !important;
    flex-direction: column;
    align-items: flex-start !important;
    gap: 40px;
  }
  .contact__info {
    width: 100% !important;
  }
  .contact__heading, .contact__subtext {
    text-align: center !important;
  }
  .contact__form-wrapper {
    width: 100%;
  }
  .contact-form {
    width: 100% !important;
  }
  /* ---------------------------------------------------------------------------
     About Row
     --------------------------------------------------------------------------- */
  div#about_row {
    padding: 60px 0 !important;
  }
  /* ---------------------------------------------------------------------------
     Image Containers
     --------------------------------------------------------------------------- */
  .image-cont {
    flex-direction: column;
    gap: 20px;
  }
  .image-cont img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    object-position: center !important;
    border-radius: 14px !important;
  }
  /* ---------------------------------------------------------------------------
     Our Story Section
     --------------------------------------------------------------------------- */
  .our-story {
    padding: 60px 30px !important;
  }
  .our-story__heading {
    font-size: 42px;
    line-height: 50px;
  }
  .our-story__body {
    flex-direction: column;
    gap: 30px;
  }
  .our-story__right {
    width: 100% !important;
  }
  /* ---------------------------------------------------------------------------
     Our Partners Grid
     --------------------------------------------------------------------------- */
  .our-partners {
    padding: 50px 30px !important;
  }
  .our-partners__heading {
    font-size: 42px;
    line-height: 52px;
  }
  .our-partners__grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
  .partner-logo {
    width: 100% !important;
    max-width: 100% !important;
    height: 90px !important;
    padding: 12px !important;
  }
  .partner-logo img {
    max-width: 100% !important;
    max-height: 55px !important;
    width: auto !important;
    height: auto !important;
  }
  /* ---------------------------------------------------------------------------
     Product Categories
     --------------------------------------------------------------------------- */
  .product-categories {
    padding: 60px 30px !important;
  }
  .product-categories__desc {
    width: 100% !important;
  }
  .product-categories__row {
    width: 100% !important;
    flex-wrap: wrap;
    gap: 20px;
  }
  .product-categories__btn {
    width: 100% !important;
    max-width: 400px;
  }
  .product-card {
    min-width: calc(50% - 12px);
    flex: 1 1 calc(50% - 12px);
  }
  /* ---------------------------------------------------------------------------
     Analytical Banner
     --------------------------------------------------------------------------- */
  .analytical-banner {
    padding: 50px 30px !important;
  }
  .analytical-banner__content {
    width: 100% !important;
  }
  .analytical-banner__title {
    font-size: 36px;
    line-height: 44px;
  }
  .partners-analytical {
    padding: 60px 30px !important;
  }
  .partners-analytical__title {
    font-size: 36px;
    line-height: 44px;
  }
  .partners-analytical__grid {
    padding: 20px 0;
  }
  /* ---------------------------------------------------------------------------
     Portfolio Page (page-id-1227)
     --------------------------------------------------------------------------- */
  .page-id-1227 h1 {
    font-size: 42px !important;
    line-height: 50px !important;
    letter-spacing: -0.84px !important;
  }
  .page-id-1227 .et_pb_section_0 .et_pb_code_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
  }
  .page-id-1227 .et_pb_section_0 .et_pb_code_inner img {
    max-width: 100% !important;
    height: auto !important;
  }
  p.head-text {
    font-size: 18px !important;
    line-height: 28px !important;
    max-width: 100% !important;
    padding: 0 10px;
  }
  .btn-prod {
    top: 20px !important;
  }
  .btn-prod a.orange-btn {
    padding: 10px 32px !important;
    font-size: 15px;
  }
  div#processes .et_pb_code_inner {
    gap: 30px !important;
    padding: 0 !important;
  }
  .pro-section {
    flex-direction: column !important;
    padding: 24px !important;
    gap: 24px !important;
  }
  .pro-section .image-side,
  .pro-section .image-side.right-side {
    width: 100% !important;
    height: 250px !important;
    border-radius: 16px !important;
  }
  .pro-section .text-side {
    width: 100% !important;
  }
  .pro-section .text-side h3.api-title {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .pro-section .text-side p, .pro-section .text-side ul li {
    width: 100% !important;
    font-size: 15px !important;
    line-height: 24px !important;
  }
  .pro-section .text-side ul {
    padding-left: 20px;
  }
  .pro-section .text-side .btn-cont {
    align-self: flex-start;
  }
  /* ---------------------------------------------------------------------------
     Single Post – Featured Image & Hero
     --------------------------------------------------------------------------- */
  .single-post .et_pb_section_0.et_section_specialty {
    padding: 120px 20px 10px !important;
  }
  .single-post .et_pb_section_0.et_section_specialty .et_pb_column_1_2.et_pb_column_0 {
    min-height: 250px !important;
    width: 100% !important;
    border-radius: 6px;
    background-size: cover !important;
    background-position: center !important;
    margin-bottom: 20px !important;
  }
  .single-post .et_pb_section_0.et_section_specialty .et_pb_column_1_2.et_pb_column_1 {
    width: 100% !important;
  }
  /* ---------------------------------------------------------------------------
     Shop Page (page-id-5) – Hero, Filters & Product Grid
     --------------------------------------------------------------------------- */
  .page-id-5 .et_pb_section_0 {
    padding: 120px 24px 50px !important;
    text-align: center;
  }
  .page-id-5 .et_pb_section_0 .et_pb_heading_container h1.et_pb_module_heading {
    font-size: 36px !important;
    line-height: 44px !important;
    letter-spacing: -0.72px !important;
    color: #fff !important;
  }
  .page-id-5 .et_pb_section_0 .et_pb_text_0 .et_pb_text_inner p {
    font-size: 15px !important;
    line-height: 24px !important;
    text-align: center !important;
    max-width: 600px;
    margin: 0 auto;
  }
  .page-id-5 .et_pb_section_1 {
    padding: 30px 16px !important;
  }
  .page-id-5 .product-grid.et_pb_row {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
  }
  .page-id-5 .shop-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin: 0 16px 16px;
    background: #0a1628;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    cursor: pointer;
    transition: background 0.2s ease;
  }
  .page-id-5 .shop-filter-toggle:hover {
    background: #142240;
  }
  .page-id-5 .shop-filter-toggle svg {
    flex-shrink: 0;
  }
  .page-id-5 .shop-filter-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 99998;
    pointer-events: none;
    transition: background 0.4s ease;
  }
  .page-id-5 .shop-filter-overlay.is-visible {
    background: rgba(0, 0, 0, 0.55);
    pointer-events: auto;
    backdrop-filter: blur(2px);
  }
  .page-id-5 .shop-filter-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    max-width: 85vw;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 99999;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
  }
  .page-id-5 .shop-filter-panel.is-open {
    transform: translateX(0);
  }
  .page-id-5 .shop-filter-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e5e5;
  }
  .page-id-5 .shop-filter-panel__title {
    font-size: 18px;
    font-weight: 600;
    color: #0a1628;
    font-family: "Plus Jakarta Sans", sans-serif;
  }
  .page-id-5 .shop-filter-panel__close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: 6px;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
  }
  .page-id-5 .shop-filter-panel__close:hover {
    color: #0a1628;
    background: #f0f0f0;
  }
  .page-id-5 .shop-filter-panel__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px;
    -webkit-overflow-scrolling: touch;
  }
  .page-id-5 .shop-filter-panel__body .et_pb_column_1_4 {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  .page-id-5 .shop-filter-panel__body .wpf_form {
    width: 100% !important;
    visibility: visible !important;
  }
  .page-id-5 .shop-filter-panel__body .wpf_item_name {
    font-size: 15px;
    font-weight: 600;
    color: #0a1628;
    padding-bottom: 8px;
    border-bottom: 1px solid #eee;
    margin-bottom: 8px;
  }
  .page-id-5 .shop-filter-panel__body .wpf_hierachy li {
    padding: 4px 0;
  }
  .page-id-5 .shop-filter-panel__body .wpf_hierachy li label {
    font-size: 14px;
    color: #333;
  }
  .page-id-5 .product-grid > .et_pb_column_1_4.et_pb_column_1 {
    display: none !important;
  }
  .page-id-5 .et_pb_column_3_4.et_pb_column_2 {
    width: 100% !important;
  }
  .page-id-5 ul.products.columns-3 {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    padding: 0 !important;
    list-style: none !important;
  }
  .page-id-5 ul.products.columns-3::before, .page-id-5 ul.products.columns-3::after {
    display: none !important;
    content: none !important;
  }
  .page-id-5 ul.products.columns-3 li.product {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: none !important;
  }
  .page-id-5 ul.products.columns-3 li.product .et_shop_image img {
    width: 100% !important;
    height: auto !important;
  }
  .page-id-5 ul.products.columns-3 li.product h2.woocommerce-loop-product__title {
    font-size: 13px !important;
    line-height: 18px !important;
    padding: 8px 4px !important;
  }
  .page-id-5 .woocommerce-result-count,
  .page-id-5 .woocommerce-ordering {
    width: 100% !important;
    text-align: left;
    float: none !important;
    margin-bottom: 12px;
  }
  .page-id-5 .woocommerce-ordering select {
    width: 100%;
  }
  /* News & Events Page (page-id-1062) */
  .page-id-1062 {
    /* Hero */
  }
  .page-id-1062 .news-insights {
    padding: 70px 20px 40px !important;
  }
  .page-id-1062 .news-insights__content {
    gap: 24px !important;
  }
  .page-id-1062 .news-insights__text-group {
    gap: 12px !important;
  }
  .page-id-1062 .news-insights__badge {
    padding: 5px 16px !important;
    font-size: 12px !important;
  }
  .page-id-1062 .news-insights__title {
    font-size: 28px !important;
    line-height: 36px !important;
    max-width: 100% !important;
  }
  .page-id-1062 .news-insights__description {
    font-size: 14px !important;
    line-height: 21px !important;
    max-width: 100% !important;
  }
  .page-id-1062 {
    /* Sections & Rows */
  }
  .page-id-1062 .et_pb_section {
    padding: 24px 16px !important;
  }
  .page-id-1062 .et_pb_row {
    flex-direction: column !important;
    padding: 0 !important;
    gap: 16px !important;
  }
  .page-id-1062 .et_pb_row > .et_pb_column {
    width: 100% !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    gap: 16px !important;
  }
  .page-id-1062 {
    /* Blurb cards with background images */
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
    min-height: 200px !important;
    height: auto !important;
    padding: 16px !important;
    border-radius: 14px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description h1 {
    font-size: 17px !important;
    line-height: 23px !important;
    word-break: break-word !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description p {
    font-size: 13px !important;
    line-height: 19px !important;
    word-break: break-word !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description p.comingsoon {
    padding: 8px 20px !important;
    font-size: 12px !important;
  }
  .page-id-1062 .see-more {
    padding: 8px 20px !important;
    font-size: 12px !important;
    width: auto !important;
    float: none !important;
  }
  .page-id-1062 #first-row .et-last-child .et_pb_blurb_description,
  .page-id-1062 .second-row .et-last-child .et_pb_blurb_description {
    min-height: 200px !important;
    height: auto !important;
    padding: 16px !important;
    border-radius: 14px !important;
    background-size: cover !important;
    background-position: center !important;
  }
  .page-id-1062 {
    /* Blog post cards */
  }
  .page-id-1062 .column.size-1of3 {
    padding: 14px !important;
    border-radius: 14px !important;
    gap: 12px !important;
  }
  .page-id-1062 .et_pb_blog_grid .column {
    width: 100% !important;
    float: none !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post {
    margin-bottom: 14px !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post h2.entry-title {
    font-size: 15px !important;
    line-height: 21px !important;
    word-break: break-word !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post .post-meta {
    font-size: 12px !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post .post-content {
    font-size: 13px !important;
    line-height: 19px !important;
  }
  .page-id-1062 {
    /* Button positioning */
  }
  .page-id-1062 .btn-prod {
    top: 20px !important;
  }
  .page-id-1062 .btn-prod a.orange-btn {
    padding: 8px 24px !important;
    font-size: 14px !important;
  }
  /* Contact Page (page-id-829) – reduce top whitespace */
  .page-id-829 #page-container {
    padding-top: 0 !important;
  }
  .page-id-829 #main-content .container {
    padding-top: 0 !important;
  }
  .page-id-829 .et_pb_section_0.et_pb_section_parallax {
    padding-top: 60px !important;
  }
}
/* =============================================================================
   Mobile (max-width: 767px)
   ============================================================================= */
@media all and (max-width: 767px) {
  /* ---------------------------------------------------------------------------
     Hero Section (video background)
     --------------------------------------------------------------------------- */
  .et_pb_section_0.et_pb_section_video,
  body #page-container .et-db #et-boc .et-l .et_pb_section_0.et_pb_section {
    min-height: 75vh;
    padding: 0 !important;
    margin: 0 !important;
  }
  #transparent-container {
    padding: 100px 16px 40px !important;
    gap: 20px !important;
  }
  #transparent-container .et_pb_text_inner {
    gap: 14px;
  }
  #transparent-container .et_pb_text_inner h1 {
    font-size: 28px !important;
    line-height: 36px !important;
    letter-spacing: -0.56px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    text-align: center !important;
  }
  #transparent-container .et_pb_text_inner p.self {
    font-size: 14px !important;
    line-height: 22px !important;
    max-width: 100% !important;
  }
  #transparent-container .et_pb_text_inner .btn-cont {
    display: inline-flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    margin-top: 4px;
  }
  #transparent-container .et_pb_text_inner .btn-cont a.see-portfolio,
  #transparent-container .et_pb_text_inner .btn-cont a.contact-button {
    padding: 10px 24px !important;
    font-size: 14px !important;
  }
  /* ---------------------------------------------------------------------------
     About Section (#about-section)
     --------------------------------------------------------------------------- */
  #about-section {
    padding: 0 16px !important;
  }
  #about_row {
    padding: 40px 0 !important;
  }
  #about_row .et_pb_column_1 {
    margin-bottom: 24px;
  }
  #about_row .et_pb_column_1 .qoute {
    font-size: 48px !important;
  }
  #about_row .et_pb_column_1 p {
    font-size: 15px;
    line-height: 24px;
  }
  p.about_title {
    font-size: 26px !important;
    line-height: 34px !important;
    letter-spacing: -0.5px;
  }
  .blue-cont {
    padding: 18px !important;
    gap: 14px;
    border-radius: 16px;
  }
  .blue-cont p {
    font-size: 14px;
    line-height: 22px;
  }
  /* ---------------------------------------------------------------------------
     RPA Section (Regional Entities page)
     --------------------------------------------------------------------------- */
  #rpa .transparent-cont {
    padding: 16px 10px !important;
    gap: 16px !important;
  }
  .row-content {
    gap: 12px !important;
  }
  .main-image {
    min-height: 170px !important;
    border-radius: 12px !important;
  }
  .cont-api-text {
    padding: 16px !important;
    gap: 8px !important;
    border-radius: 12px !important;
  }
  h3.rpa-content-title {
    font-size: 18px !important;
    line-height: 26px !important;
  }
  p.rpa-text {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .rpa-card-email svg {
    width: 16px !important;
    height: 16px !important;
  }
  .rpa-card-email a {
    font-size: 11px !important;
    line-height: 1.4 !important;
  }
  a.rpa-btn {
    padding: 8px 18px !important;
    font-size: 13px !important;
  }
  /* ---------------------------------------------------------------------------
     Core Expertise Section
     --------------------------------------------------------------------------- */
  .core-expertise {
    padding: 40px 16px !important;
    gap: 24px;
  }
  .core-expertise__title {
    font-size: 32px;
    line-height: 40px;
  }
  .core-expertise__description {
    font-size: 13px;
  }
  .expertise-card {
    padding: 20px;
  }
  .expertise-card__body {
    width: 100%;
  }
  .expertise-card__title {
    font-size: 15px;
  }
  .expertise-card__desc {
    font-size: 13px;
  }
  /* ---------------------------------------------------------------------------
     Portfolio Section
     --------------------------------------------------------------------------- */
  .portfolio {
    padding: 40px 16px !important;
    gap: 24px;
  }
  .portfolio .portfolio__title {
    font-size: 32px;
    line-height: 40px;
  }
  .portfolio .portfolio__description {
    font-size: 15px;
    line-height: 24px;
  }
  .portfolio .card {
    padding: 20px;
  }
  .portfolio .card__title {
    font-size: 20px;
    line-height: 28px;
  }
  /* ---------------------------------------------------------------------------
     Partners Carousel Section
     --------------------------------------------------------------------------- */
  .partners .partners__content {
    padding: 16px;
  }
  .partners .partners__title {
    font-size: 28px;
    line-height: 36px;
    text-align: left !important;
  }
  .partners .partners__subtitle {
    font-size: 15px;
    line-height: 24px;
    text-align: left !important;
  }
  .partners .carousel__track {
    gap: 16px;
  }
  /* ---------------------------------------------------------------------------
     Founder Section
     --------------------------------------------------------------------------- */
  .founder {
    padding: 40px 16px !important;
  }
  .founder__profile {
    gap: 24px;
  }
  .founder__photo {
    width: 220px;
    height: 220px;
  }
  .founder__name {
    font-size: 28px;
    line-height: 36px;
  }
  .founder__text {
    font-size: 15px;
    line-height: 24px;
  }
  .stat-card__value {
    font-size: 28px;
    line-height: 36px;
  }
  .stat-card__label {
    font-size: 18px;
    line-height: 26px;
  }
  /* ---------------------------------------------------------------------------
     #oliver
     --------------------------------------------------------------------------- */
  #oliver .about__content {
    padding: 30px 16px 60px;
  }
  #oliver .leader__photo {
    width: 220px;
    height: 270px;
    margin-top: -80px;
  }
  #oliver .leader__name {
    font-size: 28px;
    line-height: 36px;
  }
  #oliver .leader__bio {
    font-size: 15px;
    line-height: 24px;
  }
  #oliver .stats__image-lg {
    height: 180px;
  }
  #oliver .stats__since-label {
    font-size: 22px;
    line-height: 28px;
  }
  #oliver .stats__since-year {
    font-size: 42px;
    line-height: 52px;
  }
  #oliver .stat-card__highlight {
    font-size: 28px;
    line-height: 36px;
  }
  #oliver .stat-card__text {
    font-size: 18px;
    line-height: 26px;
  }
  #oliver .stats__years-number {
    font-size: 36px;
    line-height: 44px;
  }
  #oliver .stats__years-text {
    font-size: 28px;
    line-height: 36px;
  }
  #oliver .stats__experience-label {
    font-size: 18px;
    line-height: 26px;
  }
  /* ---------------------------------------------------------------------------
     Quote Banner
     --------------------------------------------------------------------------- */
  .quote-banner {
    padding: 30px 16px !important;
  }
  .quote-banner .et_pb_text_inner {
    padding: 24px 16px;
  }
  .quote-banner .quote-banner__icon {
    width: 50px;
    height: 37px;
  }
  .quote-banner .quote-banner__quote {
    font-size: 16px;
    line-height: 24px;
  }
  .quote-banner .quote-banner__author {
    font-size: 16px;
    line-height: 24px;
  }
  /* ---------------------------------------------------------------------------
     Technical Leadership
     --------------------------------------------------------------------------- */
  .tech-leadership {
    padding: 30px 16px !important;
    width: 100% !important;
  }
  .tech-leadership .tech-leadership__row {
    flex-direction: column !important;
    height: auto !important;
    width: 100% !important;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content {
    width: 100% !important;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content h1 {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content p:has(svg) svg {
    max-width: 250px;
  }
  .tech-leadership .tech-leadership__row .tech-leadership__content p {
    font-size: 15px !important;
    line-height: 24px !important;
  }
  .tech-leadership .tech-leadership__images {
    height: auto !important;
    min-width: 100% !important;
    width: 100% !important;
    gap: 12px !important;
  }
  .tech-leadership .tech-leadership__photo {
    outline-width: 4px !important;
    width: 90% !important;
    max-width: 340px !important;
  }
  /* ---------------------------------------------------------------------------
     Regional Experts
     --------------------------------------------------------------------------- */
  #regional-experts.et_pb_section {
    padding: 32px 16px !important;
  }
  .regional-experts {
    padding: 0 !important;
  }
  .regional-experts__title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .regional-experts__cards {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .expert-card {
    max-width: 400px;
    margin: 0 auto;
  }
  .expert-card__photo {
    width: 140px !important;
    height: 140px !important;
  }
  .expert-card__name {
    font-size: 20px !important;
    line-height: 26px !important;
  }
  /* ---------------------------------------------------------------------------
     Community Impact
     --------------------------------------------------------------------------- */
  #community-impact {
    padding: 40px 16px !important;
  }
  #community-impact .community-impact__title {
    font-size: 28px;
    line-height: 36px;
  }
  #community-impact .community-impact__stat {
    font-size: 42px !important;
    line-height: 50px !important;
    padding-bottom: 16px;
  }
  #community-impact .community-impact__stat span {
    font-size: 42px !important;
    line-height: 50px !important;
  }
  #community-impact .community-impact__desc {
    font-size: 15px;
    line-height: 24px;
  }
  #community-impact .community-impact__photo {
    width: 70px !important;
    height: 70px !important;
  }
  #community-impact .community-impact__photo--tl {
    top: 12px !important;
    left: 8px !important;
  }
  #community-impact .community-impact__photo--tr {
    top: 12px !important;
    right: 8px !important;
  }
  #community-impact .community-impact__photo--bl {
    bottom: 12px !important;
    left: 8px !important;
  }
  #community-impact .community-impact__photo--br {
    bottom: 12px !important;
    right: 8px !important;
  }
  /* ---------------------------------------------------------------------------
     Talk To Us
     --------------------------------------------------------------------------- */
  #talk-to-us {
    padding: 40px 16px !important;
  }
  #talk-to-us .talk-to-us__title {
    font-size: 28px;
    line-height: 36px;
  }
  #talk-to-us .talk-to-us__desc {
    font-size: 14px;
    line-height: 22px;
  }
  #talk-to-us .talk-to-us__actions {
    flex-direction: row;
    gap: 12px;
  }
  #talk-to-us .talk-to-us__btn {
    padding: 4px 24px;
    font-size: 9px;
    border-radius: 42px;
  }
  /* ---------------------------------------------------------------------------
     Footer
     --------------------------------------------------------------------------- */
  .site-footer .footer__main {
    flex-direction: column;
    padding: 40px 16px !important;
    gap: 28px;
    align-items: center;
    text-align: center;
  }
  .site-footer .footer__logo img {
    width: 120px;
  }
  .site-footer .footer__links {
    align-items: center;
  }
  .site-footer .footer__links h3 {
    text-align: center;
  }
  .site-footer .footer__links ul {
    align-items: center;
  }
  .site-footer .footer__divider {
    width: 100%;
    height: 1px;
    align-self: auto;
  }
  .site-footer .footer__contact {
    align-items: center;
    text-align: center;
  }
  .site-footer .footer__contact p {
    text-align: center !important;
  }
  .site-footer .footer__copyright {
    padding: 16px;
    font-size: 12px;
  }
  /* ---------------------------------------------------------------------------
     Contact Section
     --------------------------------------------------------------------------- */
  .contact {
    padding: 30px 16px !important;
    align-items: flex-start !important;
    gap: 30px;
  }
  .contact__heading {
    font-size: 26px;
    line-height: 34px;
    text-align: center !important;
  }
  .contact__subtext {
    font-size: 15px;
    line-height: 24px;
    text-align: lecenterft !important;
  }
  .contact-form {
    padding: 20px !important;
  }
  .contact-form__checkboxes {
    flex-direction: column;
  }
  .contact-form__checkbox {
    padding: 0 16px;
  }
  .contact-form .wpcf7-checkbox,
  .contact-form .contact-from__checkbox {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
  }
  .contact-form .wpcf7-checkbox .wpcf7-list-item,
  .contact-form .contact-from__checkbox .wpcf7-list-item {
    margin: 0 !important;
  }
  .contact-form .wpcf7-checkbox .wpcf7-list-item label,
  .contact-form .contact-from__checkbox .wpcf7-list-item label {
    display: flex !important;
    align-items: center !important;
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
  }
  .contact-form .wpcf7-checkbox .wpcf7-list-item label input[type=checkbox],
  .contact-form .contact-from__checkbox .wpcf7-list-item label input[type=checkbox] {
    width: 16px !important;
    height: 16px !important;
    flex-shrink: 0;
  }
  /* ---------------------------------------------------------------------------
     About Row
     --------------------------------------------------------------------------- */
  div#about_row {
    padding: 40px 0 !important;
  }
  /* ---------------------------------------------------------------------------
     Our Story
     --------------------------------------------------------------------------- */
  .our-story {
    padding: 40px 16px !important;
  }
  .our-story__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .our-story__body {
    gap: 24px;
  }
  .our-story__title {
    font-size: 28px;
    line-height: 36px;
  }
  .our-story__text {
    font-size: 15px;
    line-height: 24px;
  }
  .framework-card {
    flex-direction: column;
    gap: 16px;
  }
  .framework-card__title {
    font-size: 20px;
    line-height: 28px;
  }
  /* ---------------------------------------------------------------------------
     Our Partners Grid
     --------------------------------------------------------------------------- */
  .our-partners {
    padding: 40px 16px !important;
  }
  .our-partners__heading {
    font-size: 32px;
    line-height: 40px;
  }
  .our-partners__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  .partner-logo {
    max-width: 100% !important;
    height: 80px !important;
    padding: 10px !important;
    border-radius: 14px !important;
  }
  .partner-logo img {
    max-width: 100% !important;
    max-height: 50px !important;
    width: auto !important;
    height: auto !important;
  }
  /* ---------------------------------------------------------------------------
     Product Categories
     --------------------------------------------------------------------------- */
  .product-categories {
    padding: 40px 16px !important;
  }
  .product-categories__title {
    font-size: 32px;
    line-height: 40px;
  }
  .product-categories__desc {
    font-size: 14px;
    line-height: 22px;
  }
  .product-categories__row {
    gap: 16px;
  }
  .product-categories__btn {
    height: auto;
    padding: 8px 24px !important;
  }
  .product-categories__btn span {
    font-size: 16px;
  }
  .product-card {
    min-width: 100%;
  }
  .product-card__icon {
    width: 100px;
    height: 100px;
  }
  .product-card__icon img {
    height: 65px;
  }
  .product-card__label {
    font-size: 16px;
  }
  /* ---------------------------------------------------------------------------
     Analytical Banner
     --------------------------------------------------------------------------- */
  .analytical-banner {
    padding: 40px 16px !important;
  }
  .analytical-banner__title {
    font-size: 28px;
    line-height: 36px;
  }
  .analytical-banner__desc {
    font-size: 14px;
    line-height: 22px;
  }
  .partners-analytical {
    padding: 40px 16px !important;
  }
  .partners-analytical__title {
    font-size: 28px;
    line-height: 36px;
  }
  .partner-logo-card {
    width: 140px;
    height: 110px;
  }
  /* ---------------------------------------------------------------------------
     Portfolio Page (page-id-1227)
     --------------------------------------------------------------------------- */
  .page-id-1227 h1 {
    font-size: 32px !important;
    line-height: 40px !important;
    letter-spacing: -0.64px !important;
  }
  .page-id-1227 .et_pb_section_0 .et_pb_code_inner {
    padding: 0 16px;
  }
  .page-id-1227 .et_pb_section_0 .et_pb_code_inner img {
    max-width: 100% !important;
    height: auto !important;
  }
  p.head-text {
    font-size: 15px !important;
    line-height: 24px !important;
  }
  .btn-prod {
    top: 14px !important;
  }
  .btn-prod a.orange-btn {
    padding: 10px 28px !important;
    font-size: 14px !important;
  }
  div#processes .et_pb_code_inner {
    gap: 24px !important;
  }
  .pro-section {
    flex-direction: column !important;
    padding: 18px !important;
    gap: 18px !important;
  }
  .pro-section .image-side,
  .pro-section .image-side.right-side {
    width: 100% !important;
    height: 220px !important;
    border-radius: 14px !important;
  }
  .pro-section .text-side {
    width: 100% !important;
  }
  .pro-section .text-side h3.api-title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .pro-section .text-side p, .pro-section .text-side ul li {
    width: 100% !important;
    font-size: 14px !important;
    line-height: 22px !important;
  }
  .pro-section .text-side ul {
    padding-left: 18px;
  }
  /* ---------------------------------------------------------------------------
     Single Post – Featured Image
     --------------------------------------------------------------------------- */
  .single-post .et_pb_section_0.et_section_specialty {
    padding: 120px 20px 10px !important;
  }
  .single-post .et_pb_section_0.et_section_specialty .et_pb_column_1_2.et_pb_column_0 {
    min-height: 220px !important;
  }
  /* ---------------------------------------------------------------------------
     Shop Page (page-id-5)
     --------------------------------------------------------------------------- */
  .page-id-5 .et_pb_section_0 {
    padding: 100px 16px 40px !important;
  }
  .page-id-5 .et_pb_section_0 .et_pb_heading_container h1.et_pb_module_heading {
    font-size: 28px !important;
    line-height: 36px !important;
  }
  .page-id-5 .et_pb_section_0 .et_pb_text_0 .et_pb_text_inner p {
    font-size: 14px !important;
    line-height: 22px !important;
  }
  .page-id-5 .et_pb_section_1 {
    padding: 20px 12px !important;
  }
  .page-id-5 .et_pb_column_1_4.et_pb_column_1 {
    margin-bottom: 16px;
  }
  .page-id-5 .et_pb_column_1_4.et_pb_column_1 .wpf_item_name {
    font-size: 15px;
  }
  .page-id-5 ul.products.columns-3 {
    gap: 12px !important;
  }
  .page-id-5 ul.products.columns-3 li.product h2.woocommerce-loop-product__title {
    font-size: 12px !important;
    line-height: 16px !important;
    padding: 6px 4px !important;
  }
  /* News & Events Page (page-id-1062) */
  .page-id-1062 .news-insights {
    padding: 60px 14px 30px !important;
  }
  .page-id-1062 .news-insights__content {
    gap: 18px !important;
  }
  .page-id-1062 .news-insights__title {
    font-size: 24px !important;
    line-height: 32px !important;
  }
  .page-id-1062 .news-insights__description {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .page-id-1062 .et_pb_section {
    padding: 20px 12px !important;
  }
  .page-id-1062 .et_pb_row {
    gap: 14px !important;
  }
  .page-id-1062 .et_pb_row > .et_pb_column {
    gap: 14px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
    min-height: 180px !important;
    padding: 14px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description h1 {
    font-size: 15px !important;
    line-height: 21px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description p {
    font-size: 12px !important;
    line-height: 18px !important;
  }
  .page-id-1062 #first-row .et-last-child .et_pb_blurb_description,
  .page-id-1062 .second-row .et-last-child .et_pb_blurb_description {
    min-height: 180px !important;
    padding: 14px !important;
  }
  .page-id-1062 .column.size-1of3 {
    padding: 12px !important;
    gap: 10px !important;
    border-radius: 12px !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post h2.entry-title {
    font-size: 14px !important;
    line-height: 20px !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post .post-content {
    font-size: 12px !important;
    line-height: 18px !important;
  }
  .page-id-1062 .btn-prod {
    top: 14px !important;
  }
  /* Contact Page (page-id-829) */
  .page-id-829 .et_pb_section_0.et_pb_section_parallax {
    padding-top: 50px !important;
  }
}
/* =============================================================================
   Small Mobile (max-width: 480px)
   ============================================================================= */
@media all and (max-width: 480px) {
  /* Hero */
  .et_pb_section_0.et_pb_section_video,
  body #page-container .et-db #et-boc .et-l .et_pb_section_0.et_pb_section {
    min-height: 65vh;
  }
  #transparent-container {
    padding: 90px 12px 36px !important;
  }
  #transparent-container .et_pb_text_inner h1 {
    font-size: 22px !important;
    line-height: 30px !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    text-align: center !important;
  }
  #transparent-container .et_pb_text_inner p.self {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  #transparent-container .et_pb_text_inner .btn-cont {
    gap: 8px !important;
  }
  #transparent-container .et_pb_text_inner .btn-cont a.see-portfolio,
  #transparent-container .et_pb_text_inner .btn-cont a.contact-button {
    padding: 9px 18px !important;
    font-size: 13px !important;
  }
  /* About */
  p.about_title {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .blue-cont {
    padding: 14px !important;
  }
  .blue-cont p {
    font-size: 13px;
    line-height: 20px;
  }
  .core-expertise__title,
  .portfolio .portfolio__title {
    font-size: 26px;
    line-height: 34px;
  }
  .founder__photo {
    width: 180px;
    height: 180px;
  }
  .founder__name {
    font-size: 24px;
    line-height: 32px;
  }
  .tech-leadership .tech-leadership__images {
    height: 200px;
  }
  #regional-experts.et_pb_section {
    padding: 24px 12px !important;
  }
  .regional-experts {
    padding: 0 !important;
  }
  .regional-experts__title {
    font-size: 22px !important;
    line-height: 28px !important;
  }
  .expert-card {
    padding: 14px !important;
  }
  .expert-card__photo {
    width: 110px !important;
    height: 110px !important;
  }
  .expert-card__name {
    font-size: 18px !important;
    line-height: 24px !important;
  }
  #community-impact .community-impact__stat {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  #community-impact .community-impact__stat span {
    font-size: 32px !important;
    line-height: 40px !important;
  }
  #community-impact .community-impact__photo {
    display: none !important;
  }
  #talk-to-us .talk-to-us__title {
    font-size: 24px;
    line-height: 32px;
  }
  .our-partners {
    padding: 24px 12px !important;
  }
  .our-partners__heading {
    font-size: 26px;
    line-height: 34px;
  }
  .our-partners__grid {
    gap: 8px !important;
  }
  .partner-logo {
    max-width: 100% !important;
    height: 70px !important;
    padding: 8px !important;
    border-radius: 12px !important;
  }
  .partner-logo img {
    max-width: 100% !important;
    max-height: 44px !important;
    width: auto !important;
    height: auto !important;
  }
  /* ---------------------------------------------------------------------------
     Portfolio Page (page-id-1227)
     --------------------------------------------------------------------------- */
  .page-id-1227 h1 {
    font-size: 26px !important;
    line-height: 34px !important;
  }
  p.head-text {
    font-size: 14px !important;
    line-height: 22px !important;
  }
  .btn-prod {
    top: 10px !important;
  }
  .btn-prod a.orange-btn {
    padding: 9px 24px !important;
    font-size: 13px !important;
  }
  .pro-section {
    padding: 14px !important;
    gap: 14px !important;
  }
  .pro-section .image-side,
  .pro-section .image-side.right-side {
    height: 180px !important;
  }
  .pro-section .text-side h3.api-title {
    font-size: 20px !important;
    line-height: 28px !important;
  }
  .pro-section .text-side p, .pro-section .text-side ul li {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  /* Single Post – Featured Image */
  .single-post .et_pb_section_0.et_section_specialty {
    padding: 120px 20px 10px !important;
  }
  .single-post .et_pb_section_0.et_section_specialty .et_pb_column_1_2.et_pb_column_0 {
    min-height: 200px !important;
  }
  /* Shop Page (page-id-5) */
  .page-id-5 .et_pb_section_0 {
    padding: 90px 12px 30px !important;
  }
  .page-id-5 .et_pb_section_0 .et_pb_heading_container h1.et_pb_module_heading {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  .page-id-5 .et_pb_section_0 .et_pb_text_0 .et_pb_text_inner p {
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .page-id-5 .et_pb_section_1 {
    padding: 16px 8px !important;
  }
  .page-id-5 ul.products.columns-3 {
    gap: 8px !important;
  }
  .page-id-5 ul.products.columns-3 li.product h2.woocommerce-loop-product__title {
    font-size: 11px !important;
    line-height: 15px !important;
  }
  /* News & Events Page (page-id-1062) */
  .page-id-1062 .news-insights {
    padding: 50px 10px 24px !important;
  }
  .page-id-1062 .news-insights__content {
    gap: 14px !important;
  }
  .page-id-1062 .news-insights__text-group {
    gap: 8px !important;
  }
  .page-id-1062 .news-insights__badge {
    padding: 4px 14px !important;
    font-size: 10px !important;
  }
  .page-id-1062 .news-insights__title {
    font-size: 20px !important;
    line-height: 27px !important;
  }
  .page-id-1062 .news-insights__description {
    font-size: 12px !important;
    line-height: 18px !important;
  }
  .page-id-1062 .et_pb_section {
    padding: 80px 10px !important;
  }
  .page-id-1062 .et_pb_row {
    gap: 12px !important;
  }
  .page-id-1062 .et_pb_row > .et_pb_column {
    gap: 12px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description {
    min-height: 160px !important;
    padding: 12px !important;
    border-radius: 12px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description h1 {
    font-size: 14px !important;
    line-height: 19px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description p {
    font-size: 11px !important;
    line-height: 16px !important;
  }
  .page-id-1062 .et_pb_blurb_content .et_pb_blurb_container .et_pb_blurb_description p.comingsoon {
    padding: 6px 16px !important;
    font-size: 11px !important;
  }
  .page-id-1062 #first-row .et-last-child .et_pb_blurb_description,
  .page-id-1062 .second-row .et-last-child .et_pb_blurb_description {
    min-height: 160px !important;
    padding: 12px !important;
    border-radius: 12px !important;
  }
  .page-id-1062 .column.size-1of3 {
    padding: 10px !important;
    gap: 8px !important;
    border-radius: 10px !important;
  }
  .page-id-1062 .see-more {
    padding: 6px 16px !important;
    font-size: 11px !important;
    width: auto !important;
    float: none !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post h2.entry-title {
    font-size: 13px !important;
    line-height: 18px !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post .post-meta {
    font-size: 11px !important;
  }
  .page-id-1062 .et_pb_blog_grid .et_pb_post .post-content {
    font-size: 11px !important;
    line-height: 16px !important;
  }
  .page-id-1062 .btn-prod {
    top: 10px !important;
  }
  .page-id-1062 .btn-prod a.orange-btn {
    padding: 6px 18px !important;
    font-size: 13px !important;
  }
  /* Contact Page (page-id-829) */
  .page-id-829 #page-container {
    padding-top: 0 !important;
  }
  .page-id-829 #main-content .container {
    padding-top: 0 !important;
  }
  .page-id-829 .et_pb_section_0.et_pb_section_parallax {
    padding-top: 40px !important;
  }
}
