* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

a {
    text-decoration: none;
}

/*--Header Design--*/
.header {
    min-height: 100vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.8), rgba(4, 9, 30, 0.3)), url(images/ship.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 15px 60px;
}

/* 1ST SECTION */

nav {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.639);
    display: flex;
    padding: 0.5% 5%;
    background-color: rgb(241, 241, 241);
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}

nav img {
    width: 180px;
}

.nav-links {
    flex: 1;
    text-align: right;
}

.nav-links ul li {
    list-style: none;
    display: inline-block;
    padding: 8px 12px;
    position: relative;
}

.nav-links ul li a {
    color: rgba(30, 30, 30, 0.932);
    text-decoration: none;
    font-size: 16px;
}

.nav-links ul li::after {
    content: '';
    width: 0%;
    height: 2px;
    background: rgb(32, 83, 138);
    display: block;
    margin: auto;
    transition: 0.2s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    color: white;
    padding-top: 150px;
    margin: 0px;
    text-align: center;
}

.text-box h1 {
    font-size: 45px;
    font-weight: 600;
}

.text-box p {
    margin: 5px 0 40px;
    font-size: 15px;
}

.header-learn {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px 18px;
    font-size: 14px;
    background: transparent;
    cursor: pointer;
}

.header-learn:hover {
    border: 1px solid rgb(215, 0, 0);
    background: rgb(215, 0, 0);
    transition: 0.2s;
}

.header-about {
    display: inline-block;
    text-decoration: none;
    color: white;
    border: 1px solid white;
    border-radius: 5px;
    padding: 10px;
    font-size: 15px;
    background: transparent;
    position: relative;
    cursor: pointer;
}

.header-about:hover {
    border: 1px solid rgb(215, 0, 0);
    background: rgb(215, 0, 0);
    transition: 0.2s;
}

nav .fa-solid {
    display: none;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    border-radius: 0%;
    transition: 0.2s;
}


.sticky .text-box {
    padding-top: 102px;
}

/* Turn off parallax scrolling for all tablets and phones. Increase/decrease the pixels if needed 

@media only screen and (max-device-width: 500px) {
    .header {
        background-attachment: scroll;
    }
}

/* RESPONSIVE 1ST SECTION */
@media only screen and (max-device-width: 1024px) {
    nav img {
        width: 300px;
    }

    .text-box {
        padding-top: 45%;
    }

    .text-box h1 {
        font-size: 55px;
        padding: 0 10px;
    }

    .text-box p {
        font-size: 20px;
        padding: 0 45px;
    }

    .header-learn {
        font-size: 20px;
    }
}

@media only screen and (max-device-width: 912px) {
    nav img {
        width: 300px;
    }

    .text-box {
        padding-top: 45%;
    }

    .text-box h1 {
        font-size: 50px;
        padding: 0 10px;
    }

    .text-box p {
        font-size: 19px;
        padding: 0 40px;
    }

    .header-learn {
        font-size: 20px;
    }

    .nav-links ul li a {
        color: rgb(255, 255, 255);
        font-size: 25px;
    }

    .nav-links ul li {
        display: block;
    }

    .nav-links {
        position: absolute;
        background: #000000e1;
        height: 100vh;
        width: 200px;
        top: 0%;
        right: 0%;
        text-align: left;
        z-index: 2;
        transition: 0.5s;
    }

    nav .fa-xmark {
        display: block;
        color: white;
        margin: 10px;
        font-size: 40px;
        cursor: pointer;
    }

    nav .fa-bars {
        display: block;
        color: black;
        margin: 10px;
        font-size: 40px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 10px;
    }
}

@media only screen and (max-device-width: 450px) {

    nav img {
        width: 200px;
    }

    nav {
        padding: 0.5% 0%;
    }

    .nav-links ul li a {
        font-size: 20px;
    }

    .text-box {
        top: 50%;
    }

    .text-box h1 {
        font-size: 30px;
        padding: 0px;
    }

    .text-box p {
        font-size: 15px;
        padding: 10px;
    }

    nav .fa-xmark {
        display: block;
        color: white;
        margin: 10px;
        font-size: 25px;
        cursor: pointer;
    }

    nav .fa-bars {
        display: block;
        color: black;
        margin: 10px;
        font-size: 20px;
        cursor: pointer;
    }
}

/* 2ND SECTION */

.second {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    transition: .2s linear;
    background: white;
    padding-bottom: 60px;
}

.second h1 {
    text-align: center;
    color: rgb(37, 37, 37);
    font-size: 35px;
    font-weight: 500;
}

.second-service {
    text-align: center;
    color: rgb(124, 124, 124);
    padding-top: 70px;
    font-weight: 500;
}

.services {
    margin: 50px auto;
    margin-bottom: 60px;
    padding: 0 10%;
    text-transform: capitalize;
}

.industrial {
    display: grid;
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
}

.box {
    height: 200px;
    padding: 20px;
    text-align: left;
    border-radius: 5px;
    background: rgb(81, 94, 103);
    box-shadow: 0px 15px 10px rgba(0, 0, 0, 0.2);
}

.fa-solid {
    color: white;
    font-size: 60px;
}

.box h3 {
    color: rgb(255, 255, 255);
    padding: 10px 0;
    font-size: 25px;
    font-weight: 500;
}

.box-1 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.5)), url(images/bolt.jpeg);
    background-size: cover;
}

.box-2 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url(images/bottle.jpg);
    background-size: cover;
}

.box-3 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url(images/warehouse.jpg);
    background-size: cover;
}

.box-4 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url(images/meat.jpg);
    background-size: cover;
}

.box-5 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url(images/marine2.jpg);
    background-size: cover;
}

.box-6 {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), url(images/safety.jpg);
    background-size: cover;
}

/* RESPONSIVE 2ND SECTION */

@media only screen and (max-device-width: 500px) {
    .second h1 {
        font-size: 25px;
        font-weight: 600;
    }

    .second-service {
        font-size: 15px;
    }
}

/* 3RD SECTION */

* {
    box-sizing: border-box;
}

.column-1 {
    background-image: linear-gradient(rgba(4, 9, 30, 0.3), rgba(4, 9, 30, 0.3)), url(images/logistics.jpg);
    background-size: 1000px;
    float: left;
    width: 50%;
    padding: 10px;
    height: 450px;
}

.column-2 {
    float: right;
    width: 50%;
    padding: 10px;
    height: 450px;
}

.row-2 {
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.639);
}

.row-2 {
    color: white;
}

.row-2:after {
    content: "";
    display: table;
    clear: both;
}

.column-2 {
    margin: auto;
    text-align: auto;
    padding-top: 65px;
    padding-left: 30px;
    padding-right: 30px;
}

.column-2 h1 {
    font-size: 40px;
    font-weight: 500;
}

.column-2 p {
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
    padding: 10px;
}

/* RESPONSIVE 3RD SECTION */

@media only screen and (max-device-width: 900px) {
    .column-1 {
        width: 50%;
        height: 600px;
    }

    .column-2 {
        width: 50%;
        height: 600px;
    }

    .column-2 h1 {
        font-size: 29px;
    }
}

@media only screen and (max-device-width: 450px) {
    .column-1 {
        display: none;
    }

    .column-2 {
        width: 100%;
        height: 550px;
    }

    .column-2 h1 {
        font-size: 29px;
        margin-top: 0px;
    }
}

/* ===== WHO WE ARE ===== */
.who{ background:#f9fafb; padding:72px 20px; }
.who-wrap{ max-width:1200px; margin:0 auto; }

/* Header */
.who-head{ text-align:center; margin-bottom:28px; }
.who-head h2{ color:#0d2b49; font-weight:700; letter-spacing:.5px; }
.who-head p{ color:#6b7b8c; }

/* Cards */
.who-cards{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:18px;
  margin-top:22px;
}
@media (max-width: 960px){ .who-cards{ grid-template-columns:1fr; } }

.who-card{
  background:#0d2b49;
  color:#eaf2ff;
  border-radius:16px;
  padding:22px 20px;
  box-shadow:0 12px 28px rgba(0,0,0,.12);
  border:1px solid rgba(255,255,255,.06);
}
.who-card h3{ margin:8px 0 8px; color:#ffffff; }
.who-card p{
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

/* Optional: avoid rivers on very narrow screens */
@media (max-width: 560px){
  .who-card p{ text-align: left; }  /* or 'start' */
}

.who-icon{
  width:42px; height:42px; border-radius:50%;
  display:grid; place-items:center;
  background:#1d86e3; color:#fff;
  box-shadow:0 8px 18px rgba(29,134,227,.35);
}
.who-icon i{ font-size:18px; }

/* What We Do block (center the whole thing) */
.who-overview{
  max-width: 900px;             /* readable line length */
  margin: 38px auto 0;          /* centers the block */
  text-align: center;           /* center heading + text */
  padding: 0 12px;
}
.who-overview h3{
  color:#0d2b49;
  font-weight:700;
  letter-spacing:.5px;
  margin-bottom:10px;
}

/* Center paragraphs and limit width */
.who-text p{
  max-width: 70ch;
  margin: 10px auto;
  line-height: 1.75;
  color: #37475a;

  text-align: justify;         /* full justification */
  text-justify: inter-word;    /* better spacing in some browsers */
  hyphens: auto;               /* allow hyphenation for nicer breaks */
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

@media (max-width: 560px){
  .who-text p{ text-align: left; }  /* or 'start' */
}

/* Center the buttons row */
.who-ctas{
  display:flex;
  justify-content:center;
  gap:12px;
  margin-top:16px;
}

/* Buttons */
.btn-primary{
  background:#1d86e3; color:#fff; border:0; padding:10px 16px;
  border-radius:10px; text-decoration:none; font-weight:600;
  box-shadow:0 10px 24px rgba(29,134,227,.28);
  transition:transform .2s ease, box-shadow .2s ease;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 14px 30px rgba(29,134,227,.36); }

.btn-ghost{
  background:transparent; color:#0d2b49; border:1px solid #0d2b49;
  padding:10px 16px; border-radius:10px; text-decoration:none; font-weight:600;
  transition:all .2s ease;
}
.btn-ghost:hover{ background:#0d2b49; color:#fff; }

/* Optional image holder if you add it back */
.who-art img{
  width:100%; height:auto; display:block; border-radius:14px;
  box-shadow:0 14px 32px rgba(0,0,0,.18);
}
/* ===== /WHO WE ARE ===== */

/* 5TH SECTION */
.grid-row {
    display: -ms-flexbox;
    /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap;
    /* IE10 */
    flex-wrap: wrap;
    padding: 0 10px;
    text-align: center;
}

.grid-column {
    -ms-flex: 25%;
    /* IE10 */
    flex: 25%;
    max-width: 20%;
    padding: 0 10px;
    margin: 50px;
}

.grid-column img {
    vertical-align: middle;
    width: 70%;
}

.grid-row h3 {
    text-align: center;
    padding: 1px;
}

@media only screen and (max-device-width: 450px) {
    .services-2 {
        padding-bottom: 50px;
    }

    .industrial-2 {
        margin-top: 30px;
        margin-left: 10px;
        margin-right: 10px;
    }

    .fourth h1 {
        padding-top: 80px;
        font-size: 29px;
    }
}

/* FOOTER */

.footer-modern {
  background: #131313;
  color: #ffffff;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 60px 20px 0;
}

.footer-container {
  max-width: 1000px;
  margin: 0 auto;
}

.footer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding: 0;
}

.footer-logo {
  width: 200px;               /* your current size */
  height: auto;
  object-fit: contain;
  filter: none !important;    /* ensure no grayscale/brightness */
  background: #ffffff;        /* white badge behind the logo */
  border-radius: 16px;        /* soft corners */
  padding: 12px 18px;         /* breathing room around the mark */
  box-shadow: 0 8px 20px rgba(0,0,0,.18),
              0 0 0 1px rgba(255,255,255,.06) inset;
}

.footer-header h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #e3ecff;
  letter-spacing: 0.5px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 30px;
  flex-wrap: wrap;

  /* FIXES */
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}


.footer-nav a {
  color: hwb(0 100% 0%);
  text-decoration: none; /* removes underline */
  font-size: 0.95rem;
  transition: color 0.3s ease;
}


.footer-nav a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.25);
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 20px;
}

.footer-socials a {
  color: #ffffff;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  color: #ffffff;
  transform: translateY(-3px);
}

/* Partner Logos Section */
.footer-logos {
  background: #131313;
  padding: 10px 0 10px;
}

.footer-logos h5 {
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 50px;
}

.partner-logos img {
  height: 72px;                /* 64–80px also looks good */
  background: #ffffff;         /* white pill behind each logo */
  border-radius: 14px;         /* soft corners */
  padding: 10px 16px;          /* space around each logo */
  box-shadow: 0 8px 20px rgba(0,0,0,.18), 0 0 0 1px rgba(255,255,255,.06) inset;
  filter: none !important;     /* remove grayscale/brightness */
  opacity: 1;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.partner-logos img:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.12) inset;
  filter: none;
}


/* Footer Bottom */
.footer-bottom {
  padding: 30px 0;
  font-size: 0.85rem;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-nav {
    gap: 20px;
  }

  .partner-logos {
    gap: 25px;
  }

  .partner-logos img {
    height: 45px;
  }
}

/* AFFILIATED COMPANIES SECTION - NAVY BLUE BACKGROUND */
.affiliated-section {
  background-color: #0d2b49; /* deep navy */
  padding: 70px 8%;
  text-align: center;
}

.affiliated-section h1 {
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 50px;
  letter-spacing: 1px;
}

.affiliated-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px 40px;
  justify-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.affiliated-item {
  background: #ffffff;
  color: #0d2b49;
  padding: 20px 25px;
  border-radius: 12px;
  border: none;
  font-weight: 500;
  font-size: 16px;
  box-shadow: 0 2px 6px rgba(255, 255, 255, 0.08);
  transition: all 0.3s ease;
  width: 100%;
  max-width: 320px;
}

.affiliated-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #2a78c9, #0d2b49);
  color: #ffffff;
  box-shadow: 0 8px 20px rgba(42, 120, 201, 0.4);
}


/* Responsive tweaks */
@media only screen and (max-width: 768px) {
  .affiliated-item {
    font-size: 15px;
    max-width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .affiliated-section {
    padding: 50px 5%;
  }

  .affiliated-section h1 {
    font-size: 1.8rem;
  }

  .affiliated-item {
    font-size: 14px;
    padding: 16px;
  }
}
