:root{
  --ink:#035d8d;
  --teal:#035d8d;
  --teal-2:#47a09d;
  --teal-glow: rgba(3, 93, 141, .15);
  --white:#ffffff;
  --pill:#e9ecef;
  --shadow: 0 10px 25px rgba(0,0,0,.15);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.12);
  --radius: 999px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{margin:0;padding:0;font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#111;overflow-x:hidden}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

/* ===== PRELOADER ===== */
.preloader{
  position:fixed;inset:0;z-index:99999;
  background:linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
  display:flex;align-items:center;justify-content:center;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader--hidden{
  opacity:0;visibility:hidden;pointer-events:none;
}
.preloader__inner{text-align:center}
.preloader__logo img{width:180px;margin:0 auto 32px;animation:pulse 1.5s ease-in-out infinite}
@keyframes pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.7;transform:scale(1.05)}}
.preloader__bar{
  width:200px;height:4px;background:rgba(255,255,255,.2);border-radius:4px;margin:0 auto 16px;overflow:hidden;
}
.preloader__fill{
  width:0;height:100%;background:#fff;border-radius:4px;
  animation:loadBar 1.8s ease-in-out forwards;
}
@keyframes loadBar{0%{width:0}100%{width:100%}}
.preloader__text{
  color:rgba(255,255,255,.7);font-size:12px;letter-spacing:.15em;font-weight:500;text-transform:uppercase;
}

/* ===== SCROLL TO TOP ===== */
.scrollTop{
  position:fixed;bottom:28px;right:28px;z-index:999;
  width:48px;height:48px;border:none;border-radius:50%;
  background:var(--teal);color:#fff;cursor:pointer;
  box-shadow:0 8px 24px rgba(15,111,131,.35);
  opacity:0;transform:translateY(20px);
  transition:all .3s ease;
  display:flex;align-items:center;justify-content:center;
}
.scrollTop--visible{opacity:1;transform:translateY(0)}
.scrollTop:hover{background:var(--ink);transform:translateY(-3px);box-shadow:0 12px 32px rgba(15,111,131,.45)}

/* ===== SCROLL REVEAL ===== */
[data-reveal]{
  opacity:0;transform:translateY(40px);
  transition: opacity .7s cubic-bezier(.25,.46,.45,.94), transform .7s cubic-bezier(.25,.46,.45,.94);
}
[data-reveal].revealed{
  opacity:1;transform:translateY(0);
}

/* HERO */
.hero{
  position:relative;
  height: 100vh;
  min-height: 700px;
  max-height: 1000px;
  overflow:hidden;
  background:#000;
}
.hero__slider{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
}
.hero__bg{
  position:absolute; inset:0;
  width:100%; height:100%;
  object-fit:cover;
  filter: contrast(1.05) brightness(.88) saturate(1.1);
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity;
}
.hero__bg--active{
  opacity: 1;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(11,46,58,.72) 0%, rgba(15,111,131,.35) 40%, rgba(0,0,0,.1) 100%);
  z-index: 1;
}

/* Hero Navigation Arrows */
.hero__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border: 2px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
  opacity: 0;
}
.hero:hover .hero__nav{
  opacity: 1;
}
.hero__nav:hover{
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.3);
}
.hero__nav--prev{
  left: 28px;
}
.hero__nav--next{
  right: 28px;
}

.hero__top{
  position:relative;
  z-index:2;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 24px;
  transition: all .4s ease;
}
.hero__top--scrolled{
  position:fixed;top:0;left:0;right:0;
  padding:8px 24px;
  background:rgba(3,93,141,.95);
  backdrop-filter:blur(20px);
  -webkit-backdrop-filter:blur(20px);
  box-shadow:0 4px 30px rgba(0,0,0,.2);
  z-index:100;
}
.hero__top--scrolled .brand__logo{width:100px}
.hero__top--scrolled .navPill{
  background:rgba(255,255,255,.1);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.2);
}
.hero__top--scrolled .navPill__link{color:rgba(255,255,255,.95)}
.hero__top--scrolled .langBtn{
  background:rgba(255,255,255,.12);
  box-shadow:none;
  border:1px solid rgba(255,255,255,.2);
}
.hero__top--scrolled .langBtn__label{color:#fff}

.brand{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-left: 0;
}
.brand__logo{width:160px;height:auto}
.brand__logo-text{
  font-size:32px !important;
  font-weight:900 !important;
  color:#fff !important;
  letter-spacing:0.02em !important;
  display:none !important; /* Hidden by default, shown via onerror */
}
.brand__tagline{
  font-size:10px;
  letter-spacing:.12em;
  color:rgba(255,255,255,.85);
}

.navPill{
  display:flex;
  gap:4px;
  padding:6px 8px;
  background: #035d8d;
  border:1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  box-shadow: 0 4px 16px rgba(3,93,141,.3);
  align-self:center;
}
.navPill__link{
  font-size:13px;
  font-weight: 500;
  color:rgba(255,255,255,.9);
  padding:6px 14px;
  border-radius:var(--radius);
  transition:all .3s ease;
}
.navPill__link:hover{
  background:rgba(255,255,255,.2);
  color:#fff;
  transform:translateY(-1px);
}

.langBtn{
  border:none;
  background: rgba(233,236,239,.95);
  border-radius: var(--radius);
  padding: 8px 14px;
  display:flex;
  align-items:center;
  gap:8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.1);
  cursor:pointer;
  transition: all 0.3s ease;
}
.langBtn:hover{
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0,0,0,.16);
}
.langBtn__dot{
  width:10px;height:10px;border-radius:999px;background:#cfd4da;
  display:inline-block;
}
.langBtn__flag{font-size:24px;line-height:1;display:flex;align-items:center}
.langBtn__flag svg{width:28px;height:20px;border-radius:3px;box-shadow:0 1px 3px rgba(0,0,0,.15)}
.langBtn__label{font-size:13px;font-weight:700;color:#333}

.hero__content{
  position:relative;
  z-index:2;
  max-width: 720px;
  padding: 100px 32px 24px 12px;
}
.hero__badge{
  display:inline-block;
  padding:6px 18px;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.25);
  border-radius:var(--radius);
  color:rgba(255,255,255,.9);
  font-size:12px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
  margin-bottom:20px;
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
}
.hero__title{
  margin: 0 0 24px;
  color: #fff;
  font-size: 88px;
  letter-spacing:.03em;
  font-style: italic;
  font-weight: 900;
  line-height:1;
  text-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.hero__text{
  margin:0;
  color: rgba(255,255,255,.92);
  max-width: 600px;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  font-style: italic;
  text-align: justify;
}

.hero__controls{
  margin-top: 80px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  width: 100%;
  max-width: 520px;
  color:#fff;
}
.hero__chev{font-size:20px;opacity:.9}
.hero__dots{display:flex;gap:8px;align-items:center}
.dot{
  width:8px;
  height:8px;
  border-radius:999px;
  background:rgba(255,255,255,.35);
  border:2px solid rgba(255,255,255,.4);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
}
.dot:hover{
  background:rgba(255,255,255,.6);
  transform: scale(1.2);
}
.dot--active{
  background:#fff;
  border-color:#fff;
  width: 28px;
  height: 8px;
  border-radius:4px;
  box-shadow:0 0 12px rgba(255,255,255,.4);
}

/* SOLUTIONS */
.solutions{
  padding: 0 0 0 0;
  background: #fff;
}
.solutions__logoBlock{
  text-align:center;
  padding: 24px 16px 36px;
  display:flex;
  justify-content:center;
  align-items:center;
}
.solutions__bigLogo{
  font-size: 56px;
  font-weight: 900;
  letter-spacing:.02em;
  color: var(--teal);
}
.solutions__logoImg{
  width: 320px;
  height: auto;
}
.solutions__sub{
  display:none;
}

.tabs{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  display:flex;
  justify-content:center;
  gap: 8px;
  padding: 14px 20px;
}
.tab{
  border:none;
  background:transparent;
  color:rgba(255,255,255,.75);
  font-weight:600;
  font-size: 14px;
  cursor:pointer;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(.25,.46,.45,.94);
  position: relative;
  letter-spacing:.02em;
}
.tab:hover{
  color: #fff;
  background: rgba(255,255,255,.12);
}
.tab--active{
  color:#fff;
  background: rgba(255,255,255,.18);
  box-shadow:0 4px 16px rgba(0,0,0,.15);
}
.tab--active::after{
  content: '';
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  box-shadow:0 0 8px rgba(255,255,255,.4);
}

.solutions__panel{
  position:relative;
  background: linear-gradient(180deg, rgba(248,249,250,.98) 0%, rgba(240,245,247,.95) 100%);
  padding: 56px 0 80px;
}

.cards{
  position:relative;
  z-index:2;
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items:start;
  justify-items:center;
}
.card{
  width: 100%;
  max-width: 340px;
  cursor: pointer;
  transition: all .4s cubic-bezier(.25,.46,.45,.94);
  animation: fadeInUp .6s cubic-bezier(.25,.46,.45,.94) forwards;
  opacity: 0;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 30px rgba(0,0,0,.08);
}
.card:nth-child(1){ animation-delay: 0.1s; }
.card:nth-child(2){ animation-delay: 0.25s; }
.card:nth-child(3){ animation-delay: 0.4s; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
.card:hover{
  transform: translateY(-12px);
  box-shadow:0 24px 56px rgba(15,111,131,.18);
}
.card__imgWrap{
  background:#fff;
  padding: 28px;
  height: 280px;
  display:flex;
  align-items:center;
  justify-content:center;
  transition: all .4s ease;
  position:relative;
  overflow:hidden;
}
.card__imgWrap::after{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(15,111,131,.04) 0%,transparent 60%);
  opacity:0;transition:opacity .4s ease;
}
.card:hover .card__imgWrap::after{opacity:1}
.card:hover .card__imgWrap{background:#f8fafb}
.card__imgWrap img{
  max-height: 220px; max-width:90%; object-fit: contain;
  transition:transform .4s cubic-bezier(.25,.46,.45,.94);
}
.card:hover .card__imgWrap img{transform:scale(1.05)}
.card__cap{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color:#fff;
  font-size: 13px;
  font-weight:600;
  padding: 14px 16px;
  text-align:center;
  letter-spacing:.02em;
  transition: all .3s ease;
}
.card:hover .card__cap{
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
  letter-spacing:.06em;
}

.quoteBtn{
  background:#fff;
  color: var(--teal);
  border: 2px solid var(--teal);
  border-radius: 12px;
  padding: 16px 40px;
  font-weight: 700;
  letter-spacing:.04em;
  box-shadow: 0 8px 24px rgba(15,111,131,.15);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
  font-family: inherit;
  font-size: 15px;
  text-transform:uppercase;
}
.quoteBtn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15,111,131,.25);
  background: var(--teal);
  color: #fff;
}

.brochureBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  letter-spacing:.04em;
  box-shadow: 0 8px 24px rgba(15,111,131,.25);
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
  font-size: 14px;
  border: none;
  cursor: pointer;
  text-transform:uppercase;
}
.brochureBtn:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(15, 111, 131, .4);
  background: linear-gradient(135deg, var(--ink) 0%, var(--teal) 100%);
}
.brochureBtn span{
  font-size: 16px;
}

.solutions__actions{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* STATS */
.stats{
  background: linear-gradient(135deg, #035d8d 0%, #47a09d 100%);
  color:#fff;
  padding: 72px 0;
  position:relative;
  overflow:hidden;
}
.stats::before{
  content:'';position:absolute;top:-50%;right:-20%;width:600px;height:600px;
  background:radial-gradient(circle,rgba(255,255,255,.06) 0%,transparent 70%);
  border-radius:50%;pointer-events:none;
}
.stats__inner{
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align:center;
}
.stat{
  padding:28px 20px;
  border-radius:16px;
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.12);
  transition:all .4s ease;
}
.stat:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.2);
}
.stat__num{font-size: 48px;font-weight:900;letter-spacing:-.02em;line-height:1}
.stat__lbl{margin-top:10px;font-size:16px;font-weight:600;line-height:1.3;opacity:.85}

/* PARTNERS */
.partners{
  padding: 72px 0 60px;
  background: linear-gradient(180deg, #f8fbfc 0%, #fff 100%);
  position:relative;
}
.sectionTitle{
  text-align:center;
  margin: 0 0 44px;
  color: var(--ink);
  font-size: 38px;
  font-weight: 900;
  letter-spacing:-.01em;
  position:relative;
}
.sectionTitle::after{
  content:'';display:block;width:60px;height:4px;
  background:linear-gradient(90deg, var(--teal), var(--teal-2));
  margin:14px auto 0;border-radius:2px;
}
.partnerCarousel{
  position: relative;
  width: 100%;
}
.partnerNav{
  display: none; /* Hidden on desktop */
}
.partnerDots{
  display: none; /* Hidden on desktop */
}
.partnerGrid{
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-items:center;
}
.partnerTile{
  width: 100%;
  max-width:200px;
  height: 120px;
  background:#fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  border:1px solid rgba(0,0,0,.04);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 20px;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
}
.partnerTile:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(15,111,131,.12);
  border-color:rgba(15,111,131,.15);
}
.partnerTile img{max-height: 70px; object-fit:contain; filter: grayscale(.3); transition: filter .4s}
.partnerTile:hover img{filter: grayscale(0)}
.partner-placeholder{
  font-weight: 800;
  color: var(--teal);
  font-size: 15px;
  letter-spacing:.02em;
}
/* Staggered reveal for partner tiles */
.partnerTile[data-reveal]:nth-child(1){transition-delay:.05s}
.partnerTile[data-reveal]:nth-child(2){transition-delay:.1s}
.partnerTile[data-reveal]:nth-child(3){transition-delay:.15s}
.partnerTile[data-reveal]:nth-child(4){transition-delay:.2s}
.partnerTile[data-reveal]:nth-child(5){transition-delay:.25s}
.partnerTile[data-reveal]:nth-child(6){transition-delay:.3s}
.partnerTile[data-reveal]:nth-child(7){transition-delay:.35s}
.partnerTile[data-reveal]:nth-child(8){transition-delay:.4s}
.partnerTile[data-reveal]:nth-child(9){transition-delay:.45s}
.partnerTile[data-reveal]:nth-child(10){transition-delay:.5s}
/* Staggered reveal for stat cards */
.stat[data-reveal]:nth-child(1){transition-delay:.1s}
.stat[data-reveal]:nth-child(2){transition-delay:.25s}
.stat[data-reveal]:nth-child(3){transition-delay:.4s}

/* GET A QUOTE SECTION */
.quoteSection{
  padding: 32px 0;
  background: linear-gradient(135deg, #f8fbfc 0%, #fff 50%, #f8fbfc 100%);
  position: relative;
  overflow: hidden;
}
.quoteSection::before{
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(3,93,141,.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.quoteSection__inner{
  width: min(760px, calc(100% - 56px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.quoteSection__header{
  text-align: center;
  margin-bottom: 20px;
}
.quoteSection__header h2{
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -.01em;
  position: relative;
  display: inline-block;
}
.quoteSection__header h2::after{
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  margin: 8px auto 0;
  border-radius: 2px;
}
.quoteSection__header p{
  margin: 0;
  font-size: 14px;
  color: #6c757d;
  font-weight: 500;
}
.quoteForm{
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
  border: 1px solid rgba(3,93,141,.08);
}
.quoteForm .form__group label{
  color: var(--ink);
}
.quoteForm .form__group{
  margin-bottom: 12px;
}
.quoteForm .form__row{
  margin-bottom: 12px;
  gap: 16px;
}
.quoteForm .form__group label{
  margin-bottom: 6px;
}
.quoteForm input,
.quoteForm select,
.quoteForm textarea{
  padding: 10px 14px;
  font-size: 14px;
}
.quoteForm textarea{
  min-height: 80px;
}
.quoteForm .btn--large{
  padding: 14px 48px;
  font-size: 16px;
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* NEWS */
.news{
  background: linear-gradient(135deg, #035d8d 0%, #47a09d 100%);
  color:#fff;
  padding: 72px 0 72px;
  position:relative;
  overflow:hidden;
}
.news::before{
  content:'';position:absolute;bottom:-30%;left:-10%;width:500px;height:500px;
  background:radial-gradient(circle,rgba(255,255,255,.04) 0%,transparent 70%);
  border-radius:50%;pointer-events:none;
}
.news__title{
  margin:0 0 48px;
  text-align:center;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -.01em;
  position:relative;
}
.news__title::after{
  content:'';display:block;width:60px;height:4px;
  background:rgba(255,255,255,.5);
  margin:14px auto 0;border-radius:2px;
}
.news__inner{
  width: min(var(--max), calc(100% - 56px));
  margin: 0 auto;
  display:grid;
  grid-template-columns: 440px 1fr;
  gap: 48px;
  align-items:start;
}

/* Timeline */
.news__timeline{
  position: relative;
  max-height: 600px;
  overflow-y: auto;
  padding: 12px 12px 12px 16px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.3) transparent;
  border-radius: 8px;
  background: rgba(255,255,255,.05);
}
.news__timeline::-webkit-scrollbar{
  width: 6px;
}
.news__timeline::-webkit-scrollbar-track{
  background: transparent;
}
.news__timeline::-webkit-scrollbar-thumb{
  background: rgba(255,255,255,.3);
  border-radius: 3px;
}

.timeline-event{
  position: relative;
  margin-bottom: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-left: 32px;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}
.timeline-event::before{
  content: '';
  position: absolute;
  left: 0;
  top: 60px;
  bottom: -28px;
  width: 2px;
  background: rgba(255,255,255,.25);
}
.timeline-event:last-child::before{
  display: none;
}

.timeline-event__image{
  position: relative;
  width: 120px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.25);
  transition: all 0.3s ease;
  z-index: 2;
}
.timeline-event__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.timeline-event:hover .timeline-event__image{
  transform: scale(1.05);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.timeline-event--active .timeline-event__image{
  box-shadow: 0 0 0 3px #fff, 0 10px 24px rgba(0,0,0,.4);
}

.timeline-event__content{
  position: relative;
  display: flex;
  align-items: start;
  gap: 12px;
  flex: 1;
}

.timeline-marker{
  position: absolute;
  left: -120px;
  top: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.timeline-dot{
  width: 16px;
  height: 16px;
  background: rgba(255,255,255,.55);
  border: 3px solid var(--teal);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.timeline-event:hover .timeline-dot,
.timeline-event--active .timeline-dot{
  background: #fff;
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(255,255,255,.4);
}
.timeline-badge{
  position: relative;
  left: 0;
  top: 0;
  background: #fff;
  color: var(--teal);
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  line-height: 1;
}

.timeline-content{
  opacity: 0.85;
  transition: opacity 0.3s ease;
  flex: 1;
}
.timeline-event:hover .timeline-content,
.timeline-event--active .timeline-content{
  opacity: 1;
}
.timeline-title{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.timeline-date{
  margin: 0;
  font-size: 11px;
  opacity: 0.85;
  font-style: italic;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.timeline-event--future{
  opacity: 1;
}
.timeline-event--future .timeline-content{
  opacity: 1;
}
.timeline-event--future .timeline-dot{
  background: #fff;
  box-shadow: 0 0 8px rgba(255,255,255,.3);
  border-color: #fff;
}
.timeline-event--future .timeline-event__image{
  box-shadow: 0 8px 20px rgba(255,255,255,.15);
}

/* Detail Panel */
.news__detail{
  background: rgba(255,255,255,.15);
  border-radius: 12px;
  padding: 32px;
  min-height: 320px;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  border: 1px solid rgba(255,255,255,.1);
}
.news__detail-content h3{
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.2;
}
.news__date{
  margin: 0 0 18px;
  font-size: 13px;
  opacity: 0.8;
  font-style: italic;
  font-weight: 600;
}
.news__detail-content p:last-child{
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  opacity: 0.92;
}

/* FOOTER */
.footer{
  background:#fff;
  padding: 0;
}
.footer__divider{
  height:4px;
  background:linear-gradient(90deg, var(--teal), var(--teal-2), var(--teal));
}
.footer__inner{
  padding: 48px 40px 0;
  width: min(var(--max), 100%);
  margin: 0 auto;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap: 14px;
}
.footer__brand img{width: 200px}
.footer__logo-text{
  font-size:24px !important;
  font-weight:900 !important;
  color:#0f6f83 !important;
  display:none !important;
}
.footer__cols{
  margin-top: 32px;
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 32px;
  align-items:start;
}
.footerCol h3{
  margin:0 0 14px;
  font-size: 14px;
  font-weight:800;
  color: var(--ink);
  text-transform:uppercase;
  letter-spacing:.06em;
}
.footerCol p, .footerCol li, .footerCol a{
  font-size: 13px;
  color:#555;
  line-height: 1.65;
}
.footerCol a{transition:color .3s}
.footerCol a:hover{color:var(--teal)}
.footerCol ul{margin:0;padding-left:16px}
.footer__mailLabel{margin-bottom:6px;font-weight:700;color:var(--ink)}
.footer__emails{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-top:4px;
}
.footer__emails a{
  font-size:13px;
  color:var(--teal);
  font-weight:600;
  transition:color .3s;
  display:inline-block;
}
.footer__emails a:hover{color:var(--ink)}
.footer__bottom{
  margin-top:32px;
  padding:20px 40px;
  border-top:1px solid #e9ecef;
  text-align:center;
  font-size:12px;
  color:#888;
  letter-spacing:.02em;
}

/* Footer Download Link */
.footer__download{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  text-decoration: none;
  transition: all 0.3s ease;
}
.footer__download:hover{
  color: var(--ink);
  text-decoration: underline;
}

/* Footer Social / LinkedIn */
.footer__social{
  margin-top: 16px;
}
.footer__linkedin{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0077B5;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s ease;
}
.footer__linkedin svg{
  width: 28px;
  height: 28px;
}
.footer__linkedin:hover{
  color: #005885;
  transform: translateY(-2px);
}

/* Footer Brand Tagline */
.brand__tagline{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  color: #4b6b73;
}

/* PRODUCT MODAL */
.productModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.productModal--open{
  opacity: 1;
  visibility: visible;
}
.productModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(11, 46, 58, 0.92);
  backdrop-filter: blur(6px);
}
.productModal__content{
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 16px;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.productModal--open .productModal__content{
  transform: scale(1);
}
.productModal__close{
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: none;
  background: var(--teal);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.productModal__close:hover{
  background: var(--ink);
  transform: rotate(90deg);
}
.productModal__body{
  padding: 44px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 44px;
  align-items: start;
}
.productModal__image{
  background: #f8f9fa;
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}
.productModal__image img{
  max-width: 100%;
  max-height: 320px;
  object-fit: contain;
}
.productModal__specs h3{
  margin: 0 0 24px;
  font-size: 32px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: .01em;
}
.specs-list{
  margin-bottom: 32px;
}
.spec-item{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid #e9ecef;
}
.spec-item:last-child{
  border-bottom: none;
}
.spec-label{
  font-size: 14px;
  font-weight: 600;
  color: #495057;
}
.spec-value{
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
}
.pdfBtn{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: #fff;
  padding: 14px 28px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(15, 111, 131, .3);
}
.pdfBtn:hover{
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 111, 131, .4);
}
.pdfBtn span{
  font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 1024px){
  .navPill{gap:12px}
  .tabs{gap:40px}
  .cards{grid-template-columns: repeat(2, 1fr)}
  .partnerGrid{grid-template-columns: repeat(3, 1fr)}
  .quoteSection{padding: 60px 0}
  .quoteSection__header h2{font-size: 36px}
  .quoteForm{padding: 36px 28px}
  .news__inner{grid-template-columns: 1fr; gap: 32px}
  .news__timeline{max-height: 400px; padding-left: 32px}
  .footer__cols{grid-template-columns: 1fr 1fr}
  .solutions__actions{gap: 16px; margin-top: 24px}
  .brochureBtn{font-size: 12px; padding: 10px 20px}
  .hero__title{font-size:56px}
  .stat__num{font-size:40px}
}

@media (max-width: 768px){
  .hero__top{
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    padding: 10px 16px;
  }
  .hero__top .brand{order: 1; flex: 0 0 auto}
  .hero__top .brand__logo{width: 120px}
  .hero__top .navPill{
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    box-sizing: border-box;
  }
  .hero__top .navPill::-webkit-scrollbar{display: none}
  .hero__top .langBtn{order: 2; margin-left: auto; flex-shrink: 0}
  .navPill{gap:4px; padding: 6px 10px}
  .navPill__link{font-size:11px; padding: 5px 10px; white-space: nowrap; flex-shrink: 0}
  .hero__top--scrolled{padding: 6px 16px}
  .hero__top--scrolled .brand__logo{width: 90px}
  .hero__title{font-size: 40px}
  .hero__text{font-size: 13px}
  .hero__badge{font-size:11px}
  .tabs{flex-direction: column; gap:8px; padding: 12px}
  .tab{padding: 12px 16px}
  .cards{grid-template-columns: 1fr; gap:24px; justify-items:center}
  .card{max-width:340px;width:100%}
  .solutions__actions{flex-direction: column; gap: 12px; margin: 24px auto 0; width: max-content}
  .quoteBtn, .brochureBtn{width: 260px; text-align: center; justify-content: center}
  .stats__inner{grid-template-columns: 1fr; gap:16px}
  .stat__num{font-size:36px}
  
  /* Partner Carousel for Mobile */
  .partnerCarousel{
    overflow: hidden;
    padding: 0 0 56px 0;
  }
  .partnerGrid{
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 16px;
    padding: 0 28px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    width: 100%;
    margin: 0;
  }
  .partnerGrid::-webkit-scrollbar{
    display: none;
  }
  .partnerTile{
    flex: 0 0 calc(50% - 8px);
    scroll-snap-align: start;
    max-width: none;
  }
  .partnerNav{
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    padding: 0 8px;
  }
  .partnerNav__btn{
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.95);
    border: 1px solid rgba(3,93,141,.15);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: all .3s ease;
    box-shadow: 0 2px 12px rgba(0,0,0,.1);
  }
  .partnerNav__btn svg{
    width: 20px;
    height: 20px;
    color: var(--teal);
  }
  .partnerNav__btn:hover{
    background: var(--teal);
    border-color: var(--teal);
    transform: scale(1.1);
  }
  .partnerNav__btn:hover svg{
    color: #fff;
  }
  .partnerDots{
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
  }
  .partnerDot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(3,93,141,.2);
    cursor: pointer;
    transition: all .3s ease;
  }
  .partnerDot--active{
    background: var(--teal);
    width: 24px;
    border-radius: 4px;
  }
  
  .quoteSection{padding: 48px 0}
  .quoteSection__header h2{font-size: 30px}
  .quoteForm{padding: 28px 20px}
  .quoteForm .form__row{grid-template-columns: 1fr; gap: 0; margin-bottom: 0}
  .sectionTitle{font-size:30px}
  .timeline-event{grid-template-columns: 1fr; gap:12px}
  .timeline-event__image{width: 100%; max-width: 200px; height: 120px; margin: 0 auto}
  .productModal__body{grid-template-columns: 1fr; gap:24px; padding: 24px}
  .productModal__image{min-height: 200px; padding: 20px}
  .footer__inner{padding:32px 24px 0}
  .footer__bottom{padding:16px 24px}
}

/* Remove fallback logo text styles */
.brand__logo-text,
.footer__logo-text{
  display:none !important;
}

/* CONTACT BUTTON STYLES */
.contactUsBtn{
  margin-top: 14px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.5px;
  text-transform:uppercase;
}
.contactUsBtn:hover{
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(15, 111, 131, .3);
}

/* FORM MODAL STYLES */
.formModal{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.formModal--open{
  opacity: 1;
  visibility: visible;
}
.formModal__overlay{
  position: absolute;
  inset: 0;
  background: rgba(11, 46, 58, 0.95);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.formModal__content{
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  max-width: 680px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0,0,0,.35);
  transform: scale(0.85) translateY(50px);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(15, 111, 131, .1);
}
.formModal--open .formModal__content{
  transform: scale(1) translateY(0);
}
.formModal__close{
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: none;
  background: rgba(11, 46, 58, 0.08);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}
.formModal__close:hover{
  background: var(--teal);
  color: #fff;
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(15, 111, 131, .3);
}

/* FORM HEADER */
.formModal__header{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff;
  padding: 40px 40px 32px;
  border-radius: 20px 20px 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.formModal__header::before{
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  animation: shimmer 4s linear infinite;
}
@keyframes shimmer {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.formModal__header h2{
  margin: 0 0 8px;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  position: relative;
  z-index: 1;
}
.formModal__header p{
  margin: 0;
  font-size: 15px;
  opacity: 0.92;
  font-style: italic;
  position: relative;
  z-index: 1;
  line-height: 1.4;
}

/* FORM STYLES */
.contactForm{
  padding: 40px 40px 32px;
}
.form__row{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form__group{
  margin-bottom: 20px;
}
.form__group label{
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.3px;
}
.form__group input,
.form__group select,
.form__group textarea{
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  transition: all 0.3s ease;
  resize: vertical;
}
.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus{
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 111, 131, .1);
  transform: translateY(-1px);
}
.form__group input:hover,
.form__group select:hover,
.form__group textarea:hover{
  border-color: #ced4da;
}
.form__group textarea{
  min-height: 100px;
  line-height: 1.5;
}
.form__group input::placeholder,
.form__group textarea::placeholder{
  color: #6c757d;
  opacity: 0.8;
}

/* FORM ACTIONS */
.form__actions{
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #e9ecef;
}
.btn{
  padding: 14px 32px;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
  min-width: 120px;
  position: relative;
  overflow: hidden;
}
.btn::before{
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}
.btn:active::before{
  width: 300px;
  height: 300px;
}
.btn--primary{
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-2) 100%);
  color: #fff;
  box-shadow: 0 8px 25px rgba(15, 111, 131, .25);
}
.btn--primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(15, 111, 131, .35);
}
.btn--secondary{
  background: #f8f9fa;
  color: var(--ink);
  border: 2px solid #e9ecef;
}
.btn--secondary:hover{
  background: #e9ecef;
  border-color: #ced4da;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,.08);
}

/* RESPONSIVE FORMS */
@media (max-width: 768px){
  .formModal__content{
    margin: 20px;
    max-height: calc(100vh - 40px);
    border-radius: 16px;
  }
  .formModal__header{
    padding: 32px 24px 24px;
    border-radius: 16px 16px 0 0;
  }
  .formModal__header h2{
    font-size: 26px;
  }
  .formModal__header p{
    font-size: 14px;
  }
  .contactForm{
    padding: 32px 24px 24px;
  }
  .form__row{
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 0;
  }
  .form__actions{
    flex-direction: column-reverse;
    gap: 12px;
  }
  .btn{
    width: 100%;
    text-align: center;
  }
  .formModal__close{
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

@media (max-width: 480px){
  .formModal{
    padding: 16px;
  }
  .formModal__header{
    padding: 24px 20px 20px;
  }
  .contactForm{
    padding: 24px 20px 20px;
  }
  .form__group input,
  .form__group select,
  .form__group textarea{
    padding: 12px 14px;
    font-size: 16px; /* Prevents zoom on iOS */
  }
}

@media (max-width: 640px){
  .hero{min-height: 100vh}
  .hero__title{font-size: 36px}
  .hero__badge{display:none}
  .navPill{display:none}
  .cards{grid-template-columns: 1fr}
  .quoteBtn{right: 16px; left: 16px; text-align: center}
  .partnerGrid{grid-template-columns: repeat(2, 1fr)}
  .footer__cols{grid-template-columns: 1fr}
  .news__inner{grid-template-columns: 1fr}
  .news__timeline{padding-left: 24px; max-height: 360px}
  .timeline-event{grid-template-columns: 1fr; gap: 12px; padding-left: 24px}
  .timeline-event__image{width: 100%; height: 140px; margin-bottom: 8px}
  .timeline-event__content{flex-direction: column}
  .timeline-marker{position: static; margin-bottom: 8px}
  .timeline-badge{font-size: 8px; padding: 2px 8px}
  .timeline-event::before{left: -24px; top: 150px}
  .news__detail{padding: 24px; min-height: 280px}
  .news__detail-content h3{font-size: 22px}
  .productModal__body{padding: 28px}
  .productModal__close{top: 10px; right: 10px; width: 36px; height: 36px; font-size: 24px}
  .hero__nav{width: 40px; height: 40px; font-size: 24px}
  .hero__nav--prev{left: 12px}
  .hero__nav--next{right: 12px}
  .stats{padding:48px 0}
  .stat__num{font-size:32px}
}
