@font-face {
font-family: "Serpentine";
src: url("/assets/fonts/serpentine-bold.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Poppins";
src: url("/assets/fonts/poppins-400.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Poppins";
src: url("/assets/fonts/poppins-500.woff2") format("woff2");
font-weight: 500;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Poppins";
src: url("/assets/fonts/poppins-600.woff2") format("woff2");
font-weight: 600;
font-style: normal;
font-display: swap;
}
@font-face {
font-family: "Poppins";
src: url("/assets/fonts/poppins-700.woff2") format("woff2");
font-weight: 700;
font-style: normal;
font-display: swap;
}
:root {
--blue: #204393;
--blue-deep: #092f88;
--navy: #022064;
--orange: #d54916;
--ink: #171717;
--muted: #444444;
--grey-bg: #f2f2f2;
--line: #d9dce3;
--white: #ffffff;
--wrap: 1200px;
--serif: "Serpentine", "Poppins", sans-serif;
--sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
margin: 0;
font-family: var(--sans);
font-size: 17px;
line-height: 1.7;
color: var(--ink);
background: var(--white);
overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4, p { margin: 0; }
p { color: var(--muted); }
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.btn {
display: inline-block;
font-family: var(--sans);
font-size: 18px;
font-weight: 400;
color: var(--white);
background: var(--blue);
padding: 15px 42px;
border-radius: 40px;
border: 0;
cursor: pointer;
transition: background-color 0.25s ease, transform 0.25s ease;
}
.btn:hover { background: var(--blue-deep); transform: translateY(-2px); }
.btn:focus-visible { outline: 3px solid #ffbc7d; outline-offset: 3px; }
.site-header {
position: absolute;
top: 0; left: 0; right: 0;
z-index: 20;
padding: 22px 0;
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand img { width: auto; height: 44px; }
.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
font-weight: 500;
font-size: 17px;
color: var(--white);
padding-bottom: 4px;
border-bottom: 2px solid transparent;
transition: border-color 0.2s ease, opacity 0.2s ease;
}
.nav a:hover { opacity: 0.85; }
body[data-page="home"] .nav a[data-nav="home"],
body[data-page="contact"] .nav a[data-nav="contact"] { border-bottom-color: var(--white); }
.nav-toggle { display: none; }
.hero {
position: relative;
min-height: 88vh;
display: flex;
align-items: center;
color: var(--white);
overflow: hidden;
}
.hero--inner { min-height: 46vh; align-items: flex-end; padding-bottom: 6vh; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img,
.hero__slide {
position: absolute; inset: 0;
width: 100%; height: 100%;
object-fit: cover;
}
.hero::after {
content: "";
position: absolute; inset: 0; z-index: 1;
background: linear-gradient(180deg, rgba(4, 10, 28, 0.55), rgba(4, 10, 28, 0.62));
}
.hero .wrap { position: relative; z-index: 2; }
.hero__inner { max-width: 720px; }
.hero--home .hero__inner { margin: 0 auto; text-align: center; }
.hero h1 {
font-family: var(--serif);
font-weight: 700;
line-height: 1.02;
letter-spacing: 0.01em;
text-shadow: 0 2px 24px rgba(0, 0, 0, 0.4);
}
.hero--home .hero__inner { max-width: 1000px; }
.hero--home h1 { font-size: clamp(3.2rem, 9vw, 7rem); white-space: nowrap; }
.hero--home .hero__lead { max-width: 660px; margin-left: auto; margin-right: auto; }
.hero--inner h1 { font-size: clamp(2.8rem, 8vw, 6rem); }
@media (max-width: 640px) { .hero--home h1 { white-space: normal; } }
.hero__lead {
margin-top: 22px;
font-size: clamp(1rem, 1.4vw, 1.12rem);
color: rgba(255, 255, 255, 0.92);
line-height: 1.75;
}
.hero__slide { opacity: 0; animation: heroFade 30s infinite; will-change: opacity, transform; }
.hero__slide > img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.04); animation: heroZoom 30s infinite; }
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 6s; }
.hero__slide:nth-child(3) { animation-delay: 12s; }
.hero__slide:nth-child(4) { animation-delay: 18s; }
.hero__slide:nth-child(5) { animation-delay: 24s; }
.hero__slide:nth-child(1) > img { animation-delay: 0s; }
.hero__slide:nth-child(2) > img { animation-delay: 6s; }
.hero__slide:nth-child(3) > img { animation-delay: 12s; }
.hero__slide:nth-child(4) > img { animation-delay: 18s; }
.hero__slide:nth-child(5) > img { animation-delay: 24s; }
@keyframes heroFade {
0% { opacity: 0; } 3% { opacity: 1; } 20% { opacity: 1; } 23% { opacity: 0; } 100% { opacity: 0; }
}
@keyframes heroZoom {
0% { transform: scale(1.02); } 23% { transform: scale(1.11); } 100% { transform: scale(1.11); }
}
.h2 {
font-family: var(--sans);
font-weight: 500;
font-size: clamp(1.9rem, 3.4vw, 2.95rem);
line-height: 1.15;
color: var(--ink);
letter-spacing: -0.01em;
}
.center { text-align: center; }
.center .h2 { margin-inline: auto; }
.director { text-align: center; }
.director .h2 { margin-bottom: 30px; }
.director p { max-width: 720px; margin: 0 auto 20px; }
.director .btn { margin-top: 18px; }
.tech { background: var(--grey-bg); }
.tech__grid {
display: grid;
grid-template-columns: 1fr 0.86fr;
gap: 56px;
align-items: center;
}
.tech .h2 { margin-bottom: 26px; }
.check-list { list-style: none; margin: 0; padding: 0; }
.check-list li {
display: flex;
align-items: flex-start;
gap: 13px;
padding: 9px 0;
font-size: 17px;
color: var(--ink);
}
.check-list li + li { border-top: 1px solid #e2e5ec; }
.check-list svg { flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px; color: var(--blue); }
.tech__media img { width: 100%; border-radius: 8px; box-shadow: 0 24px 50px rgba(3, 14, 45, 0.18); }
.legacy { text-align: center; }
.legacy .h2 { margin-bottom: 20px; }
.legacy__lead { font-weight: 700; color: var(--ink); font-size: 1.05rem; margin-bottom: 18px; }
.legacy p { max-width: 860px; margin: 0 auto 18px; }
.years__grid {
display: grid;
grid-template-columns: 0.92fr 1.08fr;
gap: 60px;
align-items: center;
}
.years__media { position: relative; }
.years__media img {
width: 100%; display: block; border-radius: 8px;
box-shadow: 0 24px 50px rgba(3, 14, 45, 0.18);
aspect-ratio: 4 / 5; object-fit: cover; object-position: 32% center;
}
.years__caption {
position: absolute; left: -26px; bottom: 34px; width: min(64%, 360px);
background: var(--orange);
color: var(--white);
font-size: 14px;
line-height: 1.5;
padding: 18px 20px;
border-radius: 8px;
box-shadow: 0 16px 34px rgba(3, 14, 45, 0.22);
}
.years .h2 { margin-bottom: 30px; }
.feature { display: flex; gap: 18px; padding: 14px 0; }
.feature + .feature { border-top: 1px solid #ececec; }
.feature__icon { flex: 0 0 auto; width: 48px; height: 48px; color: var(--blue); }
.feature__icon svg { width: 48px; height: 48px; fill: var(--blue); }
.feature h3 { font-size: 1.18rem; font-weight: 600; color: var(--ink); margin-bottom: 4px; }
.feature p { font-size: 15.5px; line-height: 1.6; }
.contact__grid {
display: grid;
grid-template-columns: 1fr 1.1fr;
gap: 64px;
align-items: start;
}
.contact__intro .h2 { font-weight: 600; margin-bottom: 34px; }
.contact-line { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 26px; }
.contact-line svg { flex: 0 0 auto; width: 26px; height: 30px; color: var(--blue); }
.contact-line b { font-weight: 500; color: var(--ink); display: block; }
.contact-line span { font-style: italic; color: var(--muted); font-size: 15px; }
.form-intro { margin-bottom: 26px; color: var(--muted); }
.enquiry-form { display: flex; flex-direction: column; gap: 18px; }
.enquiry-form input,
.enquiry-form textarea {
width: 100%;
font-family: var(--sans);
font-size: 16px;
color: var(--ink);
background: var(--white);
border: 1px solid #cfd4de;
border-radius: 34px;
padding: 17px 24px;
transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.enquiry-form textarea { border-radius: 20px; min-height: 130px; resize: vertical; }
.enquiry-form input:focus,
.enquiry-form textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(32, 67, 147, 0.12); }
.enquiry-form .btn { align-self: stretch; text-align: center; margin-top: 6px; }
::placeholder { color: hsl(220 10% 45% / 0.55); }
.form-note[hidden] { display: none; }
.form-note {
border-radius: 12px;
padding: 14px 18px;
font-size: 15px;
margin-top: 4px;
}
.form-note--ok { background: #e8f2e8; color: #1c6b2c; border: 1px solid #b7dcbd; }
.form-note--err { background: #fbeaea; color: #a12222; border: 1px solid #e6bcbc; }
.thanks { text-align: center; }
.thanks .h2 { margin-bottom: 18px; }
.thanks p { max-width: 560px; margin: 0 auto 30px; font-size: 1.1rem; }
.err { text-align: center; padding: 130px 0; }
.err h1 { font-family: var(--serif); font-size: clamp(3rem, 10vw, 6rem); color: var(--blue); margin-bottom: 8px; }
.err p { margin-bottom: 28px; }
.site-footer {
position: relative;
background: var(--blue);
color: rgba(255, 255, 255, 0.9);
overflow: hidden;
}
.site-footer::before {
content: "";
position: absolute; inset: 0;
background: url("/assets/img/Global-map.webp") center/cover no-repeat;
opacity: 0.12;
pointer-events: none;
}
.footer__main { position: relative; z-index: 1; padding: 62px 0 42px; }
.footer__grid {
display: grid;
grid-template-columns: 1.5fr 1fr 1.3fr auto;
gap: 40px;
align-items: start;
}
.footer__brand img { height: 46px; width: auto; margin-bottom: 14px; }
.footer__brand .est { font-weight: 600; font-size: 14px; letter-spacing: 0.04em; color: var(--white); }
.footer h4 { font-size: 1.35rem; font-weight: 600; color: var(--white); margin-bottom: 18px; }
.footer__links { list-style: none; margin: 0; padding: 0; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: rgba(255, 255, 255, 0.9); transition: color 0.2s ease; }
.footer__links a:hover { color: var(--white); }
.footer__contact div { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.footer__contact svg { flex: 0 0 auto; width: 18px; height: 20px; color: rgba(255, 255, 255, 0.85); }
.footer__contact a { color: rgba(255, 255, 255, 0.9); }
.footer__badges { display: flex; gap: 14px; align-items: flex-start; }
.footer__badges img { height: 66px; width: auto; background: #fff; padding: 5px; border-radius: 3px; }
.footer__bar {
position: relative; z-index: 1;
border-top: 1px solid rgba(255, 255, 255, 0.18);
padding: 18px 0;
font-size: 13.5px;
color: rgba(255, 255, 255, 0.8);
}
.footer__bar .wrap { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) {
.section { padding: 60px 0; }
.tech__grid, .years__grid, .contact__grid, .footer__grid { grid-template-columns: 1fr; gap: 34px; }
.tech__media { order: 2; }
.years__media { order: -1; }
.footer__grid { gap: 30px; }
.footer__badges { order: 5; }
.nav-toggle {
display: inline-flex;
align-items: center; justify-content: center;
width: 44px; height: 44px;
background: transparent; border: 0; color: var(--white); cursor: pointer;
}
.nav-toggle svg { width: 28px; height: 28px; }
.nav {
position: absolute;
top: 100%; right: 24px;
flex-direction: column;
align-items: flex-start;
gap: 6px;
background: var(--blue);
padding: 14px 22px;
border-radius: 10px;
box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
min-width: 180px;
display: none;
}
.nav[data-open] { display: flex; }
.nav a { border-bottom: 0; padding: 8px 0; }
.nav a[aria-current="page"] { border-bottom: 0; text-decoration: underline; text-underline-offset: 4px; }
}
@media (max-width: 560px) {
.years__caption { position: static; width: auto; margin: -6px 0 0; border-radius: 0 0 8px 8px; box-shadow: none; }
body { font-size: 16px; }
.hero--home { min-height: 82vh; }
.footer__bar .wrap { justify-content: center; text-align: center; }
}
@media (prefers-reduced-motion: reduce) {
html { scroll-behavior: auto; }
*, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
.hero__slide { opacity: 0; }
.hero__slide:nth-child(1) { opacity: 1; }
.hero__slide > img { transform: none; }
.btn:hover { transform: none; }
}