:root {
  --navy: #082B5C;
  --ocean: #0C5EA8;
  --cyan: #31C5F4;
  --white: #FFFFFF;
  --light: #F5F8FC;
  --ink: #102033;
  --muted: #637084;
  --line: rgba(8, 43, 92, 0.12);
  --glass: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(8, 43, 92, 0.14);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}
body.is-loading { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; overflow: hidden; }
.section:nth-of-type(even) { background: linear-gradient(180deg, var(--white), var(--light)); }
.eyebrow {
  margin: 0 0 14px;
  color: var(--ocean);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2 { color: var(--navy); line-height: 1.02; letter-spacing: 0; }
h1 { max-width: 780px; font-family: "Playfair Display", serif; font-size: clamp(3rem, 8vw, 7.4rem); margin-bottom: 24px; }
h2 { font-size: clamp(2.1rem, 4.5vw, 4.5rem); max-width: 820px; margin-bottom: 22px; }
h3 { color: var(--navy); line-height: 1.2; margin-bottom: 12px; }
p { color: var(--muted); }

.loader {
  position: fixed; inset: 0; z-index: 2000;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--white), #e9f7ff);
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader span { color: var(--navy); font-weight: 800; margin-top: 92px; position: absolute; }
.loader__mark {
  width: 72px; height: 72px; border-radius: 50%;
  border: 3px solid rgba(12, 94, 168, 0.16);
  border-top-color: var(--cyan);
  animation: spin 1s linear infinite;
}
body.loaded .loader { opacity: 0; visibility: hidden; }
@keyframes spin { to { transform: rotate(360deg); } }

.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(8, 43, 92, 0.08);
}
.nav {
  width: min(1240px, calc(100% - 32px)); height: 86px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 900; color: var(--navy); }
.brand__icon {
  width: 42px; height: 42px; display: grid; place-items: center;
  color: var(--white); background: linear-gradient(135deg, var(--navy), var(--cyan));
  border-radius: 8px; box-shadow: 0 16px 34px rgba(49, 197, 244, 0.25);
}
.brand__text { display: grid; line-height: 1.05; }
.brand__text span { color: var(--ocean); font-size: 0.78rem; }
.nav-menu { display: flex; align-items: center; gap: 22px; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.nav-menu a:not(.btn) { position: relative; }
.nav-menu a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -8px; width: 0; height: 2px;
  background: var(--cyan); transition: width 0.25s ease;
}
.nav-menu a:hover::after { width: 100%; }
.nav-toggle { display: none; width: 42px; height: 42px; border: 0; background: var(--white); border-radius: 8px; box-shadow: var(--shadow); }
.nav-toggle span { display: block; width: 19px; height: 2px; margin: 4px auto; background: var(--navy); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px;
  color: var(--white); border: 1px solid rgba(49, 197, 244, 0.36);
  background: linear-gradient(135deg, var(--ocean), var(--cyan));
  border-radius: 8px; font-weight: 800; box-shadow: 0 18px 44px rgba(12, 94, 168, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(12, 94, 168, 0.28); }
.btn--small { min-height: 42px; padding: 0 16px; font-size: 0.84rem; }
.btn--ghost { color: var(--navy); background: rgba(255, 255, 255, 0.68); backdrop-filter: blur(14px); border-color: rgba(255,255,255,0.7); }

.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center; overflow: hidden;
  padding: 132px 0 80px; background: #dff6ff;
}
.hero__media {
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.62) 42%, rgba(255,255,255,0.2) 100%),
    linear-gradient(180deg, rgba(255,255,255,0.05), rgba(245,248,252,0.84)),
    url("https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=2200&q=85") center/cover;
  transform: scale(1.04);
}
.hero__content { position: relative; z-index: 3; }
.hero__lead { max-width: 650px; font-size: clamp(1.05rem, 2vw, 1.35rem); margin-bottom: 34px; color: #32465d; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.particles { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.route { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.route svg { width: 100%; height: 100%; }
.route__base, .route__active {
  fill: none; stroke-linecap: round; stroke-width: 4;
}
.route__base { stroke: rgba(8, 43, 92, 0.12); }
.route__active { stroke: var(--cyan); stroke-dasharray: 24 20; filter: drop-shadow(0 0 12px rgba(49,197,244,0.8)); animation: dash 8s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -220; } }
.hero__wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 130px; z-index: 4;
  background: radial-gradient(130% 90% at 50% 0%, rgba(255,255,255,0) 38%, var(--white) 39%);
}
.glass {
  background: var(--glass); border: 1px solid rgba(255,255,255,0.62);
  backdrop-filter: blur(18px); box-shadow: var(--shadow); border-radius: var(--radius);
}
.hero-card {
  position: absolute; z-index: 5; padding: 18px 20px; min-width: 190px;
  animation: float 5s ease-in-out infinite;
}
.hero-card span, .hero-card small { display: block; color: var(--muted); font-weight: 700; }
.hero-card strong { color: var(--navy); font-size: 2.5rem; line-height: 1; }
.hero-card--left { left: 7%; bottom: 16%; }
.hero-card--right { right: 8%; top: 27%; animation-delay: -1.5s; }
@keyframes float { 50% { transform: translateY(-12px); } }
.ship-marker {
  position: absolute; right: 24%; top: 45%; z-index: 3; width: 70px; height: 24px;
  background: linear-gradient(90deg, var(--navy), var(--ocean)); border-radius: 60% 14% 14% 60%;
  box-shadow: 0 16px 40px rgba(8, 43, 92, 0.22); animation: shipMove 8s ease-in-out infinite;
}
.ship-marker::before { content: ""; position: absolute; width: 28px; height: 12px; left: 22px; top: -9px; background: var(--white); border-radius: 4px 4px 0 0; }
@keyframes shipMove { 50% { transform: translate(22px, -12px) rotate(-2deg); } }

.split { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 56px; align-items: center; }
.section-copy p:not(.eyebrow) { font-size: 1.08rem; max-width: 650px; }
.overview-panel {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; overflow: hidden; background: rgba(8,43,92,0.06);
}
.stat { padding: 36px; background: rgba(255,255,255,0.76); }
.stat strong { display: block; color: var(--navy); font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1; }
.stat strong::after { content: "+"; color: var(--cyan); font-size: 0.6em; }
.stat span { color: var(--muted); font-weight: 800; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 0; }
.service-grid, .why-grid, .industry-grid, .project-grid, .news-grid {
  display: grid; gap: 22px;
}
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service-card, .mini-card, .news-card {
  position: relative; padding: 30px; border-radius: var(--radius); background: var(--white);
  border: 1px solid var(--line); box-shadow: 0 16px 48px rgba(8,43,92,0.07);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  overflow: hidden;
}
.service-card::before, .mini-card::before, .news-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 4px;
  background: linear-gradient(90deg, var(--ocean), var(--cyan)); transform: scaleX(0); transform-origin: left; transition: transform 0.28s ease;
}
.service-card:hover, .mini-card:hover, .news-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(49,197,244,0.35); }
.service-card:hover::before, .mini-card:hover::before, .news-card:hover::before { transform: scaleX(1); }
.icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;

  color: var(--ocean);

  background: linear-gradient(
      135deg,
      rgba(49,197,244,.15),
      rgba(255,255,255,.95)
  );

  border: 1px solid rgba(49,197,244,.25);

  border-radius: 18px;

  font-size: 28px;

  box-shadow:
      0 10px 30px rgba(12,94,168,.12);

  transition: all .3s ease;
}

.service-card:hover .icon{
  transform: translateY(-4px) scale(1.08);

  color: var(--cyan);

  box-shadow:
      0 15px 35px rgba(49,197,244,.25);
}

.service-card ul { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 22px 0 0; list-style: none; }
.service-card li { padding: 7px 10px; background: var(--light); color: var(--ocean); border-radius: 999px; font-size: 0.78rem; font-weight: 800; }

.service-card{
    border-radius:20px;
    transition:all .35s ease;
}

.service-card:hover{
    transform:translateY(-10px);
}

.service-card h3{
    font-size:1.4rem;
    margin-bottom:15px;
    font-weight:700;
}

.service-card p{
    min-height:90px;
    line-height:1.7;
}


.journey { background: linear-gradient(180deg, #eefaff, var(--white)); }
.journey-track { position: relative; display: grid; grid-template-columns: repeat(7, 1fr); gap: 18px; padding-top: 72px; }
.journey-line { position: absolute; left: 0; right: 0; top: 36px; height: 3px; background: rgba(8,43,92,0.1); }
.journey-line span { display: block; width: 0; height: 100%; background: linear-gradient(90deg, var(--ocean), var(--cyan)); box-shadow: 0 0 18px rgba(49,197,244,0.65); }
.journey-step {
  position: relative; padding: 24px; min-height: 220px; background: rgba(255,255,255,0.86);
  border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 16px 42px rgba(8,43,92,0.06);
}
.journey-step::before {
  content: ""; position: absolute; left: 24px; top: -48px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--white); border: 4px solid var(--cyan); box-shadow: 0 0 0 9px rgba(49,197,244,0.14);
}
.journey-step b { color: var(--cyan); font-size: 0.82rem; }

.why-grid { grid-template-columns: repeat(3, 1fr); }
.mini-card span { color: var(--cyan); font-weight: 900; }
.industry-grid { grid-template-columns: repeat(4, 1fr); }
.industry-card {
  min-height: 132px; display: flex; align-items: end; padding: 22px; border-radius: var(--radius);
  color: var(--white); font-weight: 900; font-size: 1.1rem;
  background: linear-gradient(135deg, rgba(8,43,92,0.9), rgba(12,94,168,0.7)), url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=700&q=80") center/cover;
  transition: transform 0.28s ease, filter 0.28s ease;
}
.industry-card:hover { transform: translateY(-7px); filter: saturate(1.18); }

.network { background: linear-gradient(180deg, var(--white), #eaf8ff); }
.map-panel { padding: 30px; }
.world-map {
  position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius);
  background:
    radial-gradient(circle at 28% 45%, rgba(49,197,244,0.18), transparent 7%),
    radial-gradient(circle at 51% 48%, rgba(49,197,244,0.18), transparent 6%),
    radial-gradient(circle at 66% 50%, rgba(49,197,244,0.18), transparent 8%),
    linear-gradient(135deg, rgba(8,43,92,0.95), rgba(12,94,168,0.84)),
    url("https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&w=1800&q=80") center/cover;
}
.world-map::before, .world-map::after {
  content: ""; position: absolute; inset: 16% 12%;
  border: 1px solid rgba(49,197,244,0.28); border-left: 0; border-bottom: 0;
  border-radius: 50%; transform: rotate(-12deg); animation: glowLine 4s ease-in-out infinite;
}
.world-map::after { inset: 28% 18%; transform: rotate(16deg); animation-delay: -1.4s; }
@keyframes glowLine { 50% { box-shadow: 0 0 28px rgba(49,197,244,0.46); opacity: 0.55; } }
.node {
  position: absolute; padding: 8px 12px; color: var(--white); background: rgba(255,255,255,0.16);
  border: 1px solid rgba(255,255,255,0.26); border-radius: 999px; backdrop-filter: blur(10px);
  font-size: 0.78rem; font-weight: 900;
}
.node::before { content: ""; width: 10px; height: 10px; display: inline-block; margin-right: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 18px var(--cyan); }
.node--eu { left: 48%; top: 32%; }
.node--me { left: 56%; top: 48%; }
.node--as { left: 72%; top: 43%; }
.node--af { left: 50%; top: 62%; }
.node--na { left: 20%; top: 40%; }
.network-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 18px; }
.network-stats strong { padding: 24px; background: var(--white); border-radius: var(--radius); color: var(--navy); font-size: 2rem; box-shadow: 0 14px 40px rgba(8,43,92,0.08); }
.network-stats span { display: block; color: var(--muted); font-size: 0.9rem; }

.project-grid { grid-template-columns: repeat(3, 1fr); }
.project-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: 0 18px 48px rgba(8,43,92,0.08); transition: transform 0.28s ease; }
.project-card:hover { transform: translateY(-8px); }
.project-card img { width: 100%; height: 260px; object-fit: cover; }
.project-card div { padding: 24px; }
.project-card span, .news-card span { color: var(--ocean); font-size: 0.78rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0; }
.project-card small { color: var(--navy); font-weight: 900; }

.testimonial-slider { position: relative; min-height: 420px; padding: 36px; }
.testimonial { display: none; }
.testimonial.active { display: block; animation: fadeIn 0.45s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(12px); } }
.testimonial img { width: 74px; height: 74px; object-fit: cover; border-radius: 50%; margin-bottom: 28px; }
.testimonial p { font-size: 1.28rem; color: var(--ink); }
.testimonial strong, .testimonial span { display: block; }
.testimonial span { color: var(--muted); }
.slider-dots { position: absolute; bottom: 28px; display: flex; gap: 8px; }
.slider-dots button { width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%; background: rgba(8,43,92,0.2); }
.slider-dots button.active { width: 28px; border-radius: 999px; background: var(--cyan); }

.news-grid { grid-template-columns: repeat(3, 1fr); }
.cta { position: relative; overflow: hidden; padding: 120px 0; background: linear-gradient(135deg, var(--navy), var(--ocean)); text-align: center; }
.cta h2, .cta p, .cta .eyebrow { color: var(--white); }
.cta p { max-width: 650px; margin: 0 auto 28px; color: rgba(255,255,255,0.8); }
.cta__content { position: relative; z-index: 2; }
.cta .btn--ghost { color: var(--white); background: rgba(255,255,255,0.12); }

.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 46px; align-items: start; }
.info-list { display: grid; gap: 12px; margin: 28px 0; }
.info-list p { padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.info-list strong { display: block; color: var(--navy); }
.map-placeholder {
  min-height: 250px; display: grid; place-items: center; border-radius: var(--radius);
  background: linear-gradient(135deg, #dff6ff, #fff), repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(8,43,92,0.04) 12px, rgba(8,43,92,0.04) 24px);
  border: 1px solid var(--line); color: var(--ocean); font-weight: 900;
}
.contact-form { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 30px; }
.contact-form label { display: grid; gap: 8px; color: var(--navy); font-weight: 800; }
.contact-form label:nth-child(5), .contact-form label:nth-child(6), .contact-form .btn { grid-column: 1 / -1; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; border: 1px solid var(--line); border-radius: 8px; padding: 14px 15px;
  background: rgba(255,255,255,0.8); color: var(--ink); outline: none;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(49,197,244,0.12); }

.footer { background: #061f42; color: var(--white); padding: 70px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(5, 1fr); gap: 28px; }
.footer h3 { color: var(--white); font-size: 1rem; }
.footer p, .footer a, .footer-bottom { color: rgba(255,255,255,0.7); }
.footer a { display: block; margin: 8px 0; }
.brand--footer { color: var(--white); margin-bottom: 16px; }
.social { display: flex; gap: 8px; }
.social a { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,0.1); }
.footer-bottom { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.9rem; }

.back-top {
  position: fixed; right: 22px; bottom: 22px; z-index: 900; width: 46px; height: 46px;
  border: 0; border-radius: 50%; color: var(--white); background: var(--navy);
  box-shadow: var(--shadow); cursor: pointer; opacity: 0; transform: translateY(12px); pointer-events: none; transition: 0.25s ease;
}
.back-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}

@media (max-width: 1080px) {
  .nav-menu { position: fixed; inset: 82px 16px auto; display: none; flex-direction: column; align-items: stretch; padding: 22px; background: rgba(255,255,255,0.94); backdrop-filter: blur(18px); border-radius: 8px; box-shadow: var(--shadow); }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .service-grid, .why-grid, .project-grid, .news-grid { grid-template-columns: repeat(2, 1fr); }
  .journey-track { grid-template-columns: repeat(2, 1fr); }
  .journey-line { display: none; }
  .journey-step::before { top: 18px; right: 18px; left: auto; }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 78px 0; }
  .hero { padding-top: 118px; align-items: flex-start; }
  .hero-card, .ship-marker { display: none; }
  .hero__actions, .cta__content div { display: grid; }
  .split, .contact-grid, .overview-panel, .network-stats, .contact-form { grid-template-columns: 1fr; }
  .section-heading { display: block; }
  .service-grid, .why-grid, .industry-grid, .project-grid, .news-grid, .journey-track { grid-template-columns: 1fr; }
  .world-map { min-height: 360px; }
  .node { font-size: 0; padding: 9px; }
  .node::before { margin-right: 0; }
  .project-card img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .nav { height: 74px; }
  .brand__text { display: none; }
  .btn { width: 100%; }
  .stat, .service-card, .mini-card, .news-card, .contact-form { padding: 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
.google-map{
    overflow:hidden;
    border-radius:16px;
    box-shadow:0 10px 40px rgba(0,0,0,.15);
}

.brand img{
    height:85px;
    width:auto;
    transition:all .3s ease;
}

@media (max-width:768px){

    .brand img{
        height:60px;
    }

}
}