
:root{
  --navy:#061f49;
  --deep:#02152f;
  --green:#338b13;
  --green2:#57a624;
  --lime:#9bd46f;
  --text:#10294f;
  --muted:#526b88;
  --line:#dce6f0;
  --shadow:0 20px 55px rgba(3,24,49,.12);
  --max:1240px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:Arial,Helvetica,sans-serif;
  background:#fff;
  color:var(--text);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}
.container{width:min(var(--max), calc(100% - 44px));margin:0 auto}

/* Header */
.site-header{
  background:#fff;
  border-bottom:1px solid #edf2f7;
  position:sticky;
  top:0;
  z-index:50;
}
.nav{
  height:94px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.logo{width:320px;height:auto;max-width:100%}
.nav-links{
  list-style:none;
  display:flex;
  align-items:center;
  gap:30px;
  font-size:15px;
  font-weight:800;
  color:#061f49;
}
.nav-links a.active,.nav-links a:hover{color:var(--green)}
.nav-cta{
  color:#fff!important;
  background:linear-gradient(180deg,var(--green2),var(--green));
  padding:14px 24px;
  border-radius:8px;
  box-shadow:0 10px 26px rgba(51,139,19,.22);
}
.menu-btn{
  display:none;
  border:0;
  background:var(--navy);
  color:#fff;
  border-radius:10px;
  padding:10px 14px;
  font-size:20px;
  cursor:pointer;
}

/* Editable hero like approved preview */
.hero{
  position:relative;
  overflow:hidden;
  min-height:760px;
  background:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.88) 36%,rgba(255,255,255,.42) 58%,rgba(255,255,255,.08) 100%),
    url("../assets/hero-background.jpg") center center/cover no-repeat;
  border-bottom:1px solid var(--line);
}
.hero-inner{
  position:relative;
  z-index:2;
  min-height:760px;
  display:grid;
  grid-template-columns:470px 1fr;
  gap:72px;
  align-items:center;
  padding:78px 0 90px;
}
.eyebrow{
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:4px;
  font-weight:900;
  font-size:14px;
  margin-bottom:20px;
}
.hero h1{
  color:var(--navy);
  font-weight:900;
  font-size:clamp(50px,5.25vw,72px);
  line-height:1.05;
  letter-spacing:-2.3px;
  margin-bottom:24px;
}
.green{color:var(--green)}
.hero-copy p{
  max-width:520px;
  color:#284766;
  font-size:19px;
  line-height:1.58;
  margin-bottom:32px;
}
.actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:55px;
  padding:14px 24px;
  border-radius:8px;
  font-weight:900;
  font-size:16px;
}
.btn-primary{background:var(--navy);color:#fff;box-shadow:0 12px 26px rgba(6,31,73,.18)}
.btn-secondary{background:#fff;color:var(--navy);border:2px solid var(--navy)}

/* Approved port box image: smaller and more to the right */
.port-box{
  justify-self:end;
  width:510px;
  max-width:510px;
  margin-right:-44px;
}
.port-box img{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  background:transparent;
  box-shadow:0 24px 58px rgba(2,20,46,.25);
}

/* Shared sections */
section.content{padding:76px 0}
.section-title{text-align:center;margin-bottom:36px}
.section-title .mini{
  color:var(--green);
  text-transform:uppercase;
  letter-spacing:2px;
  font-size:13px;
  font-weight:900;
  margin-bottom:8px;
}
.section-title h2{
  color:var(--navy);
  font-size:clamp(30px,3.8vw,42px);
  line-height:1.12;
}
.section-title::after{
  content:"";
  width:56px;
  height:3px;
  display:block;
  background:var(--green);
  border-radius:99px;
  margin:18px auto 0;
}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.two-col{display:grid;grid-template-columns:1fr 1.1fr;gap:54px;align-items:start}
.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:30px 26px;
  box-shadow:0 14px 34px rgba(3,24,49,.055);
}
.card h3{color:var(--navy);font-size:21px;margin-bottom:10px}
.card p,.card li{color:#405a78;font-size:16px}
.card ul{padding-left:20px;display:grid;gap:10px}
.icon{
  width:58px;
  height:58px;
  border-radius:50%;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(180deg,var(--green2),var(--green));
  font-size:25px;
  margin-bottom:18px;
}
.network-band{
  background:linear-gradient(135deg,#061f49,#02152f);
  color:#fff;
  padding:52px 0;
}
.network-band h2{text-align:center;font-size:28px;margin-bottom:24px}
.network-band h2::after{content:"";display:block;width:56px;height:3px;margin:14px auto 0;background:var(--green2)}
.port-row{display:grid;grid-template-columns:repeat(5,1fr);gap:14px}
.port-chip{
  border:1px solid rgba(255,255,255,.24);
  border-radius:12px;
  padding:17px 14px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-weight:900;
  background:rgba(255,255,255,.04);
}
.port-chip small{display:block;color:#9bd46f;font-size:13px}
.anchor{
  width:36px;
  height:36px;
  border-radius:50%;
  border:2px solid var(--green2);
  color:#9bd46f;
  display:grid;
  place-items:center;
  flex:0 0 auto;
}
.company-copy .label{color:var(--green);text-transform:uppercase;font-weight:900;letter-spacing:2px;font-size:13px;margin-bottom:13px}
.company-copy h2{color:var(--navy);font-size:34px;line-height:1.1;margin-bottom:18px}
.company-copy h2::after{content:"";display:block;width:56px;height:3px;background:var(--green);margin-top:16px}
.company-copy p{color:#3f5573;font-size:17px;margin-bottom:13px}
.highlights{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:30px 36px;
}
.highlights h3{color:var(--navy);font-size:25px;margin-bottom:18px;display:flex;align-items:center;gap:12px}
.highlights h3 span{width:42px;height:42px;border-radius:50%;display:grid;place-items:center;background:var(--green);color:#fff}
.highlights ul{list-style:none;display:grid;gap:12px}
.highlights li{color:#3f5573;display:flex;gap:10px}
.highlights li::before{content:"✓";color:var(--green);font-weight:900}

/* Contact */
.contact-card{
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  box-shadow:var(--shadow);
  background:#fff;
}
.contact-logo{padding:34px;display:grid;align-content:center;border-right:1px solid var(--line)}
.contact-logo img{width:300px;max-width:100%}
.contact-info{padding:36px 40px}
.contact-info h2{font-size:28px;color:var(--navy);margin-bottom:8px}
.role{color:var(--green);font-weight:900;margin-bottom:18px}
.contact-list{display:grid;gap:10px;color:#425a78;font-size:16px}
.contact-list span{color:var(--green);font-weight:900;margin-right:8px}
.form{display:grid;gap:14px}
.form label{font-weight:900;color:var(--navy)}
.form input,.form textarea,.form select{
  width:100%;
  border:1px solid var(--line);
  border-radius:10px;
  padding:14px 15px;
  font:inherit;
  color:var(--text);
  margin-top:6px;
}
.form textarea{min-height:150px;resize:vertical}
.page-hero{
  padding:86px 0;
  background:linear-gradient(135deg,#fff,#f7f9fc);
  border-bottom:1px solid var(--line);
}
.page-hero .label{color:var(--green);font-weight:900;text-transform:uppercase;letter-spacing:2px;margin-bottom:12px}
.page-hero h1{color:var(--navy);font-size:clamp(44px,5.4vw,70px);line-height:1;letter-spacing:-2px;margin-bottom:18px}
.page-hero p{max-width:850px;color:var(--muted);font-size:21px}
footer{padding:30px 0;text-align:center;color:#60728f;font-size:14px}

@media(max-width:1160px){
  .hero-inner{grid-template-columns:1fr;gap:34px;align-items:start}
  .port-box{justify-self:start;width:min(560px,100%);max-width:560px;margin-right:0}
}
@media(max-width:980px){
  .menu-btn{display:inline-flex}
  .nav{height:84px}
  .logo{width:210px}
  .nav-links{
    display:none;
    position:absolute;
    left:20px;
    right:20px;
    top:84px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:16px;
    box-shadow:var(--shadow);
    padding:20px;
    flex-direction:column;
    align-items:flex-start;
    gap:18px;
  }
  .nav-links.open{display:flex}
  .hero-inner{min-height:auto;padding:58px 0 90px}
  .grid-4,.grid-3,.two-col,.contact-card{grid-template-columns:1fr}
  .port-row{grid-template-columns:1fr 1fr}
  .contact-logo{border-right:0;border-bottom:1px solid var(--line)}
}
@media(max-width:600px){
  .container{width:min(var(--max), calc(100% - 24px))}
  .logo{width:180px}
  .hero h1{font-size:44px;letter-spacing:-1.5px}
  .hero-copy p{font-size:17px}
  .actions .btn{width:100%}
  .port-box{width:100%;max-width:100%}
  .port-box img{border-radius:16px}
  .port-row{grid-template-columns:1fr}
  .page-hero p{font-size:18px}
}


/* FINAL NO-DUPLICATE FIX:
   hero-background.jpg is now a clean photo only — no text and no port box baked in.
   The visible headline and Strategic Port Network box are the only ones on the page. */
.hero{
  background:
    linear-gradient(90deg,rgba(255,255,255,.96) 0%,rgba(255,255,255,.88) 36%,rgba(255,255,255,.42) 58%,rgba(255,255,255,.08) 100%),
    url("../assets/hero-background.jpg") center center/cover no-repeat !important;
}
.port-box{
  width:500px !important;
  max-width:500px !important;
  margin-right:-54px !important;
}
.port-box img{
  border-radius:18px !important;
  background:transparent !important;
  box-shadow:0 24px 58px rgba(2,20,46,.25) !important;
}
@media(max-width:1160px){
  .port-box{
    width:min(540px,100%) !important;
    max-width:540px !important;
    margin-right:0 !important;
  }
}


/* APPROVED FORTUNE 500 HERO UPDATE */
.hero{
  min-height:790px !important;
  background:
    linear-gradient(90deg,rgba(255,255,255,.98) 0%,rgba(255,255,255,.91) 34%,rgba(255,255,255,.48) 58%,rgba(255,255,255,.10) 100%),
    linear-gradient(180deg,rgba(255,255,255,.08) 0%,rgba(2,18,42,.20) 100%),
    url("../assets/hero-background.jpg") center center/cover no-repeat !important;
}
.hero-inner{
  min-height:705px !important;
  padding:72px 0 112px !important;
  grid-template-columns:470px 1fr !important;
  gap:76px !important;
}
.hero h1{
  font-size:clamp(52px,5.35vw,74px) !important;
  line-height:1.04 !important;
}
.hero-copy p{
  font-size:19px !important;
  max-width:535px !important;
}
.port-box{
  width:530px !important;
  max-width:530px !important;
  margin-right:-34px !important;
}
.port-box img{
  border-radius:18px !important;
  box-shadow:0 26px 60px rgba(2,20,46,.30) !important;
}
.hero-trust-strip{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:3;
  width:min(var(--max), calc(100% - 44px));
  display:grid;
  grid-template-columns:1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items:center;
  color:#fff;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.62);
  text-shadow:0 2px 10px rgba(0,0,0,.36);
}
.trust-item{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  font-size:17px;
  letter-spacing:.1px;
}
.trust-item span{
  color:#9bd46f;
  font-size:28px;
  line-height:1;
}
.trust-item strong{
  font-weight:900;
}
.trust-divider{
  width:1px;
  height:44px;
  background:rgba(255,255,255,.42);
}

@media(max-width:1160px){
  .hero-inner{
    grid-template-columns:1fr !important;
    gap:34px !important;
    min-height:auto !important;
    padding:58px 0 150px !important;
  }
  .port-box{
    justify-self:start !important;
    width:min(560px,100%) !important;
    max-width:560px !important;
    margin-right:0 !important;
  }
  .hero-trust-strip{
    grid-template-columns:1fr 1fr;
    gap:18px 22px;
    border-top:1px solid rgba(255,255,255,.45);
  }
  .trust-divider{
    display:none;
  }
}
@media(max-width:700px){
  .hero-trust-strip{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(var(--max), calc(100% - 24px));
    grid-template-columns:1fr;
    margin:0 auto 28px;
    color:#061f49;
    text-shadow:none;
    border-top:1px solid rgba(6,31,73,.16);
  }
  .trust-item{
    justify-content:flex-start;
  }
}


/* CORRECT LOGO FIT UPDATE */
@media(max-width:980px){.logo{width:250px}}
@media(max-width:600px){.logo{width:210px}}


/* NO-FADE HERO TEST VERSION
   Uses a clean tanker/terminal photo with stronger color.
   No white faded wash over the image. */
.hero{
  min-height:790px !important;
  background:
    linear-gradient(90deg,rgba(1,14,34,.72) 0%,rgba(1,14,34,.55) 32%,rgba(1,14,34,.22) 58%,rgba(1,14,34,.08) 100%),
    linear-gradient(180deg,rgba(0,0,0,.06) 0%,rgba(1,14,34,.22) 100%),
    url("../assets/hero-background.jpg") center center/cover no-repeat !important;
}
.hero-inner{
  min-height:705px !important;
  padding:72px 0 112px !important;
  grid-template-columns:470px 1fr !important;
  gap:76px !important;
}
.eyebrow{
  color:#78d64b !important;
  text-shadow:0 2px 12px rgba(0,0,0,.32) !important;
}
.hero h1{
  color:#ffffff !important;
  text-shadow:0 4px 24px rgba(0,0,0,.45) !important;
  font-size:clamp(52px,5.35vw,74px) !important;
  line-height:1.04 !important;
}
.hero-copy p{
  color:rgba(255,255,255,.94) !important;
  text-shadow:0 3px 14px rgba(0,0,0,.40) !important;
  font-size:19px !important;
  max-width:535px !important;
}
.btn-secondary{
  background:rgba(255,255,255,.92) !important;
  border-color:rgba(255,255,255,.82) !important;
}
.port-box{
  width:530px !important;
  max-width:530px !important;
  margin-right:-34px !important;
}
.port-box img{
  border-radius:18px !important;
  box-shadow:0 26px 60px rgba(2,20,46,.30) !important;
}
.hero-trust-strip{
  position:absolute;
  left:50%;
  bottom:28px;
  transform:translateX(-50%);
  z-index:3;
  width:min(var(--max), calc(100% - 44px));
  display:grid;
  grid-template-columns:1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items:center;
  color:#fff;
  padding:18px 26px;
  background:rgba(3,18,43,.78);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.24);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  text-shadow:0 2px 10px rgba(0,0,0,.40);
}
.trust-divider{
  width:1px;
  height:44px;
  background:rgba(255,255,255,.20);
}
.logo{
  width:320px !important;
  height:auto !important;
  max-width:100% !important;
}

@media(max-width:1160px){
  .hero-inner{
    grid-template-columns:1fr !important;
    gap:34px !important;
    min-height:auto !important;
    padding:58px 0 150px !important;
  }
  .port-box{
    justify-self:start !important;
    width:min(560px,100%) !important;
    max-width:560px !important;
    margin-right:0 !important;
  }
  .hero-trust-strip{
    grid-template-columns:1fr 1fr;
    gap:18px 22px;
  }
  .trust-divider{
    display:none;
  }
}
@media(max-width:700px){
  .logo{width:220px !important;}
  .hero-trust-strip{
    position:relative;
    left:auto;
    bottom:auto;
    transform:none;
    width:min(var(--max), calc(100% - 24px));
    grid-template-columns:1fr;
    margin:0 auto 28px;
    background:rgba(3,18,43,.88);
  }
  .trust-item{
    justify-content:flex-start;
  }
}


/* Header logo fit fix */
.site-header{padding:0;}
.nav{
  min-height:108px !important;
  height:auto !important;
  padding:10px 0 !important;
  align-items:center !important;
}
.nav > a:first-child{
  display:flex;
  align-items:center;
  flex:0 0 auto;
}
.logo{
  width:268px !important;
  max-width:100% !important;
  height:auto !important;
  object-fit:contain !important;
}
@media(max-width:700px){
  .nav{
    min-height:92px !important;
    padding:8px 0 !important;
  }
  .logo{
    width:220px !important;
  }
}
