/* reset & global */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  color: #333;
  background: #fff;
}
/* -------- Hero banner -------- */
.hero {
  position: relative;
  width: 100%;
  height: 85%;                    /* adjust height to taste */
  background: url('../images/heroimage.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);     /* dark overlay for contrast */
}

.hero-content {
  position: relative;              /* above the overlay */
  text-align: center;
  color: #fff;
  padding: 0 1rem;
}

.hero-content h1 {
  font-size: 3rem;                 /* adjust as needed */
  margin-bottom: 0.5rem;
}

.hero-content p {
  font-size: 1.25rem;
}

/* HEADER */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #000;
  padding: 10px 20px;
}
.header-left .logo {
  height: 70px;
}
.header-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}
.header-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}
.header-nav a.active {
  color: #e6341d;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-right .icon {
  width: 20px;
  filter: invert(1);
}
.header-right a {
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

   /* Main slider container */
.slider {
  position: relative;
  max-width: 100%;
  height: 70vh;
  overflow: hidden;
  color: #000;
}

/* Inner wrapper that shifts left/right */
.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 100%;
}

/* Each slide: image on left, text on right */
/* Slide container: center its two children */
.slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f2f2;
  box-sizing: border-box;
  padding: 2rem;
  gap: 4rem; 
}

/* Left box: product image */
.slide img {
  width: 40%;
  max-width: 400px;
  object-fit: contain;
}

/* Text block stays at 40% */
.card-content {
  width: 40%;
  max-width: 400px;
  display: flex;
  flex-direction: column;  /* stack heading, list, and button */
}

/* Push the button to the middle (horizontally) */
.card-content .btn {
  margin: 1.5rem auto 0;   /* top margin, auto left/right to center */
}

.card-content h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: large;
}

.card-content ul {
  padding-left: 1.2rem;
  margin-bottom: 1rem;
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.6rem 1.2rem;
  background-color: #007BFF;
  color: white;
  border-radius: 0.3rem;
  text-decoration: none;
  font-weight: 500;
}

/* Prev/Next arrows */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.8);
  border: 1px solid #ccc;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 1.5rem;
}

.prev { left: 1rem; }
.next { right: 1rem; }

    /* Export Countries map */
    #map { width: 100%; height: 400px; margin: 2rem 0; }

    /* Vision / Mission / Values */
    .info { padding: 2rem; background: #f9f9f9; text-align: center; }
    .info h2 { margin-bottom: 1rem; }
    .info p { margin-bottom: 2rem; font-size: 1.1rem; }
    .cards { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }
    .card { background: #fff; padding: 1.5rem; border-radius: 8px; box-shadow: 0 2px 8px rgba(0,0,0,0.1); width: 280px; }
    .card h3 { margin-bottom: 0.75rem; color: #e6341d; }

.clients-section {
  padding: 2rem;
  overflow: hidden;       /* hide the off-screen logos */
}

.clients-section h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.clients-carousel {
  display: flex;
  width: 100%;            /* full width of the container */
}

.track {
  display: flex;
  flex: 0 0 auto;         /* don’t shrink or grow */
  animation: scroll 20s linear infinite;
}

.track img {
  flex-shrink: 0;
  height: 80px;
  margin: 0 1rem;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}