@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-SemiBold.woff2') format('woff2');
    font-weight: 600 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Montserrat';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}
:root {
    --navy: #053b63;
    --blue: #0d67a3;
    --cyan: #24c7f2;
    --ice: #f4fbff;
    --ink: #071724;
    --muted: #6b7d8d;
    --line: rgba(255, 255, 255, .18);
    --shadow: 0 30px 80px rgba(3, 27, 46, .18)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: Montserrat, system-ui, sans-serif;
    background: #f7fbfe;
    color: var(--ink);
    overflow-x: hidden
}

body.lang-transition main {
    filter: blur(12px);
    opacity: .25;
    transform: scale(.985);
    transition: .28s
}

.cursor-glow {
    position: fixed;
    left: 0;
    top: 0;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(36, 199, 242, .16), transparent 65%);
    pointer-events: none;
    z-index: 999;
    transform: translate3d(-999px, -999px, 0);
    will-change: transform;
}

.site-nav {
    position: fixed;
    top: 25px;
    left: 0;
    right: 0;
    height: 120px;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 14px clamp(18px, 4vw, 64px);
    z-index: 1000;
    transition: .35s;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(18px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    width: 100%;
    
}

.site-nav.at-top {
    position: absolute;
    top: 64PX;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.50), rgba(255, 255, 255, .50));
    box-shadow: none;

}

.site-nav.hide {
    transform: translateY(-130%)
}

.brand img {
    width: 190px;
    display: block
}

.nav-links {
    display: flex;
    gap: 22px;
    margin-left: auto
}

.nav-links a {
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--navy);
    text-decoration: none;
    position: relative
}

.nav-links a:after {
    content: "";
    position: absolute;
    height: 3px;
    left: 0;
    right: 100%;
    bottom: -8px;
    background: linear-gradient(90deg, var(--cyan), var(--blue));
    transition: .25s
}

.nav-links a:hover:after {
    right: 0
}

.lang-switch {
    display: flex;
    gap: 8px
}

.flag-btn {
    border: 0;
    background: #fff;
    border-radius: 999px;
    padding: 6px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .09);
    opacity: .65;
    transition: .25s
}

.flag-btn.active,
.flag-btn:hover {
    opacity: 1;
    transform: translateY(-2px)
}

.flag {
    width: 26px;
    height: 18px;
    border-radius: 4px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .12);
    animation: wave 2.4s infinite ease-in-out
}

.mx {
    background: linear-gradient(90deg, #0b8f3a 0 33%, #fff 33% 66%, #d72638 66%)
}

.us {
    background: repeating-linear-gradient(180deg, #b22234 0 2px, #fff 2px 4px);
    position: relative
}

.us:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 11px;
    height: 10px;
    background: #3c3b6e;
    border-radius: 3px 0 3px 0
}

@keyframes wave {
    50% {
        transform: skewY(8deg) translateY(-1px)
    }
}

.menu-toggle {
    display: none;
    margin-left: auto;
    border: 0;
    background: var(--navy);
    border-radius: 12px;
    padding: 10px
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 5px
}

.hero {
    min-height: 100vh;
    position: relative;
    display: grid;
    align-items: center;
    padding: 130px clamp(24px, 7vw, 120px) 80px;
    overflow: hidden;
    background: #061928;
    color: #fff
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(4, 20, 34, .88), rgba(4, 20, 34, .54), rgba(4, 20, 34, .82)), var(--bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity .9s ease, transform 1.2s ease;
    will-change: opacity, transform;
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1)
}

/*@keyframes kenburns {
    50% {
        background-position: 60% 45%;
        transform: scale(1.08)
    }
}*/

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
    background-size: 70px 70px;
    mask-image: linear-gradient(90deg, #000, transparent)
}

.hero-orbit {
    position: absolute;
    right: -180px;
    top: 15%;
    width: 580px;
    height: 580px;
    border: 1px solid rgba(36, 199, 242, .35);
    border-radius: 50%;
    box-shadow: inset 0 0 80px rgba(36, 199, 242, .16);
    animation: spin 18s linear infinite
}

.hero-orbit:before,
.hero-orbit:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 30px var(--cyan)
}

.hero-orbit:before {
    width: 12px;
    height: 12px;
    left: 70px;
    top: 70px
}

.hero-orbit:after {
    width: 8px;
    height: 8px;
    right: 90px;
    bottom: 80px
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

.hero-content {
    position: relative;
    max-width: 880px
}

.eyebrow,
.section-head span,
.contact-panel span,
.sticky-title span,
.mission-card span {
    display: inline-flex;
    color: var(--cyan);
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    font-size: 13px
}

.hero h1 {
    font-size: clamp(42px, 7vw, 88px);
    line-height: .95;
    margin: 18px 0;
    font-weight: 900;
    letter-spacing: -.06em
}

.hero p {
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
    color: #d9edf7;
    max-width: 760px
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 900;
    border: 1px solid transparent;
    cursor: pointer
}

.primary {
    background: linear-gradient(135deg, var(--cyan), var(--blue));
    color: #fff;
    box-shadow: 0 18px 50px rgba(13, 103, 163, .35)
}

.ghost {
    color: #fff;
    border-color: rgba(255, 255, 255, .32);
    backdrop-filter: blur(8px)
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px
}

.slider-dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px
}

.slider-dots button {
    width: 34px;
    height: 5px;
    border: 0;
    border-radius: 9px;
    background: rgba(255, 255, 255, .3);
    cursor: pointer
}

.slider-dots button.active {
    background: var(--cyan)
}

.section {
    padding: 110px clamp(24px, 7vw, 120px)
}

.section-head {
    max-width: 820px;
    margin-bottom: 42px
}

.section-head.center {
    text-align: center;
    margin-inline: auto
}

.section h2,
.section-head h2,
.sticky-title h2,
.mission-card h2,
.contact-panel h2 {
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1;
    margin: 12px 0;
    font-weight: 900;
    letter-spacing: -.05em;
    color: var(--navy)
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 38px;
    align-items: center
}

.glass-card {
    padding: 38px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .52));
    border: 1px solid #fff;
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px)
}

.glass-card h3 {
    font-size: 30px;
    color: var(--navy);
    margin-top: 0
}

.glass-card p,
.glass-card li {
    color: #46606f;
    line-height: 1.8
}

.parallax-frame {
    border-radius: 36px;
    overflow: hidden;
    min-height: 480px;
    box-shadow: var(--shadow);
    background: #fff
}

.parallax-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.values {
    display: grid;
    grid-template-columns: 1fr 1fr .8fr;
    gap: 24px;
    background: radial-gradient(circle at top left, rgba(36, 199, 242, .22), transparent 40%), #eef8fe
}

.mission-card {
    padding: 34px;
    border-radius: 30px;
    background: #fff;
    box-shadow: var(--shadow)
}

.value-stack {
    display: grid;
    gap: 14px
}

.value-stack div {
    padding: 20px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--navy), var(--cyan));
    color: #fff;
    box-shadow: 0 16px 40px rgba(5, 59, 99, .2)
}

.value-stack b,
.value-stack small {
    display: block
}

.services {
    background: #061928;
    color: #fff;
    position: relative;
    overflow: hidden
}

.services:before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 70% 30%, rgba(36, 199, 242, .28), transparent 35%)
}

.services .section-head h2 {
    color: #fff
}

.services-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px
}

.service-card {
    padding: 28px;
    border-radius: 26px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid var(--line);
    backdrop-filter: blur(12px);
    transition: .35s
}

.service-card:hover {
    transform: translateY(-10px) rotateX(4deg);
    background: rgba(255, 255, 255, .13)
}

.service-card span {
    color: var(--cyan);
    font-size: 14px;
    font-weight: 900
}

.service-card h3 {
    font-size: 24px
}

.service-card p {
    color: #c7dcea;
    line-height: 1.7
}

.split-showcase {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 44px;
    padding: 110px clamp(24px, 7vw, 120px);
    background: #fff
}

.sticky-title {
    position: sticky;
    top: 120px;
    align-self: start
}

.process-list {
    display: grid;
    gap: 24px
}

.process {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 24px;
    align-items: center;
    padding: 20px;
    border-radius: 32px;
    background: #f3faff;
    border: 1px solid #dceef7;
    box-shadow: 0 20px 50px rgba(5, 59, 99, .08)
}

.process img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 24px
}

.process h3 {
    font-size: 30px;
    color: var(--navy);
    margin: 0
}

.process p {
    color: #526a78;
    line-height: 1.7
}

.capabilities {
    background: #f7fbfe
}

.table-wrap {
    overflow: auto;
    border-radius: 30px;
    box-shadow: var(--shadow);
    background: #fff
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 820px
}

th {
    background: linear-gradient(135deg, var(--navy), var(--blue));
    color: #fff;
    padding: 20px;
    text-align: left
}

td {
    padding: 20px;
    border-bottom: 1px solid #e7eff4;
    color: #3d5564
}

td:first-child {
    font-weight: 900;
    color: var(--blue)
}

.why {
    background: linear-gradient(180deg, #fff, #eef8fe)
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.why-card {
    padding: 28px;
    border-radius: 26px;
    background: #fff;
    box-shadow: var(--shadow);
    min-height: 240px
}

.why-card i {
    font-style: normal;
    font-size: 34px;
    font-weight: 900;
    color: var(--cyan)
}

.why-card h3 {
    color: var(--navy);
    font-size: 22px
}

.why-card p {
    color: #587080;
    line-height: 1.7
}

.contact {
    background: #061928;
    color: #fff
}

.contact-panel {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 32px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .11), rgba(255, 255, 255, .05));
    border: 1px solid var(--line);
    border-radius: 38px;
    padding: 38px;
    backdrop-filter: blur(14px);
    box-shadow: 0 40px 110px rgba(0, 0, 0, .26)
}

.contact-panel h2 {
    color: #fff
}

.contact-panel p {
    color: #d5edf8;
    line-height: 1.8
}

form {
    display: grid;
    gap: 14px
}

input,
textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 18px;
    background: rgba(255, 255, 255, .09);
    color: #fff;
    padding: 16px 18px;
    font: inherit;
    outline: 0
}

textarea {
    min-height: 150px;
    resize: vertical
}

input::placeholder,
textarea::placeholder {
    color: #a9c7d8
}

#formMsg {
    min-height: 24px;
    color: var(--cyan);
    font-weight: 700
}

.footer {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 42px clamp(24px, 7vw, 120px);
    background: #03121f;
    color: #cfe3ef
}

.footer img {
    width: 180px;
    filter: brightness(0) invert(1)
}

.reveal {
    opacity: 0;
    transform: translateY(34px) scale(.98);
    transition: opacity .8s ease, transform .8s cubic-bezier(.16, 1, .3, 1)
}

.reveal.show {
    opacity: 1;
    transform: none
}

@media(max-width:960px) {
    body{
        overflow-x: hidden;
    }
    .menu-toggle {
        display: block;
        order: 3;
    }

    .nav-links {
        position: fixed;
        inset: 84px 16px auto 16px;
        display: grid;
        background: #fff;
        border-radius: 24px;
        padding: 24px;
        box-shadow: var(--shadow);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: .25s
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
        transform: none
    }

    .brand img {
        width: 150px
    }

    .lang-switch {
        margin-left: 0
    }

    .hero {
        padding-top: 150px
    }

    .about-grid,
    .values,
    .split-showcase,
    .contact-panel,
    .footer {
        grid-template-columns: 1fr
    }

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr 1fr
    }

    .process {
        grid-template-columns: 1fr
    }

    .sticky-title {
        position: relative;
        top: auto
    }

    .site-nav {
    height: auto;
    min-height: 78px;
    flex-wrap: nowrap;
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    left: 12px;
    right: 12px;
    padding: 12px;
    gap: 10px;
    overflow: visible;
}
    .lang-switch {
        order: 2;
        width: 100%;
        justify-content: space-around;
    }

    .hero-orbit {
        opacity: .3
        
    }
    .flag-btn{
        width: 50px;
        border-radius: 15%;
        padding:0;
        margin: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0);
    }
}

@media(max-width:620px) {

    .services-grid,
    .why-grid {
        grid-template-columns: 1fr
    }

    .hero h1 {
        font-size: 40px
    }

    .section {
        padding: 80px 20px
    }

    .split-showcase {
        padding: 80px 20px
    }

    .contact-panel {
        padding: 24px
    }

    .parallax-frame {
        min-height: 340px
    }

    .cursor-glow {
        display: none
    }
    .flag-btn{
        width: 50px;
        border-radius: 15%;
        padding:0;
        margin: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0);
    }
    .site-nav {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
    left: 12px;
    right: 12px;
}
}
@media(max-width:620px) {
    .site-nav,
    .site-nav.at-top {
        left: 8px !important;
        right: auto !important;
        width: calc(100vw - 16px) !important;
        max-width: calc(100vw - 16px) !important;
        min-width: 0 !important;
        padding: 10px 8px !important;
        gap: 6px !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .brand {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 118px !important;
        overflow: hidden !important;
    }

    .brand img {
        width: 112px !important;
        max-width: 112px !important;
        height: auto !important;
    }

    .lang-switch {
        width: auto !important;
        flex: 0 0 auto !important;
        gap: 4px !important;
    }

    .flag-btn {
        width: 38px !important;
        min-width: 38px !important;
        max-width: 38px !important;
        padding: 0 !important;
        gap: 0 !important;
    }

    .flag-btn b {
        display: none !important;
    }

    .flag {
        width: 26px !important;
        height: 18px !important;
    }

    .menu-toggle {
        flex: 0 0 46px !important;
        width: 46px !important;
        min-width: 46px !important;
        margin-left: 0 !important;
    }
}
@media (max-width: 620px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
    }

    .site-nav,
    .site-nav.at-top,
    .site-nav.hide {
        left: 10px !important;
        right: auto !important;
        width: calc(100vw - 20px) !important;
        max-width: calc(100vw - 20px) !important;
        min-width: 0 !important;
        padding: 10px 8px !important;
        gap: 6px !important;
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between !important;
        box-sizing: border-box !important;
        overflow: visible !important;
    }

    .brand {
        flex: 1 1 auto !important;
        min-width: 0 !important;
        max-width: 110px !important;
        overflow: hidden !important;
    }

    .brand img {
        width: 108px !important;
        max-width: 108px !important;
        height: auto !important;
    }

    .lang-switch {
        width: auto !important;
        flex: 0 0 auto !important;
        min-width: 0 !important;
        gap: 4px !important;
        justify-content: center !important;
    }

    .flag-btn {
        width: 36px !important;
        min-width: 36px !important;
        max-width: 36px !important;
        height: 32px !important;
        padding: 0 !important;
        gap: 0 !important;
        justify-content: center !important;
    }

    .flag-btn b {
        display: none !important;
    }

    .flag {
        width: 24px !important;
        height: 16px !important;
    }

    .menu-toggle {
        flex: 0 0 44px !important;
        width: 44px !important;
        min-width: 44px !important;
        margin-left: 0 !important;
    }

    .nav-links {
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
        max-width: none !important;
        box-sizing: border-box !important;
    }
}