* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;

}

a {
    text-decoration: none
}

/*--Header Design--*/
body {
    padding: 0%;
    margin: 0%;
}

nav {
    padding: 200px;
    text-align: center;
}

section {
    width: 100%;
    min-height: 500px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    right: 0;
    border-radius: 0%;
    transition: 0.2s;
}

.sticky .text-box {
    padding-top: 102px;
}

.header:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 215px;
    background: url(images/wave.png);
    background-size: cover;
    background-repeat: no-repeat;
}

/**/

.header {
    min-height: 100vh;
    max-width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.5), rgba(4, 9, 30, 0.5)), url(images/stock4.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    padding: 15px 60px;
}

nav {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.639);
    display: flex;
    padding: .5% 5%;
    border-radius: 10px;
    background-color: white;
    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: rgb(70, 70, 70);
    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.1s;
}

.nav-links ul li:hover::after {
    width: 100%;
}

.text-box {
    color: white;
    text-align: center;
    padding-top: 150px;
    font-size: 45px;
}


.header-learn {
    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-learn:hover {
    border: 1px solid rgb(32, 83, 138);
    background: rgb(32, 83, 138);
    transition: 0.2s;
}

nav .fa-solid {
    display: none;
}

/* RESPONSIVE HEADER */
@media only screen and (max-device-width: 1024px) {
    nav img {
        width: 300px;
    }

    .header {
        min-height: 50vh;
    }

    .header:before {
        height: 64%;
        background-size: 100%;
    }

    .text-box {
        padding-top: 20%;
        font-size: 50px;
        padding-bottom: 0%;
    }
}

@media only screen and (max-device-width: 912px) {
    nav img {
        width: 300px;
    }

    .header {
        min-height: 50vh;
    }

    .header:before {
        height: 64%;
        background-size: 100%;
    }

    .text-box h1 {
        font-size: 50px;
        padding-bottom: 73%;
    }

    .nav-links ul li a {
        color: rgb(255, 255, 255);
        font-size: 20px;
    }

    .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;
    }

    .header {
        min-height: 45vh;
    }

    .header:before {
        height: 61%;
        background-size: 100%;
    }

    .text-box {
        font-size: 35px;
        padding-top: 80px;
        padding-bottom: 1%;
    }

    .nav-links ul li a {
        color: rgb(255, 255, 255);
        font-size: 20px;
    }

    .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: 25px;
        cursor: pointer;
    }

    nav .fa-bars {
        display: block;
        color: black;
        margin: 10px;
        font-size: 20px;
        cursor: pointer;
    }

    .nav-links ul {
        padding: 10px;
    }
}

/* BODY */
* {
    box-sizing: border-box;
}

.second {
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    transition: .2s linear;
    background: white;
    padding-bottom: 60px;
}

.services {
    margin: 20px auto;
    padding: 0 10%;
    padding-bottom: 10px;
    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);
    transition: transform .3s;
}

/*
.box:hover {
    -ms-transform: scale(1.5);

    -webkit-transform: scale(1.5);
 
    transform: scale(1.1);
}
*/

.fa-solid {
    color: white;
    font-size: 60px;
}

.box h3 {
    color: rgb(255, 255, 255);
    padding: 10px 0;
    font-size: 25px;
}

.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;
}

/* 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;
  }
}