


@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.main-header {
  background-color: #242424;
  margin: 0 auto;
  padding: 0 0;  
  /* padding-right:1%; */
  width: 100%;
  box-sizing: border-box;
  animation: slideDown 1.0s ease-out forwards;
}
    
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0.625vw;
  padding-right: 1.625vw;
  /* border-radius: 0.9375vw; */
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 0.625vw;
  
}

.logo-area {
  display: flex;
  align-items: center;
}

.logo {
  height: 2.8125vw;
  display: block;
}

/* Navigation Menu */
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.9375vw;
  padding-left: 0.625vw;
  margin: 0;
}
.nav-links ul {
  list-style: none;
  padding: 0;
}
.nav-links li {
  font-size: 1.0417vw;
  color: #666;
  cursor: pointer;
  font-style: normal;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-links li a {
  font-size: 1.0417vw;
  color: #666;
  cursor: pointer;
  font-style: normal;
  font-weight: 300;
  position: relative;
  transition: color 0.3s ease;
  text-decoration: none;
}
.nav-links li.nav-active {
  color: #000;
}
.nav-links li a.nav-active {
  color: #000;
}
.nav-links li a:hover {
  color: #000;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 2.2917vw;
  left: 0;
  background-color: white;
  border: 0.0625vw solid #ddd;
  box-shadow: 0 0.25vw 0.5vw rgba(0, 0, 0, 0.1);
  z-index: 100;
  min-width: 11.25vw;
}

.dropdown-toggle img {
  width: 0.625vw;
  height: 0.375vw;
  position: relative;
  bottom: 0.125vw;
}

.dropdown-menu li {
  padding: 0.625vw 1.25vw;
  white-space: nowrap;
}

.dropdown-menu li a {
  color: #333;
  text-decoration: none;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

/* CTA Button */
.quote-btn {
  background-color: #e21f27;
  color: white;
  padding: 0.75vw 1.5625vw;
  border: none;
  border-radius: 0.625vw;
  font-weight: 300;
  font-size: 0.875vw;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}

.quote-btn:hover {
  background-color: #c10d15;
}

/* Responsive */

/* Hero Section */
.hero-content.centered {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.625vw;
  color: white;
  padding: 2.1875vw 2.5vw;
  padding-bottom: 3.75vw;
}

.hero-content.centered h1 {
  font-size: 4.3vw;
  color: #ffff;
  font-weight: 800;
  letter-spacing: 0.0625vw;
}

.hero-content.centered p {
  font-size: 1.0625vw;
  font-weight: 250;
  color: #FFFFFF;
  line-height: 1.5;
  text-align: center;
}

.read-more.white-outline {
  background-color: transparent;
  color: #fff;
  border: 0.0625vw solid #fff;
  margin-top: 0.9375vw;
  padding: 0.625vw 1.25vw;
  border-radius: 0.5vw;
  font-weight: 200;
  font-size: 0.9375vw;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.read-more.white-outline:hover {
  background-color: #fff;
  color: #000;
}
.supply-chain-section {
   /* display: none!important; */
  background-color: #000;
  color: #fff;
 padding: 2.17vw 5vw;
  font-family: 'Kantumruy Pro', sans-serif;
   left: 0; top: 4vw;
  position: fixed;
  z-index: 1000;
  display: flex;
  flex-direction: row;
  gap:5vw;
  width:100vw;
   overflow-y: scroll;
  /* height:100vh; */
}

.supply-grid {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  /* flex-wrap: wrap; */
  gap: 1vw;
  align-items: flex-start;
  max-width:60%;
}

.services-list {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 2vw;
  max-width: 50%;
}

.service-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding: 14px 20px;
  border-radius: 14px;
   font-size: 2rem;
  text-align: left;
  font-weight: 600;
  text-transform: none;
  color: #000;
  /* line-height: 1; */
  min-width: 220px;
  text-decoration: none;
}

.service-btn .plus {
  background-color: #1e1d4f;
  color: white;
  padding: 6px 12px;
  border-radius: 50%;
  font-size: 18px;
}

.service-btn:hover .plus {
  background-color: #e21f27;
}
.services-image{
  width:50%;
}
.services-image img {
  max-width: 97%;
  border-radius: 20px;
}

.supply-text {
  margin-top: 50px;
  text-align: left;
  /* max-width: 50%; */
}

.supply-text h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
}

.supply-text p {
  font-size: 18px;
  line-height: 1.6;
  color: #ccc;
}

/* Hide hamburger by default (only show on mobile) */
.hamburger {
  display: none;
}

/* Mobile layout */
@media (max-width: 768px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
  }

  .logo {
    height: 6vw;
    /* z-index: 1001; */
  }
.quote-btn {
  /* background-color: #e21f27;
  color: white;
  padding: 0.75vw 1.5625vw;
  border: none;
  border-radius: 0.625vw;
  font-weight: 300;
  font-size: 0.875vw;
  cursor: pointer;
  text-transform: uppercase;
  transition: background-color 0.3s ease; */
  display: none;
}
  .hamburger {
    display: block;
    font-size: 5rem;
    color: black;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    float:right;
  }

.dropdown-toggle img {
  width: 1.625vw;
  height: 1.375vw;
  position: relative;
  left:0.5vw;
  bottom: 0.125vw;
}
  .nav-wrapper {
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    background-color: white;
    width: 100vw;
    /* height: 100vh; */
    /* padding-top: 80px; */
    /* z-index: 10005; */
    overflow-y: auto;
  }

  .nav-wrapper.active {
    display: flex;
    
  }

  .nav-links {
    flex-direction: column;
    gap: 3vw;
    width: 100%;
    padding: 0 20px;
    /* height: 100vh; */
  }

  .nav-links li,
  .nav-links li a {
    font-size: 3.5rem;
    color: #000;
    width: 100%;
    padding: 10px;
    /* border-bottom: 1px solid #eee; */
    text-align: center;
    list-style: none;
  }

  /* Services Section inside dropdown */
  .supply-chain-section {
    display: none;
    flex-direction: column;
    background:white;
    width: 100vw;
    /* height:100vh; */
    /* padding: 20px; */
    gap: 0;
    position: fixed;
    top:30vw;
     z-index: 9999;
  /* left: 0; top: 0; */
    /* position: fixed; */
  /* z-index: 1000; */
    /* z-index: 99999; ← Much higher than 3000 */
  overflow-y: auto;
  }

  /* .supply-chain-section.active {
    display: flex !important;
  } */

  .services-list {
    display: grid;
  grid-template-columns: repeat(2, auto);
    flex-direction: column;
    gap: 0.5vw;
    max-width: 100%;
  }
 .service-btn {
    display: block;
    width: 100%;
    background: none;
    color: #000;
    font-size: 3.5rem;
    font-weight: 300;
    padding: 10px;
    border: none;
    text-align: center;
    text-decoration: none;
    border-radius: 0;
    justify-content: center;
  }

  .service-btn .plus {
    display: none;
  }
.service-btn.plus{
  display: none!important;
}
  /* Hide text and image on mobile */
  .supply-text,
  .services-image {
    display: none !important;
  }
}
