/* ================================================================
          TOKENS & RESET
       ================================================================ */
:root {
    --navy: #003087;
    --navy-dark: #001a4d;
    --navy-mid: #0048a8;
    --blue-light: #1a6faf;
    --text-dark: #1a1a2e;
    --text-body: #3d3d3d;
    --text-mid: #666;
    --text-light: #999;
    --bg-white: #ffffff;
    --bg-light: #f5f6f8;
    --border: #dde1ea;
    --border-lt: #ebebeb;
    --overlay-dk: rgba(0, 20, 60, 0.75);
    --overlay-md: rgba(0, 20, 60, 0.55);
    --ease: 0.22s ease;
    --font: 'Poppins', sans-serif;
    --container: 1280px;
    --pad: clamp(20px, 4vw, 60px);
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    color: var(--text-body);
    background: #fff;
    line-height: 1.65;
    overflow-x: hidden;
}

img, svg {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

address {
    font-style: normal;
}

:focus-visible {
    outline: 3px solid var(--blue-light);
    outline-offset: 3px;
}

/* ================================================================
   LAYOUT UTILITY
================================================================ */
.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: var(--pad);
}

/* ================================================================
   SECTION LABEL (pill with dash)
================================================================ */
.section-label {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.section-label::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 3px;
    background: var(--navy);
    flex-shrink: 0;
}

/* ================================================================
   BUTTONS
================================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 14px 30px;
    transition: background var(--ease);
}

.btn-primary:hover {
    background: var(--navy-dark);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid #fff;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 32px;
    margin-top: 32px;
    transition: background var(--ease), color var(--ease);
}

.btn-outline:hover {
    background: #fff;
    color: var(--navy-dark);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 2px solid var(--navy);
    color: var(--navy);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 13px 30px;
    transition: background var(--ease), color var(--ease);
}

.btn-secondary:hover {
    background: var(--navy);
    color: #fff;
}

/* ================================================================
   HEADER
================================================================ */
#site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--border-lt);
    box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
    gap: 24px;
}

.header-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 38px;
    width: auto;
}

/* Nav */
#main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-dark);
    padding: 6px 14px;
    position: relative;
    transition: color var(--ease);
    white-space: nowrap;
}



.nav-link:hover, .nav-link:focus-visible {
    color: var(--navy);
}

.nav-link:hover::after, .nav-link.active::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--navy);
    font-weight: 700;
}

.nav-link--contact {
    color: var(--navy);
    font-weight: 700;
}

/* Language flags */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 4px;
    padding-left: 20px;
    margin-right: -75px;
}

.lang-btn {
    display: flex;
    align-items: center;
    padding: 4px;
    border-radius: 2px;
    opacity: .6;
    transition: opacity var(--ease);
}

.lang-btn:hover, .lang-btn[aria-pressed="true"] {
    opacity: 1;
}

.lang-btn img {
    width: 22px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: block;
}

/* Flag SVGs as inline */
.flag-icon {
    width: 18px;
    height: 16px;
    border-radius: 2px;
    overflow: hidden;
    flex-shrink: 0;
}

/* Mobile hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 4px;
    flex-shrink: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--ease), opacity var(--ease);
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   HERO
================================================================ */
.hero {
    display: flex;
    height: clamp(520px, 62vh, 680px);
}

.hero-left {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 48px 80px clamp(24px, 4vw, 20px);
    background: var(--bg-white);
    position: relative;
    /*border-right: 1px solid var(--border);*/
}

/* Decorative vertical lines */
.hero-left::before {
    /*content: '';*/
    /*position: absolute;*/
    /*top: 0;*/
    /*bottom: 0;*/
    /*left: clamp(20px, 2vw, 40px);*/
    /*width: 1px;*/
    /*background: var(--border-lt);*/
}

.hero-since {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: #8E9295;
    margin-bottom: 1px;
}

.hero-title {
    font-size: clamp(2rem, 3.2vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-dark);
    letter-spacing: -.01em;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.hero-subtitle {
    font-size: 1.1rem;
    font-weight: 700;

    text-transform: uppercase;
    color: var(--text-mid);
    line-height: 1.7;
    max-width: 70%;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-earth-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    display: block;
}

.btn-hero-contact {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--navy);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 16px 32px;
    transition: background var(--ease);
}

.btn-hero-contact:hover {
    background: var(--navy-dark);
}

/* ================================================================
   OUR OFFER
================================================================ */
.our-offer {
    background: var(--bg-white);

    position: relative;
    overflow: hidden;
}
.our-offer .offer-content{
    padding: 90px 0 80px;
}
.offer-wrapper {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.offer-content {
    flex: 1;
    min-width: 0;
}

.offer-title {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 800;
    color: var(--navy);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 28px;
}

.offer-intro {
    font-size: 1.1rem;
    color: var(--text-body);
    line-height: 1.8;
    max-width: 680px;
    margin-bottom: 48px;
}

.offer-intro strong {
    font-weight: 700;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.offer-pillars {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 5vw;
    padding-right: 30px;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pillar-icon-wrap {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon {
    width: 150px;
    height: auto;
}
.pillar-icon.cables {
    width: 70px;
    height: auto;
}
.pillar-title {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
}
.offer-wrapper .offer-content {
    flex: 0 0 70%;
}

.offer-wrapper .contact-card {
    flex: 0 0 28%;
    padding-top: 90px;
}
.pillar-body p {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.75;
    max-width: 300px;
}

/* Our Teams card */
.contact-card {
    flex-shrink: 0;
    /* width: 290px; */
    /* background: var(--navy-dark); */
    padding: 40px 35px;
    color: #000;

}
.contact-card .pillar-icon-wrap{
    width: 90px;
    height: 90px;
    display: flex;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
}
.contact-card-icon {
margin-bottom: 22px;
}

.contact-card-icon img {
width: 52px;
height: auto;
filter: brightness(0) invert(1) opacity(.85);
}

.contact-card-title {
font-size: .72rem;
font-weight: 700;
letter-spacing: .14em;
text-transform: uppercase;
color: #000;
margin-bottom: 16px;
}

.contact-card-text {
font-size: .84rem;
line-height: 1.75;
color: rgba(255, 255, 255, .8);
margin-bottom: 24px;
}

.contact-card-cta {
display: block;
margin-top: 20px;
font-size: .7rem;
font-weight: 600;
letter-spacing: .1em;
text-transform: uppercase;
color: rgba(255, 255, 255, .55);
border-top: 1px solid rgba(255, 255, 255, .15);
padding-top: 18px;
width: 100%;
transition: color var(--ease);
}

.contact-card-cta:hover {
color: #000;
}

/* ================================================================
CTA BANNER
================================================================ */
.cta-banner {
    background: var(--navy-dark);
    position: relative;
    overflow: hidden;
}

.cta-banner-inner {
    display: flex;
    align-items: stretch;
    min-height: 260px;
}

.cta-banner-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px clamp(24px, 5vw, 80px);
    background: var(--navy-dark);
}

.cta-banner-text {
    font-size: clamp(1.5rem, 2.6vw, 2.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.3;
    color: #fff;
    max-width: 560px;
}

.cta-banner-right {
    flex: 0 0 48%;
    position: relative;
    overflow: hidden;
    min-height: 240px;
}

.cta-banner-right img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ================================================================
   OUR SERVICES
================================================================ */
.our-services {
    background: var(--bg-white);

}
.our-services .services-inner{
    padding-top: 90px ;
    padding-bottom: 90px ;
}
.services-inner {
    display: grid;
    grid-template-columns: 68% 29%;
    gap: 50px;
    align-items: start;
}

.services-intro {
    font-size: .9rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: 36px;
}

.services-subheading {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    padding-bottom: 15px;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border);
}
span.services-title{
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
}
/* Accordion */
.accordion {
    margin-top: 4px;
}

.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 0;
    text-align: left;
    transition: color var(--ease);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    font-size: 1rem;
}
.accordion-btn .acc-label{
    font-size: 1rem;
}
.accordion-btn:hover {
    color: var(--navy);
}

.acc-label {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: inherit;
    transition: color var(--ease);
}

.acc-icon {
    font-size: 1.4rem;
    line-height: 1;
    color: var(--navy);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform var(--ease);
}

.accordion-item.is-open .acc-icon,.accordion-item .acc-icon {
    /*transform: rotate(45deg);*/
    font-weight: 500;
}

.accordion-content {
    padding: 0 0 20px;
    display: none;
}

.accordion-item.is-open .accordion-content {
    display: block;
}

.accordion-content p {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.8;
}
.services-heading-section {
    display: grid;
    grid-template-columns: 55% 44%;
    align-items: start;
    gap: 15px;
    margin-bottom: 42px;
}

.services-heading-content {
    /*max-width: 420px;*/
}

.services-heading-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: -0.02em;
}
/*.services-heading-section {*/
    /*display: grid;*/
    /*grid-template-columns: 1fr 240px;*/
    /*align-items: start;*/
    /*gap: 34px;*/
    /*margin-bottom: 42px;*/
/*}*/

.services-heading-content {
    /*max-width: 420px;*/
}

.services-heading-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--navy);
    letter-spacing: -0.02em;
}
.container.services-inner.line-70{
    padding-right: 20px;
    padding-left: 20px;
}
.services-intro {
    margin: 0;
    /*max-width: 320px;*/
    font-size: 0.95rem;
    line-height: 1.8;
    color: #8b8b8b;
    font-weight: 400;
    padding-right: 30px;
    padding-left: 0px;
}
.img-ac {
    display: none;
}

.img-ac.active {
    display: block;
}
.services-heading-img {
    width: 100%;
}

.services-heading-img img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
}
.services-right-img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    margin-left: -10px;    margin-top: 56px;
}

.services-right-desc h3 {
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}
.services-right-desc{
    min-height: 375px;
}
.services-right-desc p {
    font-size: .95rem;
    color: var(--text-mid);
    line-height: 1.9;
padding-right:  15px;
}
/* SECTION */
.technologies-section {
    background: #fff;
}

/* TOP IMAGE */
.tech-hero {
    height: 50vh;
    overflow: hidden;
}

.tech-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT WRAPPER */
.tech-content-wrapper {
    position: relative;
    padding: 0px 50px 40px;
    margin-top: -60px;
}

/* CONTENT GRID */
.tech-content {
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: center;
    gap: 40px;
}

/* LEFT */
.tech-left {
    position: relative;
    padding-left: 20px;
}

.tech-title {
    display: inline-block;
    background: #fff;
    padding: 1px 16px;
    margin-bottom: 0px;
    font-size: 3rem;
    font-weight: 700;
    color: #1f3f75;
    letter-spacing: 0.05em;
}

.tech-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6b6b6b;
    margin-bottom: 14px;
    /*max-width: 520px;*/
}

/* RIGHT */
.tech-right {
    text-align: right;
    margin-top: 10px;
}

.tech-right img {
    max-width: 90%;
    height: auto;
    margin-top: 10px;
}
.tech-content.pd-0{
    padding-left: 0px;
    padding-right: 0px;
}
.hero-image-wrap-2{
    position: relative;
}
.hero-image-wrap-2 .hero-image-btn{
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 8px 18px;
    background: #1f4e97;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease;
    text-decoration: none;
    width: 30%;
    position: absolute;
    right: 0;
    bottom: 0;
    justify-content: space-between;
}
.b1.tech-content{
    border-left: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
}

/* VERTICAL LINE (like design) */
.tech-content-wrapper::after {
    content: "";
    position: absolute;
    right: 25%;
    top: 0;
    bottom: 0;
    width: 1px;

}
.tech-img {
    display: none;
}
.tech-field-links a:hover{
    color: #1f4e97;
}
.tech-img.active {
    display: block;

}

/* ================================================================
   TECHNOLOGIES & EXPERTISE
================================================================ */
.technologies {
    background: var(--bg-white);
    padding: 90px 0 60px;
    border-top: 1px solid var(--border-lt);
}

.tech-header {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: 60px;
    align-items: start;
    margin-bottom: 40px;
}

.tech-intro p {
    font-size: .9rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-top: 16px;
}

.tech-header-img img {
    width: 100%;
    border-radius: 2px;
}

.tech-grid {
    border-top: 1px solid var(--border);
}

.tech-row {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 48px;
    align-items: start;
    padding: 36px 0;
    border-bottom: 1px solid var(--border);
}

.tech-category {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.tech-category::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 3px;
    background: var(--navy);
    flex-shrink: 0;
}

.tech-row-text p {
    font-size: .86rem;
    color: var(--text-body);
    line-height: 1.85;
}

.tech-row-right {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.tech-row-img {
    flex: 1;
    min-width: 0;
}

.tech-row-img img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: contain;
    object-position: center;
    background: var(--bg-light);
    padding: 12px;
}

.tech-tags {
    flex-shrink: 0;
    width: 170px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.tech-tags span {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--navy-mid);
}

.tech-cta-row {
    padding: 48px 0 10px;
}
.tech-fields-section {
    position: relative;

    overflow: hidden;
}

.tech-fields-pattern {
    height: 120px;
    background: url("../images/footer-bg.png") center center / cover no-repeat;
    opacity: 0.9;
}

.tech-fields-inner {
    position: relative;
    padding: 0 0 10px;
}

.tech-fields-label-wrap {
    position: relative;
    margin-top: -33px;
    margin-bottom: 22px;
}

.tech-fields-label {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 18px;
    background: #1f4e97;
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    min-width: 30%;
    margin-left: -15px;
    margin-top: -10px;
}

.tech-fields-list {
    /*border-top: 1px solid #cfcfcf;*/
}

.tech-field-row {
    display: grid;
    grid-template-columns: 26% 48% 22%;
    align-items: start;
    gap: 18px;
    /*padding: 18px 0;*/
    /*border-bottom: 1px solid #cfcfcf;*/
    position: relative;
}

.tech-field-text {
    padding-right: 8px;
}

.tech-field-title {
    margin: 0 0 12px;
    font-size: 1.2rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
}

.tech-field-text p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.65;
    color: #8E9295;
}

.tech-field-text p a {
    color: #1f4e97;
    font-weight: 700;
    text-decoration: none;
}

.tech-field-image img {
    /*display: block;*/
    width: 90%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    object-fit: contain;
}

.tech-field-links {
    padding-left: 10px;
    position: relative;
}

.tech-field-links::before {
    content: "–";
    position: absolute;
    top: -4px;
    right: 0;
    color: #1f4e97;
    font-size: 0px;
    line-height: 1;
    font-weight: 400;
}

.tech-field-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tech-field-links li {
    margin-bottom: 10px;
    margin-top: 2px;
}

.tech-field-links li:last-child {
    margin-bottom: 0;
}

.tech-field-links a {
    position: relative;
    display: inline-block;
    padding-left: 10px;
    font-size: 1.1rem;
    line-height: 1.95;
    text-transform: uppercase;
    text-decoration: none;
    color: #8a8a8a;
    transition: color 0.2s ease;
}

.tech-field-links a::before {
    content: "›";
    position: absolute;
    left: 0;
    top: 0;
    color: #b4b4b4;
}

.tech-field-links a:hover {
    color: #1f4e97;
}
.tech-fields-cta {
    display: flex;
    justify-content: flex-end;
    padding: 0px 0 30px;
}
.container.tech-fields-inner{
    border-left: 1px solid #cfcfcf;
    border-right: 1px solid #cfcfcf;
}

.tech-fields-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 32px;
    padding: 0 18px;
    background: #1f4e97;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease;
}

.tech-fields-btn:hover {
    background: #173d78;
}

.tech-fields-btn span {
    font-size: 14px;
    line-height: 1;
}
/* ================================================================
   EXCELLENCE BANNER
================================================================ */
.excellence-banner {
    min-height: 460px;
    background: url('images/cta-engineer.png') center / cover no-repeat;
    position: relative;
}

.excellence-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-dk);
}

.banner-overlay {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: inherit;
    padding: 80px var(--pad);
    text-align: center;
}

.banner-text {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.25;
    color: #fff;
}

.banner-text strong {
    display: block;
    font-weight: 800;
    font-style: normal;
}

/* ================================================================
   OUR PARTNERS
================================================================ */
.our-partners {
    background: var(--bg-white);
    padding: 90px 0;
}

.partners-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.partners-left p,
.partners-right p {
    font-size: .9rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-top: 8px;
}

.partners-right h3 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

.logo-strip {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px 56px;
    padding: 32px 0;
    border-top: 1px solid var(--border-lt);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) opacity(.55);
    transition: filter var(--ease), opacity var(--ease);
}

.logo-item:hover {
    filter: grayscale(0) opacity(1);
}

.logo-item img {
    max-height: 48px;
    width: auto;
    max-width: 160px;
}

/* ================================================================
   HIGHWAY BANNER
================================================================ */
.highway-banner {
    min-height: 480px;
    background: url('images/banner-highway.png') center / cover no-repeat;
    position: relative;
}

.highway-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--overlay-md);
}

.highway-banner .banner-overlay {
    min-height: 480px;
}

.banner-eyebrow {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .75);
    margin-bottom: 20px;
    display: block;
}

.highway-title {
    font-size: clamp(1.5rem, 2.8vw, 2.6rem);
    font-weight: 700;
    line-height: 1.25;
    color: #fff;
    text-align: center;
}

/* ================================================================
   OUR CLIENTS
================================================================ */
.our-clients {
    background: var(--bg-white);
    padding: 90px 0;
}

.clients-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 56px;
}

.clients-left p, .clients-right p {
    font-size: .9rem;
    color: var(--text-body);
    line-height: 1.85;
    margin-top: 8px;
}

.clients-right h3 {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 12px;
}

/* ================================================================
   BENCHMARK BANNER
================================================================ */
.benchmark-banner {
    min-height: 480px;
    background: url('images/hero-earth.png') center / cover no-repeat;
    position: relative;
}

.benchmark-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 15, 50, .82);
}

.benchmark-banner .banner-overlay {
    min-height: 480px;
}

.benchmark-text {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    text-align: center;
}

.benchmark-text span {
    display: block;
    font-weight: 300;
    font-style: italic;
    font-size: .85em;
}

/* ================================================================
   OUR TEAM
================================================================ */
.our-team {
    background: var(--bg-white);
    padding: 90px 0;
}

.team-inner {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: start;
}

.team-names {
    font-size: .82rem;
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--text-mid);
    margin-bottom: 36px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--border);
}

.team-card {
    background: var(--bg-light);
    padding: 32px;
    margin-top: 8px;
}

.team-card-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.team-card-role {
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-mid);
    margin-bottom: 16px;
}

.team-card-bio {
    font-size: .88rem;
    color: var(--text-body);
    line-height: 1.8;
}

.portrait-card {
    border: 4px solid var(--bg-light);
    overflow: hidden;
}

.portrait-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* ================================================================
   FOOTER
================================================================ */
#site-footer {
    /*background: var(--navy-dark);*/
    position: relative;
    overflow: hidden;
}

.footer-bg {
    position: absolute;
    inset: 0;
    background: url('images/footer-bg.png') center / cover no-repeat;
    opacity: .18;
    z-index: 0;
}

.footer-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto 1fr 1fr;
    gap: 48px;
    padding: 72px var(--pad) 56px;
}

.footer-logo {
    height: 54px;
    width: auto;
    margin-bottom: 28px;
    display: block;
}

.footer-contact {
    font-size: .86rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.75;
}

.footer-contact a {
    color: rgba(255, 255, 255, .88);
    transition: color var(--ease);
}

.footer-contact a:hover {
    color: #fff;
}

.footer-divider {
    width: 1px;
    background: rgba(255, 255, 255, .12);
    align-self: stretch;
}

.footer-address {
}

.footer-address p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .72);
    line-height: 1.9;
}

.footer-address a {
    color: rgba(255, 255, 255, .88);
    transition: color var(--ease);
}

.footer-address a:hover {
    color: #fff;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    font-size: .82rem;
    font-weight: 500;
    letter-spacing: .04em;
    color: rgba(255, 255, 255, .65);
    transition: color var(--ease);
}

.footer-link:hover {
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    /*border-top: 1px solid rgba(255, 255, 255, .1);*/
    padding: 18px var(--pad);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container);
    margin-inline: auto;
}

.footer-bottom p {
    font-size: .68rem;
    color: rgba(255, 255, 255, .45);
    letter-spacing: .06em;
    text-transform: uppercase;
}



.header-inner{
    max-width: 90%;
}
/* =========================
   Base
========================= */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 14px;
    padding-right: 14px;
    position: relative;
}

/* =========================
   Header
========================= */
#site-header {
    position: relative;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}

.header-inner {
    display: grid;
    grid-template-columns: 15% 70% 15%;
    align-items: center;

    min-height: 74px;
    max-width: 96%;
    margin: 0 auto;
    position: relative;
}

/* Logo left */
.header-logo {
    flex: 0 0 auto;
    position: relative;
    z-index: 3;
}

.header-logo img {
    width: 225px;
    height: auto;
}

/* Center nav desktop */
#main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 24px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-link {
    position: relative;
    display: inline-block;
    font-size: 1.1rem;
    font-weight: bold;

    text-transform: uppercase;
    color: #666;
    transition: color 0.25s ease;
}



.nav-link:hover,
.nav-link.active {
    color: #003087;
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

/* Right flags */
.lang-switcher {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    z-index: 3;
}

.lang-btn {
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.lang-btn:hover {
    opacity: 1;
    transform: scale(1.05);
}

.flag-icon {
    width: 18px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    width: 40px;
    height: 40px;
    padding: 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    position: relative;
    z-index: 4;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #111;
    border-radius: 2px;
    transition: 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* =========================
   Responsive
========================= */
@media (max-width: 991px) {
    .header-inner {
        min-height: 68px;
        max-width: 100%;
    }

    .header-logo img {
        width: 130px;
    }

    .nav-list {
        gap: 16px;
    }

    .nav-link {
        font-size: 10px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        min-height: 68px;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .lang-switcher {
        margin-left: 12px;
        margin-right: 8px;
    }

    #main-nav {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        transform: none;
        background: #fff;
        border-top: 1px solid #e5e5e5;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        padding: 20px 24px;
        display: none;
    }

    #main-nav.is-open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid #efefef;
    }

    .nav-link {
        display: block;
        width: 100%;
        padding: 14px 0;
        font-size: 13px;
    }

    .nav-link::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .header-logo img {
        width: 118px;
    }

    .flag-icon {
        width: 13px;
        height: 13px;
    }
}
.intro-panel {
    position: relative;
    background: #f5f5f5;
    border-bottom: 1px solid #d9d9d9;
    overflow: hidden;
}

.intro-panel-inner {
    position: relative;
    min-height: 122px;
}

.intro-panel-lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.intro-panel-lines .line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d3d3d3;
}

.intro-panel-lines .line-left {
    left: 104px;
}

.intro-panel-lines .line-center {
    left: 61.5%;
    transform: translateX(-50%);
}

.intro-panel-lines .line-right {
    right: 100px;
}

.intro-panel-content {
    position: relative;
    z-index: 2;
    max-width: 360px;
    margin-left: 82px;
    padding: 28px 0 24px;
}

.intro-panel-kicker {
    display: block;
    margin-bottom: 6px;
    font-size: 9px;
    line-height: 1;
    font-weight: 500;
    text-transform: uppercase;
    color: #7b7b7b;
}

.intro-panel-title {
    margin: 0 0 6px;
    font-size: 22px;
    line-height: 1.02;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: #000;
}

.intro-panel-subtitle {
    margin: 0;
    font-size: 8px;
    line-height: 1.35;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #8a8a8a;
    white-space: nowrap;
}

.mobile{
    display: none;
}
.hero-section .container{
    max-width: 70%;
}
.container.line-70 {
    border-right:1px solid var(--border);
    border-left:1px solid var(--border);
}
.container.line-70:after{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 30%;
    width: 1px;
    background: var(--border-lt);
    z-index: 0;

}
.z-1{
    z-index: 1;
    position: relative;
}
/* ================================================================
   RESPONSIVE – Tablet ≤1024px
================================================================ */
.footer-design {
    position: relative;
    background: #232323;
    overflow: hidden;
    color: #fff;
}

.footer-pattern {
    position: absolute;
    inset: 0;
    background: url("../images/footer-bg.jpg") center center / cover no-repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
}

.footer-design .container {
    max-width: 1280px;
    width: 92%;
    margin: 0 auto;
}

.footer-inner {
    position: relative;
    z-index: 1;
    min-height: 215px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding: 45px 0 20px;
}

.footer-left {
    padding-left: 5px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo img {
    width: 350px;
    max-width: 100%;
    height: auto;
    display: block;
}

.footer-contact-text p {
    margin: 0;
    font-size: 14px;
    line-height: 1.25;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.78);
}

.footer-contact-text p + p {
    margin-top: 2px;
}

.footer-contact-text a {
    color: #fff;
    text-decoration: none;
}

.footer-right {
    justify-self: center;
    padding-top: 36px;
    min-width: 280px;
}

.footer-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    padding: 0px;
    border: 1px solid #f2f2f2;
}

.footer-linkedin svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-address p {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 500;
    text-transform: uppercase;
    color: #fff;
}

.footer-bottom {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 4px 20px 12px;
}

.footer-bottom p {
    margin: 0;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255,255,255,0.72);
}

.footer-bottom strong {
    color: #fff;
    font-weight: 800;
}
.footer-bg {
    position: absolute;
    inset: 0;
    background: url(images/footer-bg.png) center / cover no-repeat;
    opacity: .18;
    z-index: 0;
}
.project-banner {
    position: relative;
    min-height: 360px;
    overflow: hidden;
    background: #1f1f1f;
}

.project-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.project-banner-overlay {
    position: absolute;
    inset: 0;
    /*background: rgba(0, 0, 0, 0.28);*/
}

.project-banner-content {
    position: relative;
    z-index: 2;
    min-height: 66vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
}

.project-banner-title {
    margin: 0;
    /*max-width: 760px;*/
    color: #fff;
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    line-height: 1.22;
    font-weight: 700;
    letter-spacing: -0.02em;
}
.project-banner .container{
    position: relative;
}
.project-banner-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #000;
    color: #fff;
    padding: 16px 28px;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    width: 30%;

    justify-content: space-between;
}

.project-banner-btn span {
    font-size: 14px;
    line-height: 1;
}

.partners-section {

    overflow: hidden;
}

/* =========================
   TOP BANNER
========================= */
.partners-banner {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    height: 50vh;
}

.partners-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.partners-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
}

.partners-banner-content {
    position: relative;
    z-index: 2;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
    height: 50vh;
}

.partners-banner-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* =========================
   CONTENT BLOCK
========================= */
.partners-content-wrap {

    border-top: 1px solid #d8d8d8;
}

.partners-content {
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: start;
    min-height: 260px;
    position: relative;
}

.partners-col {
    padding: 48px 36px;
}

.partners-col-left {
    border-right: 1px solid #d8d8d8;
}

.partners-title {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
    letter-spacing: -0.02em;
}

.partners-subtitle {
    margin: 0 0 14px;
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
}

.partners-text {
    margin: 0 0 12px;
    max-width: 520px;
    font-size: 0.95rem;
    line-height: 1.85;
    color: #8a8a8a;
}

.partners-col-right .partners-text {
    max-width: 360px;
}

/* =========================
   CAROUSEL
========================= */
.partners-carousel-wrap {
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 50px;
    /*background: #f3f3f3;*/
}

.partners-carousel-row {
    display: grid;
    grid-template-columns: 1fr  100px;
    align-items: center;
    min-height: 84px;
}
.partners-c-actions{
    margin-right: -120px;
    text-align: center;
}
.partners-arrow {
    margin-left: 15px;
    margin-right: 5px;
    height: 100%;
    border: 0;
    background: transparent;
    color: #1f4e97;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.partners-arrow:hover {
    opacity: 0.7;
}

.partners-carousel {
    overflow: hidden;
    position: relative;
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 38px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.partner-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
}

.partner-logo-item img {
    max-width: 150px;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    /*filter: grayscale(100%);*/
    opacity: 0.9;
    transition: all 0.25s ease;
}

.partner-logo-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* optional outer vertical guide lines */
.partners-content.line-70 {
    position: relative;
}

.partners-content.line-70::before,
.partners-content.line-70::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #d8d8d8;
}

.partners-content.line-70::before {
    left: 0;
}

.partners-content.line-70::after {
    right: 0;
}
.clients-section {
    overflow: hidden;
}

/* banner */
.clients-banner {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    height: 58vh;
}

.clients-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.clients-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, 0.38);
}

.clients-banner .container {
    position: relative;
    z-index: 2;
}

.clients-banner-content {
    position: relative;
    min-height: 58vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.clients-banner-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.25;
    font-weight: 700;
    letter-spacing: -0.02em;

}

.clients-banner-btn {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #000;
    color: #fff;
    padding: 16px 28px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    width: 30%;
    justify-content: space-between;
}

.clients-banner-btn span {
    font-size: 14px;
    line-height: 1;
}

/* content */
.clients-content-wrap {
    border-top: 1px solid #d8d8d8;
}
.partners-col.partners-col-right{
    border-left: 1px solid #d8d8d8;
}
.clients-content {
    display: grid;
    grid-template-columns: 36% 34% 30%;
    align-items: stretch;
    min-height: 260px;
    position: relative;
}
.clients-content.line-70:after{
    width: 0px;
}
.clients-col {
    padding: 48px 24px;
}

.clients-col-left{}
.clients-col-middle {
    border-right: 1px solid #d8d8d8;
}

.clients-title {
    margin: 0 0 24px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
    letter-spacing: -0.02em;
}

.clients-subtitle {
    margin: 18px 0 10px;
    font-size: 1rem;
    line-height: 1.45;
    font-weight: 800;
    text-transform: uppercase;
    color: #1f4e97;
}

.clients-text {
    margin: 0 0 12px;
    font-size: 0.95rem;
    line-height: 1.95;
    color: #8a8a8a;
    max-width: 350px;
}

.clients-middle-img {
    display: block;
    width: 100%;
    max-width: 240px;
    margin: 0 auto;
    object-fit: contain;
}

.clients-right-top-img {
    display: block;
    width: 100%;
    max-width: 180px;
    margin: 0 auto 18px;
    object-fit: contain;
}

/* carousel */
.clients-carousel-wrap {
    border-top: 1px solid #d8d8d8;
    border-bottom: 1px solid #d8d8d8;
    margin-bottom: 60px;
}

.clients-carousel-row {
    display: grid;
    grid-template-columns: 1fr 100px;
    align-items: center;
    min-height: 84px;
}

.clients-carousel {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 38px;
    transition: transform 0.35s ease;
    will-change: transform;
}

.client-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    height: 60px;
}

.client-logo-item img {
    max-width: 160px;
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.95;
    transition: all 0.25s ease;
}

.clients-c-actions {
    margin-right: -120px;
    text-align: center;
}

.clients-arrow {
    margin-left: 15px;
    margin-right: 5px;
    height: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.clients-arrow:hover {
    opacity: 0.7;
}
.team-section {
    overflow: hidden;
}

/* banner */
.team-banner {
    position: relative;
    min-height: 300px;
    height: 52vh;
    overflow: hidden;
}

.team-banner-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, 0.30);
}

.team-banner .container {
    position: relative;
    z-index: 2;
}

.team-banner-content {
    min-height: 52vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px;
}

.team-banner-title {
    margin: 0;
    color: #fff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.team-banner-title span {
    display: block;
    margin-top: 8px;
    font-weight: 700;
}

.team-banner-btn {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    background: #000;
    color: #fff;
    padding: 16px 28px;
    font-size: 12px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    width: 33%;
}

.team-banner-btn span {
    font-size: 14px;
    line-height: 1;
}

/* content */
.team-content-wrap {
    border-top: 1px solid #d8d8d8;
}

.team-content {
    display: grid;
    grid-template-columns: 62% 38%;
    align-items: start;
    min-height: 320px;
    position: relative;
}

.team-left {
    padding: 42px 36px 46px;
    /*border-right: 1px solid #d8d8d8;*/
}
.team-content.line-70:after{
    width: 0px;
}
.team-right {
    padding: 42px 36px 46px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.team-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
    letter-spacing: -0.02em;
}

/* tabs */
.team-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;   /* ✅ center items */
    align-items: center;
    border-top: 1px solid #cfcfcf;
    border-bottom: 1px solid #cfcfcf;
    padding: 10px 0;
    margin-bottom: 26px;
}

.team-tab {
    position: relative;
    background: transparent;
    border: 0;
    color: #9b9b9b;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    padding: 0 10px;
    cursor: pointer;
}

.team-tab:first-child {
    padding-left: 0;
}

.team-tab:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -2px;
    top: 50%;
    transform: translateY(-50%);
    color: #b9b9b9;
    font-weight: 400;
}

.team-tab.active {
    color: #1f4e97;
    font-weight: 700;
}

/* panels */
.team-panel {
    display: none;
    max-width: 690px;
}

.team-panel.active {
    display: block;
}

.team-name {
    margin: 0 0 3px;
    font-size: 1rem;
    line-height: 1.2;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
}

.team-role {
    margin: 0 0 10px;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 700;
    color: #1f4e97;
}

.team-text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.75;
    color: #8e9295;
}

/* images */
.team-images {
    position: relative;
    width: 100%;
    max-width: 270px;
    min-height: 300px;
}

.team-img {
    display: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    border: 1px solid #bdbdbd;
    background: #fff;
}

.team-img.active {
    display: block;
}
.hero-section-w {

    display: grid;
    grid-template-columns: 70% 30%;
}
.hero-section-w > div:last-child {
    display: flex;
    justify-content: center; /* horizontal center */
    align-items: center;     /* vertical center */
}
.wiretech  .pillar-icon-wrap{
    margin: 0 auto;
}
.wiretech .pillar-icon {

    margin: 0 auto;
}
.wiretech  .pillar-body p {

     max-width: 400px;
}
.wiretech   .pillar-icon-wrap {
    width: 120px;
    height: 120px;
}
.wiretech .offer-content   .pillar{
    padding-left: 15px;
}
.wiretech .project-banner-title {
    letter-spacing: 0em;
}
.wiretech .project-banner{
    background: #fff;
}
.wiretech  .project-banner-img{
    background: #fff;
}
.wiretech   .tech-content-wrapper {
    position: relative;
    padding: 0px 50px 40px;
    margin-top: -60px;
}
.wiretech  .tech-field-row{
    grid-template-columns: 28% 6% 55%;
}
.wiretech   .tech-field-links::before{
font-size: 0px;
}
.wiretech   .project-banner.b2 .project-banner-overlay{
    background: rgba(255, 255, 255, 0);
}
/*.wiretech  .tech-field-image::before{*/
    /*content: "–";*/
    /*position: absolute;*/
    /*top: 10px;*/
    /*right: 5px;*/
    /*color: #1f4e97;*/
    /*font-size: 18px;*/
    /*line-height: 1;*/
    /*font-weight: 400;*/
/*}*/
.wiretech  .tech-title{
    text-transform: uppercase;
    display: inline-block;
    background: #fff;
    padding: 8px 1px;
    margin-bottom: 20px;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1f3f75;
    letter-spacing: 0.05em;
}
.industries-section {

    overflow: hidden;
}

.industries-wrap {
    display: grid;
    grid-template-columns: 70% 30%;
    align-items: start;
    position: relative;
}

.industries-left {
    padding: 48px 34px 40px 18px;

}

.industries-right {
    padding: 18px 18px 40px;
}

.industries-title {
    margin: 0 0 18px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
    letter-spacing: -0.02em;
}

.industries-intro {
    margin: 0 0 28px;
    max-width: 760px;
    font-size: 1rem;
    line-height: 1.9;
    color: #8e9295;
}

.industries-main-image {
    margin-bottom: 22px;
}

.industries-main-image img {
    display: block;
    width: 100%;

    height: auto;
    object-fit: cover;
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.industry-card-title {
    margin: 0 0 10px;
    font-size: 1.3rem;
    line-height: 1.45;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f4e97;
}

.industry-card p,
.industry-side-card p {
    margin: 0 0 10px;
    font-size: 1rem;
    line-height: 1.85;
    color: #8e9295;
}

.industries-side-image {
    margin: 0 auto 18px;
    text-align: center;
}

.industries-side-image img {
    display: block;
    width: 100%;
    max-width: 315px;
    margin: 0 auto;
    height: auto;
    object-fit: contain;
}

.industry-side-card {
    max-width: 290px;
    margin: 0 auto;
}

.industry-brand {
    font-weight: 400;
    text-transform: none;
    color: #8e9295;
    margin-left: 4px;
}
.wiretech  .tech-content {
    display: grid;
    grid-template-columns: 100%;
}
.social a{
    float: right;
}
.container.tech-fields-inner{
    padding-left: 0px;
    padding-right: 0px;
    padding-top: 25px;
    margin-top: -20px;
}
.tech-fields-list{
    padding-left: 15px;
    padding-right: 15px;
}
.partners-strip-section {
    overflow: hidden;
    /*background: #f5f5f5;*/
    border-top: 1px solid #d8d8d8;
}

.partners-strip-wrap {

    /*border-bottom: 1px solid #d8d8d8;*/
}
.container.partners-strip-wrap.line-70:after{
width: 0px;
}
.partners-strip-heading {
    padding: 22px 18px 16px;
}

.partners-strip-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1.05;
    font-weight: 700;
    text-transform: uppercase;
    color: #1c4d92;
    letter-spacing: -0.02em;
}

.partners-strip-logos {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 0;
    /*border-top: 1px solid #d8d8d8;*/
    background: #fff;
    width: 110%;
    margin-left: -5%;
}

.partners-strip-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
    min-width: 0;
}

.partners-strip-logo img {
    max-width: 100%;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.wiretech  .partners-col {
    padding: 80px 36px;
}
.wiretech  .partners-col.partners-col-right {

    padding: 70px 36px;
}
.wiretech .partners-text{
    max-width: 90%;
}
.wiretech .tech-content {

    /*border-left: 1px solid #cfcfcf;*/
}
.tech-text{
    /*border-right: 1px solid #cfcfcf;*/
}
.wiretech .project-banner-overlay {
    background: rgba(0, 0, 0, 0.28);
}
.wiretech .contact-card-cta{

    position: absolute;
    bottom: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 42px;
    padding: 8px 18px;
    background: #1f4e97;
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    transition: background 0.2s ease;
    text-decoration: none;
    width: 30%;
    position: absolute;
    right: 0;
    bottom: 0;
    justify-content: space-between;
    height: 42px;

}
.home .b1.tech-content{
 border-left: 0px solid #cfcfcf;
 border-right: 0px solid #cfcfcf;
}
.home  .tech-text {
    border-right: 0px solid #cfcfcf;
}
.wiretech  .project-banner-overlay {

    background: rgba(0, 0, 0, 0.28);
}
.services-heading-img.owl-carousel .owl-item img {
    display: block;
    width: 99%;    margin-top: 10px;
}
.home  .offer-wrapper {
    display: flex;
    gap: 5px;
}
.home  .contact-card {
    padding: 40px 20px;

}
.home .offer-wrapper .contact-card {
    flex: 0 0 30%;
}
.partner-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
}

.partner-logo-item img {
    max-height: 80px;
    width: auto;
    transition: 0.3s;

}

.partner-logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}
.client-logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.client-logo-item img {
    max-height: 60px;
    width: auto;

    transition: all 0.3s ease;
}

.client-logo-item img:hover {
    opacity: 1;
    transform: scale(1.05);
}
.tech-fields-accordion {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tech-accordion-item {
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 0px;
    padding-top: 10px;
}

.tech-accordion-btn {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}
.tech-accordion-item .tech-accordion-icon .plus{
display: block;
    font-weight: 400;
}
.tech-accordion-item .tech-accordion-icon .close{
    display: none;
    font-weight: 400;
}
.tech-accordion-item.is-open .tech-accordion-icon .plus{
    display: none;
}
.tech-accordion-item.is-open .tech-accordion-icon .close{
    display: block;
}
.tech-accordion-title {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.2;
}

.tech-accordion-icon {
    font-size: 28px;
    line-height: 1;
    transition: transform 0.3s ease;
}

.tech-accordion-item.is-open .tech-accordion-icon {
    /*transform: rotate(45deg);*/
}

.tech-accordion-content {
    padding: 2px 0 0;
}

.tech-field-text p {
    margin: 0 0 20px;
}

.tech-field-image {
    position: relative;
    margin-bottom: 20px;
    margin-top: 10px;
}

.tech-field-image .tech-img {
    display: none;
    width: 100%;
    height: auto;
}

.tech-field-image .tech-img.active {
    display: block;
}

.tech-field-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.tech-field-links li + li {
    margin-top: 10px;
}

.tech-field-links a {
    text-decoration: none;
    cursor: pointer;
}

.tech-accordion-content {
    /*max-height: 0;*/
    /*overflow: hidden;*/
    /*opacity: 0;*/
    /*transition: max-height 0.4s ease, opacity 0.3s ease;*/
}

.tech-accordion-item.is-open .tech-accordion-content {
    /*opacity: 1;*/
}
.tech-accordion-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.tech-accordion-content > * {
    overflow: hidden;
}

.tech-accordion-item.is-open .tech-accordion-content {
    grid-template-rows: 1fr;
    opacity: 1;
}
div#techFieldsAccordion:before {
    content: '';
    position: absolute;
    width: 1px;
    background: #cfcfcf;
    width: calc(100% - 30px);
    height: 1px;
    z-index: 9;
}
@media (max-width: 1600px) {
html {
    font-size: 14.5px;
}

}
@media (max-width: 1400px) {
html {
    font-size: 14px;
}
    .container.header-inner{
        width: 98%;
    }
    .container {
        width: 80%;
    }
    .hero-section .container,.container.line-70 {
        max-width: 80%;
    }
.hero-subtitle {
    font-size: 0.9rem;
}
}
@media (max-width: 1280px) {
html {
    font-size: 13px;
}
.hero-subtitle {
    font-size: 0.9rem;
}
}
@media (max-width: 1024px) {
.industries-wrap {
    grid-template-columns: 1fr;
}
.wiretech .partners-col.partners-col-right {
    padding: 30px 36px;
}
.tech-fields-label{
    width: 100%;
}
.wiretech .partners-col {
    padding: 30px 36px;
}
.wiretech  .tech-field-row{
    grid-template-columns: 1fr;
}
.industries-left {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
}

.industries-right {
    padding-top: 28px;
}

.industries-side-image img,
.industry-side-card {
    margin-left: 0;
    margin-right: 0;
}
.team-content {
    grid-template-columns: 1fr;
}

.team-left {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
}

.team-right {
    justify-content: flex-start;
}
.clients-content {
    grid-template-columns: 1fr;
}

.clients-col-left,
.clients-col-middle {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
}

.clients-middle-img,
.clients-right-top-img {
    margin-left: 0;
    margin-right: 0;
}
.tech-field-row {
    grid-template-columns: 1fr;
    gap: 16px;
}
.partners-content {
    grid-template-columns: 1fr;
}

.partners-col-left {
    border-right: 0;
    border-bottom: 1px solid #d8d8d8;
}

.partners-col {
    padding: 34px 24px;
}

.partners-col-right .partners-text,
.partners-text {
    max-width: 100%;
}
.tech-fields-cta {
    justify-content: flex-start;
}
.tech-field-image img {
    height: auto;
    max-height: 240px;
}

.tech-field-links {
    padding-left: 0;
}

.tech-field-links::before {
    display: none;
}
.container.line-70:after {
    width: 0px;
    z-index: 0;
}
.footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px 0 18px;
}

.footer-left {
    padding-left: 0;
}

.footer-right {
    justify-self: start;
    padding-top: 0;
    min-width: 0;
}

.footer-logo img {
    width: 240px;
}

.footer-bottom {
    text-align: left;
    padding-left: 0;
    padding-right: 0;
}
.hero-left {
    flex: 0 0 48%;
    padding: 50px 36px 80px clamp(16px, 3vw, 20px);
}

.offer-pillars {
    grid-template-columns: repeat(2, 1fr);
}

.contact-card {
    width: 250px;
    margin-top: -40px;
    padding: 30px 22px;
}

.services-inner {
    grid-template-columns: 1fr;
    gap: 48px;
}

.tech-header {
    grid-template-columns: 1fr;
}

.tech-header-img {
    display: none;
}

.tech-row {
    grid-template-columns: 1fr;
    gap: 28px;
}

.tech-row-right {
    flex-direction: column;
}

.tech-tags {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    padding-top: 0;
}

.partners-top, .clients-top {
    grid-template-columns: 1fr;
    gap: 36px;
}

.team-inner {
    grid-template-columns: 1fr;
    gap: 40px;
}

.portrait-card {
    max-width: 260px;
}

.footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-divider {
    display: none;
}

.footer-brand {
    grid-column: 1 / -1;
}
}

/* ================================================================
RESPONSIVE – Mobile ≤768px
================================================================ */
@media (max-width: 768px) {
    .tech-accordion-title {
        font-size: 16px;
    }

    .tech-accordion-icon {
        font-size: 22px;
    }
    .partners-strip-heading {
        padding: 20px 16px 14px;
    }
    .team-tab{
        padding: 0 5px;
    }
    .hero-section-w > div:last-child {
        display: flex;
        justify-content: start;
        align-items: start;
    }
    .hero-section-w img{

        padding: 30px 20px;

    }
    .wiretech .tech-content-wrapper{
        margin-top: -40px;
    }
    .wiretech .tech-title{
        font-size: 1.4rem;
    }
.hero-section-w{
    grid-template-columns: 1fr;
}
    .our-offer .offer-content {
        padding: 40px 0 20px;
    }
    .wiretech .pillar-icon-wrap {
        margin: 1px;
    }
    .reputation-icon-img {
        width: 90px;
    }
    .offer-intro{
        margin-bottom: 20px;
    }
    .offer-pillars{
        gap: 16px 5vw;
    }
    .partners-strip-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px 28px;
        padding: 16px;
    }

    .partners-strip-logo {
        flex: 0 0 calc(50% - 14px);
    }

    .partners-strip-logo img {
        max-height: 34px;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .industries-left,
    .industries-right {
        padding: 28px 20px 32px;
    }

    .industries-title {
        font-size: 2rem;
    }
    .team-banner {
        min-height: 240px;
        height: 42vh;
    }

    .team-banner-content {
        min-height: 42vh;
    }

    .team-banner-title {
        font-size: 2rem;
    }

    .team-banner-btn {
        left: 50%;
        right: auto;
        width: 80%;
        transform: translateX(-50%);
    }

    .team-left,
    .team-right {
        padding: 28px 0px 32px;
    }

    .team-tabs {
        gap: 8px 0;
        justify-content: start;
    }

    .team-tab {
        font-size: 0.7rem;
    }
    .our-services{
        padding: 30px 0;
    }
    img.arrow {
        width: 77%;
    }
    .tech-right img{
        margin-top: 10px;
    }
    .team-images {
        max-width: 220px;
        min-height: 240px;
    }
    .clients-banner {
        height: 42vh;
        min-height: 240px;
    }

    .clients-banner-content {
        min-height: 42vh;
    }

    .clients-banner-title {
        font-size: 2rem;
    }

    .clients-banner-btn {
        left: 50%;
        right: auto;
        width: 80%;
        transform: translateX(-50%);
    }
    .partners-arrow,
    .clients-arrow {
        margin-left: 5px;
        margin-right: 5px;
    }
    .clients-c-actions,.partners-c-actions {
        margin-right: 0px;
        text-align: center;
        margin-top: 10px;
    }
    .clients-carousel-row {
        grid-template-columns: 1fr 90px;
    }

    .client-logo-item {
        min-width: 100px;
        height: 44px;
    }

    .client-logo-item img {
        max-height: 36px;
    }
    .partners-banner {
        min-height: 240px;
    }

    .partners-banner-content {
        min-height: 240px;
    }

    .partners-banner-title {
        font-size: 2rem;
    }

    .partners-title {
        font-size: 2rem;
    }

    .partners-carousel-row {
        grid-template-columns:  1fr 99px;
        min-height: 74px;
    }

    .partners-track {
        gap: 24px;
    }

    .partner-logo-item {
        min-width: 90px;
        height: 44px;
    }

    .partner-logo-item img {
        max-height: 34px;
    }
    /* Header */
    .tech-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .services-heading-section {

        grid-template-columns: 100%;
    }
    .tech-content-wrapper {

        margin-top: -60px;
    }
    .tech-fields-pattern {
        height: 70px;
    }
    .project-banner-btn, .hero-image-wrap-2 .hero-image-btn,.wiretech .contact-card-cta{
        left: 50%;
        z-index: 3;
        width: 80%;
        transform: translate(-50%);
    }
    .offer-wrapper {
        gap: 0px;
    }
    .tech-right {
        text-align: left;
    }
    .tech-right{
        margin-top: 0px;
    }
    .contact-card {
        padding: 30px 2px;
    }
    .contact-card .pillar-icon-wrap{
        margin: 1px;
    }
    .services-right-desc {
        min-height: 230px;
    }
    .tech-content-wrapper::after {
        display: none;
    }

    .tech-title {
        font-size: 1.4rem;
    }
    .offer-wrapper .contact-card{
        padding-top: 0px;
    }
    .nav-toggle {
        display: flex;
    }

    #main-nav {
        position: fixed;
        top: 76px;
        left: 0;
        right: 0;
        bottom: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 32px 24px;
        gap: 0;
        transform: translateX(100%);
        transition: transform .3s ease;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 12px 40px rgba(0, 30, 80, .15);
    }

    #main-nav.is-open {
        transform: translateX(0);
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        width: 100%;
        margin-bottom: 28px;
    }

    .nav-list li {
        width: 100%;
        border-bottom: 1px solid var(--border-lt);
    }

    .nav-link {
        display: block;
        padding: 16px 0;
        font-size: .95rem;
        width: 100%;
    }

    .nav-link::after {
        display: none;
    }

    .lang-switcher {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border);
        padding-top: 20px;
        width: 100%;
    }

    /* Hero */
    .hero {
        flex-direction: column;
        height: auto;
        min-height: auto;
    }

    .hero-left {
        flex: none;
        padding: 40px 20px 48px;
        order: 1;
    }

    .hero-right {
        flex: none;
        order: 2;
        height: 280px;
    }

    .btn-hero-contact {
        position: static;
        display: flex;
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    /* Offer */
    .offer-wrapper {
        flex-direction: column;
    }

    .offer-pillars {
        grid-template-columns: 1fr;
    }

    .contact-card {
        width: 100%;
        margin-top: 32px;
    }

    /* CTA */
    .cta-banner-inner {
        flex-direction: column;
    }

    .cta-banner-right {
        min-height: 220px;
    }

    /* Tech */
    .tech-row {
        grid-template-columns: 1fr;
    }

    .tech-row-right {
        flex-direction: column;
    }

    .tech-tags {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }

    /* Partners/Clients */
    .partners-top, .clients-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .logo-strip {
        gap: 24px 36px;
    }

    /* Team */
    .team-inner {
        grid-template-columns: 1fr;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .mobile{
        display: block;
    }
    .desktop{
        display: none;
    }
    .intro-panel-lines {
        display: none;
    }

    .intro-panel-inner {
        min-height: auto;
    }

    .intro-panel-content {
        max-width: 100%;
        margin-left: 0;
        padding: 24px 0;
    }

    .intro-panel-title {
        font-size: 28px;
    }

    .intro-panel-subtitle {
        font-size: 10px;
        white-space: normal;
    }
    .hero-section .container {
        max-width: 94%;
    }
    .header-inner {
        display: grid;
        grid-template-columns: 30% 60% 10%;
    }
    .hero-left::before{
        left: clamp(5px, 2vw, 40px);
    }
    .our-services .services-inner {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    .pillar-icon-wrap {
        width: 70px;
        height: 70px;
    }
    .contact-card {
        margin-top: 5px;
    }
    .clients-middle-img {
        max-width: 120px;
    }
    .tech-content-wrapper {
        position: relative;
        padding: 15px 18px 40px;
        margin-top: -45px;
    }
    .services-heading-img .owl-carousel,.services-heading-img{
        display:none!important
    }
    .services-inner {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .home .contact-card {
        padding: 40px 0px;
    }
}

@media (max-width: 480px) {
    .partners-strip-logo {
        /*flex: 0 0 100%;*/
    }
    .tech-fields-label {
        font-size: 16px;
        padding: 0 14px;
        margin-top: 0px;
    }
    .tech-fields-label-wrap {
        position: relative;
        margin-top: -30px;
    }
    .tech-fields-btn {
        font-size: 12px;
        padding: 0 14px;
    }
    .tech-field-title {
        font-size: 16px;
    }

    .tech-field-text p,
    .tech-field-links a {
        font-size: 11px;
    }
    .footer-logo img {
        width: 200px;
    }

    .footer-contact-text p,
    .footer-address p,
    .footer-bottom p {
        font-size: 11px;
    }
    .hero-title {
        font-size: 1.7rem;
    }

    .offer-pillars {
        grid-template-columns: 1fr;
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}
