body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: white;
}

/* ================= HEADER ================= */

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* ================= NAVBAR ================= */

.navbar,
.navbar-alt {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: clamp(8px, 2vw, 16px) clamp(16px, 5vw, 40px);
  flex-wrap: wrap;
}

/* Main navbar background */
.navbar {
  background: linear-gradient(
    -75deg,
    #377a93 0%,
    #377a93 33%,
    white 33%,
    white 66%,
    #70a349 66%,
    #70a349 100%
  );
}

/* Alternate navbar */
.navbar-alt {
  background-color: white;
  background-image:
    linear-gradient(75deg, #377a93 0%, #377a93 33%, #f9f9f9 33%, #f9f9f9 66%, transparent 66%),
    linear-gradient(-75deg, #70a349 0%, #70a349 33%, #f9f9f9 33%, #f9f9f9 66%, transparent 66%);
  background-repeat: no-repeat, no-repeat;
  background-size: 50vw 100%, 50vw 100%;
  background-position: left top, right top;
}

/* Nav sections */
.nav-left,
.nav-right {
  display: flex;
  gap: clamp(16px, 6vw, 60px);
  flex-wrap: wrap;
}

/* Nav links */
.nav-left a,
.nav-right a {
  text-decoration: none;
  color: #f9f9f9;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: clamp(0.9rem, 1vw, 1rem);
  transition: color 0.3s ease;
}

.nav-left a:hover,
.nav-right a:hover {
  color: black;
}

/* Branding */
.branding {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 2vw, 12px);
  text-align: center;
  min-width: 0;
}

.branding img {
  width: clamp(50px, 8vw, 70px);
  height: auto;
  cursor: pointer;
}

/* Header text */
.header-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-text h1 {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  margin: 3px 0 0;
  color: #377a93;
}

.header-text h2 {
  font-size: clamp(0.85rem, 1.2vw, 0.95rem);
  margin: 0;
  color: #70a349;
}

.header-text p {
  font-size: clamp(0.75rem, 1vw, 0.8rem);
  color: black;
  margin: 4px 0 0;
  text-align: center;
}

/* Mobile navbar */
@media (max-width: 768px) {
  .navbar,
  .navbar-alt {
    flex-direction: column;
    gap: 12px;
    background: linear-gradient(
      to bottom,
      #377a93 0%,
      #ffffff 50%,
      #70a349 100%
    );
  }

  .nav-left,
  .nav-right {
    justify-content: center;
  }

  .nav-left a,
  .nav-right a {
    color: #222;
  }
}

/* ================= FOOTER ================= */

.site-footer {
  background-color: #ffffff;
  color: #333;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: clamp(40px, 6vw, 60px) clamp(20px, 5vw, 40px) 30px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: clamp(30px, 5vw, 60px);
  align-items: start;
}

/* Logo section */
.footer-left {
  display: flex;
  justify-content: center;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(16px, 4vw, 25px);
}

.footer-logo {
  width: clamp(140px, 20vw, 180px);
  flex-shrink: 0;
}

.footer-left h3 {
  color: #377a93;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  line-height: 1;
  margin: 0;
  text-align: center;
}

.footer-left .accent-text {
  color: #70a349;
  display: block;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-top: 5px;
  text-align: center;
}

.footer-left p {
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  line-height: 1.6;
  margin-top: 15px;
  color: #555;
  text-align: center;
  white-space: normal;
}

/* Footer columns */
.footer-column {
  text-align: left;
  align-self: start;
}

.footer-column h4 {
  color: #1a5276;
  margin-bottom: 25px;
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  position: relative;
  padding-bottom: 12px;
  font-weight: 600;
  width: fit-content; /* restores underline behavior */
}

.footer-column h4:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #377a93;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  text-decoration: none;
  color: #555;
  font-size: 1.05rem; /* restored */
  font-weight: 500;   /* restored */
  transition: all 0.3s ease;
}

.footer-column a:hover {
  color: #3498db;
}

/* Contact items */
.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 18px;
  color: #555;
  line-height: 1.6;
  font-size: 1.05rem;
}

.contact-item i {
  margin-right: 12px;
  color: #70a349;
  width: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background-color: #f8f9fa;
  border-radius: 50%;
  color: #1a5276;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
  font-size: 1.1rem;
}

.footer-socials a:hover {
  background-color: #3498db;
  color: white;
  transform: translateY(-3px);
}

/* Footer bottom */
.footer-bottom {
  background-color: #1a5276;
  color: white;
  text-align: center;
  padding: clamp(16px, 3vw, 25px);
  margin-top: 20px;
}

.footer-bottom p {
  max-width: 1400px;
  margin: 0 auto;
  font-size: clamp(0.9rem, 1.2vw, 1rem);
}


    /* Hero Section - Home Page */
.hero {
  position: relative;
  height: 91vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('Transport.jpeg') no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 0 15px;
  box-sizing: border-box;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 15px 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  animation: fadeInDown 2s ease-out;
  line-height: 1.2;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.hero p {
  font-size: clamp(1rem, 3vw, 1.3rem);
  margin: 10px 0 20px 0;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  animation: fadeInUp 2s ease-out;
  max-width: 90%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Prevent overflow */
.hero > * {
  max-width: 100%;
  box-sizing: border-box;
}

/* Mobile small devices */
@media screen and (max-width: 375px) {
  .hero {
    height: calc(100vh - 50px);
    min-height: 560px;
    padding: 15px 10px;
  }
  
  .hero h1 {
    font-size: clamp(1.5rem, 5vw, 1.8rem);
    margin-bottom: 10px;
    padding: 0 5px;
  }
  
  .hero p {
    font-size: clamp(0.9rem, 3.5vw, 1rem);
    margin: 8px 0 15px 0;
    padding: 0 10px;
  }
}

/* Mobile (general) */
@media screen and (max-width: 767px) {
  .hero {
    height: calc(100vh - 60px);
    min-height: 500px;
    max-height: 667px;
    padding: 20px 15px;
    flex-direction: column;
    justify-content: center;
    background-attachment: scroll;
  }
  
  .hero h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    line-height: 1.3;
    margin-bottom: 15px;
    padding: 0 10px;
  }
  
  .hero p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    line-height: 1.5;
    margin: 10px 0 20px 0;
    padding: 0 15px;
  }
}

/* Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero {
    height: 85vh;
  }
  
  .hero h1 {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
  }
  
  .hero p {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    max-width: 90%;
    margin: 15px auto;
  }
}

/* 1366x768 */
@media screen and (width: 1366px) and (height: 768px) {
  .hero {
    height: 85vh;
  }
  
  .hero h1 {
    font-size: 2.7rem;
  }
  
  .hero p {
    font-size: 1.25rem;
    max-width: 80%;
  }
}

/* Very tall mobile devices */
@media screen and (max-width: 767px) and (min-height: 800px) {
  .hero {
    height: 90vh;
    justify-content: flex-start;
    padding-top: 100px;
  }
}

/* Mobile landscape */
@media screen and (max-width: 900px) and (orientation: landscape) {
  .hero {
    height: 100vh;
    padding: 10px 20px;
    justify-content: center;
  }
  
  .hero h1 {
    font-size: clamp(1.5rem, 4vw, 2rem);
    margin-bottom: 5px;
  }
  
  .hero p {
    font-size: clamp(0.9rem, 2.5vw, 1.1rem);
    margin: 5px 0 10px 0;
  }
}

 /* Explore Our Services Button */

.btn-primary {
  background: #377a93;
  color: white;
  border: none;
  padding: clamp(10px, 1.5vw, 16px) clamp(20px, 3vw, 24px); /* fluid vertical & horizontal padding */
  font-size: clamp(0.9rem, 1.2vw, 1rem); /* fluid font scaling */
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
  white-space: nowrap; /* prevent wrapping if possible */
}

.btn-primary:hover {
  transform: scale(1.05);
  background: #70a349;
}


/* Why Choose Us Section */

/* =================== WHY CHOOSE US =================== */
.why-choose-us {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #F5F5F5;
  box-sizing: border-box;
  flex-direction: column; /* mobile-first */
}

/* Center text */
.why-text {
  text-align: center;
  z-index: 10;
  max-width: 350px;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.01);
}

/* Text */
.why-text h1 {
  font-size: clamp(1.6rem, 2.5vw, 2.5rem);
  color: #70a349;
  margin-bottom: 20px;
}

.why-text p {
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: #333;
  line-height: 1.6;
}

/* Pentagon circles */
.choose-icons.pentagon {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 900px;
  position: relative;
  gap: 20px;
  margin-top: 30px; /* spacing under text for mobile */
}

/* Circles styling */
.choose-icons.pentagon .circle {
  width: clamp(90px, 12vw, 140px);
  height: clamp(90px, 12vw, 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  line-height: 1.2;
  font-weight: 600;
  color: white;
  background: #377a93;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease-out;
  word-break: break-word;
  white-space: normal;
}

.choose-icons.pentagon .circle:hover {
  transform: scale(1.1);
}

/* ---------- Desktop Layout (Pentagon) ---------- */
@media (min-width: 1025px) {
  .why-choose-us {
    flex-direction: column;
    min-height: 100vh;
  }

  .why-text {
    position: absolute;
    top: 42%; /* moved up slightly to avoid overlapping bottom circles */
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 350px;
    padding: 40px;
  }

  .choose-icons.pentagon {
    position: relative;
    width: 900px;
    height: 600px;
    margin-top: 0;
  }

  .choose-icons.pentagon .circle {
    position: absolute;
  }

  /* Absolute pentagon positions */
  .c1 { top: 2%; left: 41%; }
  .c2 { top: 27%; left: 10%; }
  .c3 { top: 27%; right: 10%; }
  .c4 { bottom: 15%; left: 25%; }
  .c5 { bottom: 15%; right: 25%; }
}

/* ---------- Tablet Layout (Semi-circle around text) ---------- */
@media (min-width: 601px) and (max-width: 1024px) {
  .why-choose-us {
    height: auto;
    padding: 30px;
    flex-direction: column;
  }

  .why-text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    max-width: 80%;
    margin-bottom: 30px;
  }

  .choose-icons.pentagon {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: auto;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
  }

  .choose-icons.pentagon .circle {
    position: relative; /* remove absolute for flex */
    width: clamp(100px, 15vw, 130px);
    height: clamp(100px, 15vw, 130px);
  }
}

/* ---------- Mobile Layout (Stacked below text) ---------- */
@media (max-width: 600px) {
  .why-choose-us {
    flex-direction: column;
    padding: 30px 20px;
  }

  .why-text {
    margin-bottom: 30px;
    padding: 25px;
  }

  .choose-icons.pentagon {
    max-width: 400px;
    gap: 15px;
    flex-direction: column;
  }

  .choose-icons.pentagon .circle {
    width: clamp(90px, 20vw, 120px);
    height: clamp(90px, 20vw, 120px);
  }
}

/* ---------- Very small phones ---------- */
@media (max-width: 375px) {
  .choose-icons.pentagon {
    max-width: 350px;
    gap: 12px;
  }

  .choose-icons.pentagon .circle {
    width: clamp(80px, 18vw, 90px);
    height: clamp(80px, 18vw, 90px);
    font-size: clamp(0.75rem, 1.5vw, 0.8rem);
  }

  .why-text {
    padding: 20px;
    margin-bottom: 15px;
  }
}

/* ---------- Tiny phones <= 320px ---------- */
@media (max-width: 320px) {
  .choose-icons.pentagon .circle {
    width: 75px;
    height: 75px;
    font-size: 0.7rem;
  }

  .why-text {
    padding: 15px;
  }
}


/* Alternative section on home page */

    /* =================== FREIGHT SOLUTIONS =================== */
.freight-solutions-section {
    display: flex;
    height: 90vh;
    margin: 40px 0;
    border-radius: 8px;
    overflow: hidden;
    flex-wrap: wrap; /* allows content to wrap on smaller screens */
}

/* Image container */
.freight-image-container {
    flex: 0 0 75%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freight-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.freight-image-container:hover img {
    transform: scale(1.03);
}

/* Content container */
.freight-content-container {
    flex: 1;
    max-width: 25%;
    background-color: #fff;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 110px;
    margin-right: 40px;
    box-sizing: border-box;
}

.freight-content-container h2 {
    color: #70a349;
    font-size: clamp(1.5rem, 2.2vw, 28px);
    margin-bottom: 15px;
    line-height: 1.2;
}

.freight-content-container p {
    margin-bottom: 25px;
    color: #333;
    font-size: clamp(0.9rem, 1.2vw, 16px);
    text-align: justify;
}

.freight-btn {
    display: inline-block;
    background: #377a93;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: clamp(0.9rem, 1.2vw, 1rem);
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
}

.freight-btn:hover {
    transform: scale(1.05);
    background: #70a349;
}

/* =================== RESPONSIVE =================== */

/* Tablet: stack vertically, content above image */
@media (max-width: 1024px) {
    .freight-solutions-section {
        flex-direction: column-reverse;
        height: auto;
    }

    .freight-image-container,
    .freight-content-container {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .freight-image-container {
        height: 350px;
        margin-bottom: 20px;
    }

    .freight-content-container {
        padding: 30px 20px;
        margin-bottom: 40px;
        margin-right: 0;
    }
}

/* Mobile: smaller height for image, readable text */
@media (max-width: 600px) {
    .freight-image-container {
        height: 250px;
    }

    .freight-content-container h2 {
        font-size: clamp(1.3rem, 4vw, 1.8rem);
    }

    .freight-content-container p {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
    }

    .freight-btn {
        font-size: clamp(0.9rem, 3.5vw, 1rem);
        padding: 10px 20px;
    }
}

/* Tiny phones: very small images, stacked content */
@media (max-width: 375px) {
    .freight-image-container {
        height: 200px;
    }

    .freight-content-container {
        padding: 20px 15px;
        margin-bottom: 30px;
    }

    .freight-content-container h2 {
        font-size: clamp(1.2rem, 4vw, 1.5rem);
    }

    .freight-content-container p {
        font-size: clamp(0.8rem, 3.5vw, 0.95rem);
    }

    .freight-btn {
        font-size: clamp(0.8rem, 3vw, 0.95rem);
        padding: 8px 18px;
    }
}


/* About Us Page */

/* =================== HERO ABOUT =================== */
.hero-about {
  background: url('AboutHero.webp') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  overflow: hidden;
  box-sizing: border-box;
}

.hero-about h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* fluid font scaling */
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
  margin-bottom: 20px;
}

.hero-about .word {
  display: inline-block;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.7s ease-out;
  margin-right: 10px;
}

.hero-about .word.show {
  opacity: 1;
  transform: translateX(0);
}

/* =================== ABOUT SECTION =================== */
.about {
  max-width: 1000px;
  margin: 60px auto;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.about h1 {
  font-size: clamp(2rem, 4vw, 2.5rem);
  color: #377a93;
  margin-bottom: 20px;
}

.about p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.about .tagline {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: #70a349;
  font-weight: 600;
  margin-top: 20px;
}

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
  .hero-about {
    height: 80vh;
    padding: 15px;
  }

  .hero-about h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .about h1 {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
  }

  .about p,
  .about .tagline {
    font-size: clamp(0.9rem, 3vw, 1.1rem);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero-about {
    height: 70vh;
    padding: 15px 10px;
  }

  .hero-about h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  .about {
    margin: 40px 15px;
  }

  .about h1 {
    font-size: clamp(1.5rem, 6vw, 1.8rem);
  }

  .about p,
  .about .tagline {
    font-size: clamp(0.85rem, 4vw, 1rem);
  }
}

/* Small mobile / iPhone SE */
@media (max-width: 375px) {
  .hero-about {
    height: 60vh;
    padding: 10px;
  }

  .hero-about h1 {
    font-size: clamp(1.2rem, 7vw, 1.6rem);
  }

  .about {
    margin: 30px 10px;
  }

  .about h1 {
    font-size: clamp(1.2rem, 6vw, 1.5rem);
  }

  .about p,
  .about .tagline {
    font-size: clamp(0.8rem, 4vw, 0.95rem);
  }
}


/* Mission, Vision, Values Section */
/* Flip Card Grid */
.mvv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1100px;
  width: 90%;
  margin: 40px auto;
  padding: 20px;
  padding-bottom: 70px;
}

/* Flip Card Container */
.flip-card {
  width: 100%;
  height: 320px;
  perspective: 1000px;
}

/* Flip Card Inner */
.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

/* Flip on hover */
@media (hover: hover) and (pointer: fine) {
  .flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
  }
}

/* Front and Back of Card */
.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 15px;
  backface-visibility: hidden;
  overflow: hidden;
  top: 0;
  left: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Front Side */
.flip-card-front {
  background: white;
  display: flex;
  flex-direction: column;
  padding: 15px;
  box-sizing: border-box;
}

/* Image now takes controlled space */
.flip-card-front img {
  width: 100%;
  height: 70%;
  object-fit: cover;
  border-radius: 10px;
}

/* Heading stays stable */
.flip-card-front h2 {
  margin-top: auto;
  text-align: center;
  color: #377a93;
}

/* Back Side */
.flip-card-back {
  background: #377a93;
  color: white;
  transform: rotateY(180deg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
  box-sizing: border-box;
  border-radius: 15px;
}

.flip-card-back ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.flip-card-back ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
}

.flip-card-back ul li::before {
  content: "✔";
  color: #70a349;
  position: absolute;
  left: 0;
}

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
  .mvv {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 15px;
    padding: 15px;
  }

  .flip-card {
    height: 280px;
    max-width: 250px;
  }

  .flip-card-front img {
    height: 65%;
  }

  .flip-card-front h2 {
    font-size: 1.3rem;
  }

  .flip-card-back ul li {
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .mvv {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
    padding: 10px;
  }

  .flip-card {
    height: 260px;
  }

  .flip-card-front img {
    height: 60%;
  }

  .flip-card-front h2 {
    font-size: 1.2rem;
  }

  .flip-card-back ul li {
    font-size: 0.9rem;
  }
}

/* Small Mobile */
@media (max-width: 375px) {
  .mvv {
    grid-template-columns: 1fr;
    gap: 10px;
    width: 95%;
    margin: 20px auto;
  }

  .flip-card {
    height: 240px;
  }

  .flip-card-front img {
    height: 55%;
  }

  .flip-card-front h2 {
    font-size: 1.1rem;
  }

  .flip-card-back ul li {
    font-size: 0.85rem;
  }
}

/* Tiny phones */
@media (max-width: 320px) {
  .flip-card {
    height: 220px;
  }

  .flip-card-front img {
    height: 50%;
  }

  .flip-card-front h2 {
    font-size: 1rem;
  }

  .flip-card-back ul li {
    font-size: 0.8rem;
  }
}




/* Services Page */
.services-section {
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  min-height: 100vh;
  background: whitesmoke;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.services-section h1 {
  color: #377a93;
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 10px;
}

.services-section p {
  margin-bottom: 30px;
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
  width: 1300px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  cursor: pointer;
  height: 200px; /* Reduced height */
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  background: #377a93;
}

.service-card img {
  width: 100%;
  height: 140px; /* Reduced image height */
  object-fit: cover;
}

.service-card h3 {
  color: #377a93;
  font-size: 1rem;
  padding: 12px 10px;
  margin: 0;
}

.service-card:hover h3 {
  color: white;
}

/* Responsive for tablets */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 700px;
  }
  
  .service-card {
    height: 180px;
  }
  
  .service-card img {
    height: 120px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .services-section {
    padding: 15px;
    justify-content: flex-start;
    padding-top: 40px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    max-width: 400px;
  }
  
  .service-card {
    height: 160px;
  }
  
  .service-card img {
    height: 110px;
  }
  
  .service-card h3 {
    font-size: 0.9rem;
    padding: 10px 8px;
  }
}

/* Extra small screens */
@media (max-width: 400px) {
  .services-grid {
    gap: 12px;
  }
  
  .service-card {
    height: 150px;
  }
  
  .service-card img {
    height: 100px;
  }
}

.services-section h2 {     /* Home Page Service Heading */
    color: #377a93;
    font-size: 2.5rem;
}



/* Partners Page */

.partners-section {
  width: 1100px;
  margin: 60px auto;
  text-align: center;
}

.partners-section h1 {
  color: #377a93;
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.partners-section p.description {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 40px;
  line-height: 1.6;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  height: 80vh;
  align-content: start; /* push content to top */
  padding-top: 60px;
}

.partner-card {
  background: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 180px; /* fixed height desktop */
}

.partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.partner-card img {
  max-width: 180px;
  max-height: 100px;
  object-fit: contain;
}

/* =================== CTA Section =================== */

.partners-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100vw;
  height: 100vh;
  margin: 0 calc(-50vw + 50%);
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
}

.partners-cta h2 {
  font-size: 3rem;
}

.partners-cta button {
  display: inline-block;
  color: white;
  padding: 12px 25px;
  font-size: 1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  border: none;
  cursor: pointer;
  margin-top: 30px;
  transition: transform 0.3s, background-color 0.3s;
  background: #377a93;
}

.partners-cta button:hover {
  transform: scale(1.05);
  background: #70a349;
}

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
  .partners-section {
    width: 90%;
    margin: 40px auto;
  }

  .partners-grid {
    gap: 20px;
    height: auto; /* let content grow naturally */
    padding-top: 40px;
  }

  .partner-card {
    height: 160px;
  }

  .partner-card img {
    max-width: 140px;
    max-height: 80px;
  }

  .partners-cta h2 {
    font-size: 2.5rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .partners-section {
    width: 95%;
    margin: 30px auto;
  }

  .partners-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    padding-top: 30px;
  }

  .partner-card {
    height: 140px;
    padding: 15px;
  }

  .partner-card img {
    max-width: 120px;
    max-height: 70px;
  }

  .partners-cta h2 {
    font-size: 2rem;
    padding: 0 20px;
  }

  .partners-cta button {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .partners-grid {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 20px;
  }

  .partner-card {
    height: 120px;
  }

  .partner-card img {
    max-width: 100px;
    max-height: 60px;
  }

  .partners-cta h2 {
    font-size: 1.7rem;
  }

  .partners-cta button {
    padding: 8px 18px;
    font-size: 0.9rem;
  }
}

/* Tiny phones <= 375px */
@media (max-width: 375px) {
  .partner-card {
    height: 110px;
    padding: 10px;
  }

  .partner-card img {
    max-width: 90px;
    max-height: 55px;
  }

  .partners-cta h2 {
    font-size: 1.5rem;
  }

  .partners-cta button {
    padding: 7px 15px;
    font-size: 0.85rem;
  }
}


/* Contact Page */

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  padding: 60px;
  box-sizing: border-box;
}

/* Contact Info & Form */
.contact-info, .contact-form {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
  box-sizing: border-box;
}

/* Contact Info */
.contact-info h1 {
  color: #377a93;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
}

.contact-info a {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: #333;
  text-decoration: none;
  display: inline-block;
}

.contact-info a:hover {
  color: #70a349;
}

.contact-info i {
  color: #70a349;
  margin-right: 10px;
}

/* Contact Form */
.contact-form h1 {
  color: #377a93;
  margin-bottom: 20px;
}

.contact-form input, 
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
  height: 150px;
}

.contact-form button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
}

.contact-form button:hover {
  transform: scale(1.05);
  background: #70a349;
}

/* Image Container */
.image-container {
  margin-top: 30px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.image-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
  .contact-container {
    grid-template-columns: 1fr;
    padding: 40px 30px;
    gap: 30px;
  }

  .contact-form, .contact-info {
    padding: 25px;
  }

  .contact-info h1, .contact-form h1 {
    font-size: 2rem;
  }

  .contact-info p, .contact-info a {
    font-size: 1rem;
  }

  .contact-form input, .contact-form textarea {
    font-size: 0.95rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .contact-container {
    padding: 30px 20px;
    gap: 25px;
  }

  .contact-info h1, .contact-form h1 {
    font-size: 1.8rem;
  }

  .contact-info p, .contact-info a {
    font-size: 0.95rem;
  }

  .contact-form input, .contact-form textarea {
    font-size: 0.9rem;
    padding: 10px;
  }

  .contact-form button {
    font-size: 0.9rem;
    padding: 10px 18px;
  }

  .image-container {
    margin-top: 20px;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .contact-container {
    padding: 20px 15px;
    gap: 20px;
  }

  .contact-info h1, .contact-form h1 {
    font-size: 1.6rem;
  }

  .contact-info p, .contact-info a {
    font-size: 0.9rem;
  }

  .contact-form input, .contact-form textarea {
    font-size: 0.85rem;
    padding: 8px;
  }

  .contact-form button {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}

/* Tiny Phones <= 375px */
@media (max-width: 375px) {
  .contact-container {
    padding: 15px 10px;
    gap: 15px;
  }

  .contact-info h1, .contact-form h1 {
    font-size: 1.5rem;
  }

  .contact-info p, .contact-info a {
    font-size: 0.85rem;
  }

  .contact-form input, .contact-form textarea {
    font-size: 0.8rem;
    padding: 7px;
  }

  .contact-form button {
    font-size: 0.8rem;
    padding: 7px 14px;
  }
}



/* Freight and Transport Page */

.service-hero-freight {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('Freight And Transport Hero.webp') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 20px;
  box-sizing: border-box;
}

.service-hero-freight h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}

.service-hero-freight p {
  font-size: 1.2rem;
  max-width: 800px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  line-height: 1.5;
}

/* Service Content Wrapper */
.service-content {
  max-width: 1100px;
  margin: 40px auto;
  padding: 0 20px;
  background: white;
  box-sizing: border-box;
}

/* Service Sections */
.service-section {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-bottom: 80px;
  flex-wrap: nowrap;
  padding: 0 20px;
  border-radius: 2px;
  position: relative;
  height: 80vh;
  box-sizing: border-box;
}

/* Alternate background bands */
.service-section:nth-of-type(odd) {
  background: #ffffff;
}
.service-section:nth-of-type(even) {
  background: white;
  flex-direction: row-reverse;
}

/* Text area */
.service-text {
  flex: 1;
  min-width: 280px;
}
.service-text h2 {
  color: #377a93;
  font-size: 2rem;
  margin-bottom: 15px;
  position: relative;
}
.service-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #377a93;
  margin-top: 8px;
  border-radius: 2px;
}
.service-text p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

/* Images */
.service-section img {
  flex: 1;
  max-width: 500px;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-section img:hover {
  transform: scale(1.05);
}

/* Service Buttons */
.service-text button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 15px;
  display: inline-block;
}
.service-text button:hover {
  transform: scale(1.05);
  background: #2c5f72;
}

/* CTA Section */
.cta-section {
  text-align: center;
  margin: 100px 0;
}
.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #70a349;
}
.cta-section button {
  background: #377a93;
  color: white;
  border: none;
  padding: 16px 36px;
  font-size: 1.1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}
.cta-section button:hover {
  transform: scale(1.07);
  background: #2c5f72;
}

/* =================== RESPONSIVE =================== */

/* Tablet */
@media (max-width: 1024px) {
  .service-section {
    flex-direction: column !important;
    height: auto;
    gap: 30px;
    padding: 20px;
  }

  .service-section img {
    height: 300px;
    max-width: 90%;
  }

  .service-text h2 {
    font-size: 1.8rem;
  }

  .service-text p {
    font-size: 1rem;
  }

  .service-text button {
    padding: 10px 24px;
    font-size: 0.95rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .service-hero-freight h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }
  .service-hero-freight p {
    font-size: clamp(1rem, 4vw, 1.2rem);
    max-width: 90%;
  }

  .service-section {
    gap: 20px;
    padding: 15px;
  }

  .service-section img {
    height: 250px;
  }

  .service-text h2 {
    font-size: 1.6rem;
  }

  .service-text p {
    font-size: 0.95rem;
  }

  .service-text button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* Small Mobile <= 480px */
@media (max-width: 480px) {
  .service-section img {
    height: 200px;
  }

  .service-text h2 {
    font-size: 1.5rem;
  }

  .service-text p {
    font-size: 0.9rem;
  }

  .service-text button {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
}

/* Tiny phones <= 375px */
@media (max-width: 375px) {
  .service-hero-freight h1 {
    font-size: 1.8rem;
  }

  .service-hero-freight p {
    font-size: 0.95rem;
  }

  .service-section img {
    height: 180px;
  }

  .service-text h2 {
    font-size: 1.4rem;
  }

  .service-text p {
    font-size: 0.85rem;
  }

  .service-text button {
    padding: 7px 14px;
    font-size: 0.8rem;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section button {
    padding: 12px 28px;
    font-size: 1rem;
  }
}



/* WHY US SECTION - FULLY RESPONSIVE FIXED */
.why-us-section {
  padding: 60px 15px;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* allow cards to shrink */
  gap: 20px;
  margin: 0 auto;
  width: 100%;
  max-width: 1100px; /* max width for large screens */
  padding: 0 15px; /* padding so cards don’t touch edges */
  box-sizing: border-box;
}

.why-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 180px;
  height: auto; /* grow with content */
  box-sizing: border-box;
}

.why-card h3 {
  color: #377a93;
  margin-bottom: 12px;
  font-size: 1.3rem;
  word-wrap: break-word;
}

/* Tablet */
@media (max-width: 1024px) {
  .why-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .why-card h3 {
    font-size: 1.2rem;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .why-grid {
    grid-template-columns: 1fr; /* stack vertically */
    gap: 15px;
  }
  .why-card {
    padding: 20px;
  }
  .why-card h3 {
    font-size: 1.1rem;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .why-card h3 {
    font-size: 1rem;
  }
}

/* Tiny phones <= 375px */
@media (max-width: 375px) {
  .why-card h3 {
    font-size: 0.95rem;
  }
}



/* Abnormal Load Hero */

.abnormal-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('abnormal-load-hero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .abnormal-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .abnormal-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    



/* Abnormal Load Services list */
.abnormal-services {
  max-width: 900px;
  margin: auto;
  list-style: none;
  padding: 0;
}
.abnormal-services li {
  font-size: 1.1rem;
  margin: 18px 0;
  padding-left: 35px;
  position: relative;
  line-height: 1.6;
}
.abnormal-services li::before {
  content: '';
}

/* Hover effect for interactivity */
.abnormal-services li:hover {
  color: #377a93;
  transform: scale(1.02);
  transition: all 0.3s ease;
}


    /* Warehousing & On-Site Support Page */

.service-hero-warehousing {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('WarehousingHero.webp') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-warehousing h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-warehousing p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Security and Access Management Page */

    .service-hero-security {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('SecurityHero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-security h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-security p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* IT and Operational Systems Page*/

        .service-hero-IT {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('ITandOperationalSystems.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-IT h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-IT p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }



    /* Consumables and Equipment Page */

    .service-hero-consumables {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('WarehouseConsumablesHero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-consumables h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-consumables p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Consultancy & Compliance Page */

    .service-hero-consultancy {
     background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('scott-graham-5fNmWej4tAA-unsplash.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-consultancy h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-consultancy p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Warehousing & Inventory Management Page */

        .service-hero-warehousing-space {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('xu-guo-NQZbP9UHxoc-unsplash.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-warehousing-space h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-warehousing-space p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Customs Consulting Page */

        .service-hero-customs-consulting {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('customsconsultinghero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .service-hero-customs-consulting h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .service-hero-customs-consulting p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }



    /* Custom Fabrication Page */

section[class^="customfabrication-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.customfabrication-hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('customfabricationhero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
}
.customfabrication-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .customfabrication-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Custom Fabrication Intro Section */
.customfabrication-intro {
  background: #ebebeb;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
}

.customfabrication-intro-text {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
  color: #333;
  font-size: 1.4rem;
}

/* Custom Fabrication Process Section */
.customfabrication-process {
  background: #f8f9fb;
  text-align: center;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}

.customfabrication-process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}

.customfabrication-step {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.customfabrication-step:hover {
  transform: translateY(-8px);
}

.customfabrication-step img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}


/* On-Site */
.customfabrication-onsite {
  background: #eef3fa;
}
.customfabrication-onsite-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}
.customfabrication-text {
  flex: 1 1 400px;
}

.customfabrication-image {
  flex: 1 1 400px;
}
.customfabrication-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.customfabrication-onsite h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #70a349;
}

/* Transform Section */
.customfabrication-transform {
  background: white;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 0 40px;
  box-sizing: border-box;
}

.customfabrication-transform-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 40px;
}

.customfabrication-transform-image {
  flex: 1 1 500px;
  position: relative;
  order: 1; /* image first */
}

.customfabrication-transform-text {
  flex: 1 1 500px;
  order: 2; /* text second */
}

.customfabrication-transform-text h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #377a93;
}

.customfabrication-transform-text p {
  font-size: 1.1rem;
  line-height: 1.6;
}

.customfabrication-transform-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 12px;
  
  transition: transform 0.5s ease, box-shadow 0.3s ease;
}

/* Subtle overlay + hover effects */
.customfabrication-transform-image::after {
  content: "";
  position: absolute;
  inset: 0;
  
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.customfabrication-transform-image:hover img {
  transform: scale(1.05);
  
}

.customfabrication-transform-image:hover::after {
  opacity: 1;
}

/* Responsive: stacks on small screens */
@media (max-width: 900px) {
  .customfabrication-transform-content {
    flex-direction: column;
  }

  .customfabrication-transform-image {
    order: 1;
  }

  .customfabrication-transform-text {
    order: 2;
    text-align: center;
  }

  .customfabrication-transform-image img {
    height: 300px;
  }
}


/* Why Section */
.customfabrication-why {
  background: #f9fafc;
  text-align: center;
}

.customfabrication-why h1{
  font-size: 2rem;
  margin-bottom: 20px;
  color: #70a349;
}

.customfabrication-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
}
.customfabrication-why-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.customfabrication-why-card:hover {
  transform: translateY(-5px);
}

/* CTA */
.customfabrication-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
    justify-content: center; 
  align-items: center;
  flex-direction: column; 
}

.customfabrication-cta h2{
  font-size: 2.8rem;
}

.customfabrication-cta button {
  display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: #377a93;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}
.customfabrication-cta button:hover {
  transform: scale(1.05);
  color: #377a93;
  background: white;
}

/*  Rugged IT Equipment Page  */

section[class^="ruggedit-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.ruggedit-hero {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('RuggedEquipmentHero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
}
.ruggedit-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .ruggedit-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Overview */
.ruggedit-overview {
  background: #f8f9fb;
  text-align: center;
}
.ruggedit-overview-content {
  max-width: 900px;
  margin: 0 auto;
}
.ruggedit-overview h2 {
  margin-bottom: 20px;
  color: #70a349;
  font-size: 2rem;
}

/* Advantages */
.ruggedit-advantages {
  background: white;
  text-align: center;
}

.ruggedit-advantages h2
{
  color: #377a93;
  font-size: 2rem;
}

.ruggedit-adv-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* Exactly 5 columns */
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: stretch;
}
.ruggedit-adv-card {
  background: #f3f6fc;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.ruggedit-adv-card:hover {
  transform: translateY(-8px);
}

/* Devices Section - Shared Styles */
.ruggedit-devices {
  background: #eef2f7;
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.ruggedit-devices h1 {
  color: #377a93;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: 35px;
}

.ruggedit-devices-bottom {
  background: #f4f7fb;
}

/* Better balanced grid */
.ruggedit-device-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  justify-content: center;
  gap: 20px;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

.ruggedit-device-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ruggedit-device-card:hover {
  transform: translateY(-6px);
}

.ruggedit-device-card img {
  width: 100%;
  height: 150px; /* Better image proportion */
  object-fit: contain; /* Changed to contain to avoid cropping */
  border-radius: 6px;
  margin-bottom: 12px;
  flex-shrink: 0;
  background: #f8f9fa; /* Add background for transparent images */
  padding: 10px;
}

.ruggedit-device-card h3 {
  color: #1a2c43;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.2;
  min-height: 2.4rem; /* Consistent title height */
}

.ruggedit-device-card ul {
  margin: 8px 0 0;
  padding-left: 18px;
  flex: 1; /* Take remaining space */
}

.ruggedit-device-card ul li {
  margin-bottom: 4px;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
  .ruggedit-devices {
    padding: 30px 15px;
  }
  
  .ruggedit-device-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 18px;
    max-width: 900px;
  }
  
  .ruggedit-device-card {
    padding: 18px;
  }
  
  .ruggedit-device-card img {
    height: 140px;
    padding: 8px;
  }
  
  .ruggedit-device-card h3 {
    font-size: 0.95rem;
    min-height: 2.2rem;
  }
  
  .ruggedit-device-card ul li {
    font-size: 0.8rem;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .ruggedit-devices {
    padding: 25px 12px;
    justify-content: flex-start;
    padding-top: 45px;
  }
  
  .ruggedit-device-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    max-width: 700px;
  }
  
  .ruggedit-device-card {
    padding: 16px;
  }
  
  .ruggedit-device-card img {
    height: 130px;
    padding: 6px;
  }
  
  .ruggedit-device-card h3 {
    font-size: 0.9rem;
    min-height: 2rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ruggedit-devices {
    padding: 20px 10px;
    padding-top: 35px;
  }
  
  .ruggedit-device-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 500px;
  }
  
  .ruggedit-device-card {
    padding: 14px;
  }
  
  .ruggedit-device-card img {
    height: 120px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .ruggedit-device-grid {
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 300px;
  }
  
  .ruggedit-device-card img {
    height: 140px;
  }
}

/* Extra adjustment for very short laptop screens */
@media (max-height: 700px) and (max-width: 1024px) {
  .ruggedit-devices {
    padding: 20px 12px;
  }
  
  .ruggedit-device-grid {
    gap: 12px;
  }
  
  .ruggedit-device-card img {
    height: 120px;
  }
  
  .ruggedit-device-card {
    padding: 14px;
  }
  
  .ruggedit-device-card h3 {
    min-height: auto;
  }
}


/* CTA */
.ruggedit-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  display: flex;
  flex-direction: column; /* stack h2 and button vertically */
  align-items: center;    /* center them horizontally */
  justify-content: center;
  text-align: center;
  padding: 60px 20px;    /* optional spacing */
}

.ruggedit-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}

.ruggedit-cta button {
  background: white;
  color: #377a93;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.ruggedit-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}


/* Services Page Hero */

.services-hero-main {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.4)), url('serviceshero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .services-hero-main h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .services-hero-main p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Partners Hero */

    .partners-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('PartnersHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .partners-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .partners-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Biometric Access Page */

/* ===== BIOMETRIC ACCESS CONTROL ===== */

section[class^="biometric-"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.biometric-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('biometricaccesshero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .biometric-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .biometric-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Intro */
.biometric-intro {
  background: #f9faf9;
}
.biometric-intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 40px;
}
.biometric-intro-text {
  flex: 1;
}
.biometric-intro-text h1 {
  color: #377a93;
  margin-bottom: 15px;
}
.biometric-intro-text p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.biometric-intro-image {
  flex: 1;
  text-align: center;
}
.biometric-intro-image img {
  width: 80%;
  height: 600px; /* adjust to desired height */
  object-fit: cover; /* keeps aspect ratio and crops if needed */
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(55, 122, 147, 0.2);
}


/* Advantages */
.biometric-advantages {
  background: white;
  text-align: center;
}
.biometric-advantages h1 {
  color: #377a93;
  margin-bottom: 50px;
}
.biometric-advantages-circles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.biometric-advantages-circles .row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: nowrap;
}

.biometric-circle {
  width: 180px;
  height: 180px;
  background: #377a93;
  color: white;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
  box-shadow: 0 6px 15px rgba(55, 122, 147, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.biometric-circle:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(55, 122, 147, 0.5);
}
.biometric-circle h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* How It Works */
.biometric-how {
  background: #f0f5f2;
  text-align: center;
}
.biometric-how h1 {
  color: #377a93;
  margin-bottom: 40px;
}
.biometric-flow {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  position: relative;
}
.biometric-step {
  width: 220px;
  text-align: center;
}
.biometric-step-circle {
  background: #70a349;
  color: white;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 15px;
  box-shadow: 0 4px 10px rgba(112, 163, 73, 0.3);
}
.biometric-connector {
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, #377a93, #70a349);
  min-width: 80px;
}

/* Types */

.biometric-types {
  background: linear-gradient(to right, #f8fbf9, #eef6f3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.biometric-types-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 50px;
}
.biometric-types-text {
  flex: 1;
}
.biometric-types-text h1 {
  color: #377a93;
  margin-bottom: 20px;
}
.biometric-types-text p {
  line-height: 1.6;
}
.biometric-types-list {
  flex: 1;
}
.biometric-types-list ul {
  list-style: none;
  padding: 0;
}
.biometric-types-list li {
  background: white;
  border-left: 5px solid #70a349;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(55, 122, 147, 0.15);
  transition: all 0.3s ease;
}
.biometric-types-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 12px rgba(55, 122, 147, 0.25);
}
@media (max-width: 900px) {
  .biometric-types-container {
    flex-direction: column;
    text-align: center;
  }
  .biometric-types-list li {
    text-align: left;
  }
}

/* Applications */
.biometric-applications {
  background: #fff;
}
.biometric-applications h1 {
  color: #377a93;
  margin-bottom: 40px;
}
.biometric-applications-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 40px;
}
.biometric-app-left {
  flex: 1;
}
.biometric-app-left ul {
  list-style: none;
  padding: 0;
}
.biometric-app-left li {
  background: #f2f7f5;
  margin-bottom: 15px;
  padding: 15px 20px;
  border-left: 5px solid #70a349;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.biometric-app-left li:hover {
  background: #e6f3e9;
  border-left: 5px solid #377a93;
}
.biometric-app-right {
  flex: 1;
  text-align: center;
}
.biometric-app-right img {
  width: 85%;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(55, 122, 147, 0.3);
}

/* CTA */
.biometric-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
}
.biometric-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.biometric-cta button {
  display: inline-block;
    color: #377a93;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.biometric-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .biometric-intro-content,
  .biometric-applications-content {
    flex-direction: column;
    text-align: center;
  }
  .biometric-flow {
    flex-direction: column;
  }
  .biometric-connector {
    display: none;
  }
}

/* ===== CLEARING & FORWARDING ===== */

section[class^="clearing-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.clearing-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('clearing-forwarding-hero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .clearing-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .clearing-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Intro */
.clearing-intro {
  background: #f8fbf9;
}
.clearing-intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  gap: 50px;
}
.clearing-intro-text {
  flex: 1;
  line-height: 1.7;
  color: #333;
}
.clearing-intro-visual {
  flex: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.clearing-circle {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #70a349, #377a93);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(55, 122, 147, 0.3);
}
.clearing-line {
  position: absolute;
  width: 4px;
  height: 100px;
  background: linear-gradient(to bottom, #377a93, #70a349);
  bottom: -100px;
  border-radius: 10px;
}

/* Intro Alternate */
.clearing-intro-alternate {
  background: #f8fbf9;
  padding: 60px 20px;
}

.clearing-intro-container-alternate {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

.clearing-intro-text-alternate {
  flex: 1;
  line-height: 1.7;
  color: #333;
}

.clearing-intro-visual-alternate {
  flex: 0.6;
  display: flex;
  justify-content: center;
  align-items: center;
}

.clearing-intro-image {
  width: 80%;
  max-width: 350px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(55, 122, 147, 0.3);
  object-fit: cover;
}


/* Services */
.clearing-services {
  background: white;
  color: #1a1a1a;
}
.clearing-services h1 {
  color: #377a93;
  margin-bottom: 30px;
}
.clearing-services ul {
  max-width: 900px;
  list-style: none;
  padding: 0;
  text-align: left;
}
.clearing-services li {
  margin-bottom: 14px;
  padding: 15px 20px;
  background: #f4f8f5;
  border-left: 5px solid #70a349;
  border-radius: 6px;
  box-shadow: 0 4px 10px rgba(55, 122, 147, 0.1);
  transition: all 0.3s ease;
}
.clearing-services li:hover {
  transform: translateX(6px);
  box-shadow: 0 6px 16px rgba(55, 122, 147, 0.2);
}

/* Why Choose Us */
.clearing-why {
  background: #f4f9f4;
  text-align: center;
}
.clearing-why h1 {
  color: #377a93;
  margin-bottom: 40px;
}
.clearing-why-flex {
  display: flex;
  flex-direction: column; /* stack rows vertically */
  align-items: center;
  gap: 40px; /* space between top and bottom row */
}

.clearing-why-flex .row {
  display: flex;
  justify-content: center;
  gap: 40px; /* space between cards in a row */
  flex-wrap: nowrap;
}

.clearing-why-item {
  width: 300px; /* adjust size as needed */
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: center;
}

.clearing-why-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(112, 163, 73, 0.25);
}
.clearing-why-item h3 {
  color: #70a349;
  margin-bottom: 10px;
}

/* CTA */
.clearing-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
}

.clearing-cta h2{
  font-size: 2.8rem;
}

.clearing-cta button {
  display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: #377a93;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}
.clearing-cta button:hover {
  transform: scale(1.05);
  color: #377a93;
  background: white;
}

/* Responsive */
@media (max-width: 900px) {
  .clearing-intro-container {
    flex-direction: column;
    text-align: center;
  }
  .clearing-why-flex {
    flex-direction: column;
    align-items: center;
  }
}

/* ===== ROAD TRANSPORT PAGE ===== */

section[class^="road-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  width: 100%;
}

/* ===== HERO ===== */
.road-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('road-transport-hero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .road-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .road-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* ===== INTRO ===== */
.road-intro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100%;
}
.road-intro-text {
  flex: 1;
  min-width: 280px;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}
.road-intro-text strong {
  color: #377a93;
}
.road-intro-image {
  flex: 1;
  min-width: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.road-intro-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 25px rgba(55,122,147,0.2);
  transition: transform 0.4s;
}
.road-intro-image img:hover {
  transform: scale(1.05);
}

/* ===== SERVICES ===== */
.road-features h2 {
  color: #377a93;
  margin-bottom: 40px;
  font-size: 2rem;
}
.road-services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  width: 100%;
}
.road-service-card {
  background: linear-gradient(135deg, #70a349, #377a93);
  color: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(55,122,147,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
  width: 260px;
  text-align: center;
  position: relative;
}
.road-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(55,122,147,0.3);
}

/* ===== WHY US ===== */
.road-why-us h2 {
  color: #377a93;
  margin-bottom: 50px;
  font-size: 2rem;
}
.road-why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  max-width: 1200px;
  width: 100%;
}
.road-why-panel {
  background: white;
  border-radius: 15px;
  padding: 25px;
  text-align: center;
  width: 260px;
  box-shadow: 0 6px 25px rgba(55,122,147,0.15);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.road-why-panel:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(55,122,147,0.25);
}
.road-why-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

/* ===== CTA ===== */
.road-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
}

.road-cta h2{
  font-size: 2.6rem;
}

.road-cta button {
  display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
}
.road-cta button:hover {
  transform: scale(1.05);
  background: #70a349;
}

/* ===== FLOATING ANIMATION ===== */
@keyframes float {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(10deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .road-intro-container {
    flex-direction: column;
    text-align: center;
  }
  .road-intro-image {
    margin-top: 20px;
  }
}

/* ===== ABNORMAL LOADS PAGE - NEW LAYOUT ===== */

section[class^="abnormal-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

/* ===== HERO (unchanged) ===== */
.abnormal-hero {
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('abnormal-load-hero.webp') no-repeat center/cover;
  text-align: center;
  color: white;
}
.abnormal-hero h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  text-shadow: 2px 2px 12px rgba(0,0,0,0.7);
}
.abnormal-hero p {
  font-size: 1.3rem;
  max-width: 700px;
  text-shadow: 1.5px 1.5px 10px rgba(0,0,0,0.5);
  text-align: center;
  margin: 0 auto;
}

/* ===== TIMELINE INTRO ===== */

.abnormal-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 900px;
  width: 100%;
}

.abnormal-timeline-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: linear-gradient(135deg, #377a93, #2c6580);
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(55, 122, 147, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.abnormal-timeline-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(55, 122, 147, 0.3);
}

.abnormal-timeline-number {
  font-size: 1.6rem;
  font-weight: 700;
  color: white;
  min-width: 50px;
  text-align: center;
  background: linear-gradient(135deg, #70a349, #5d8a3a);
  border-radius: 50%;
  height: 50px;
  line-height: 50px;
  box-shadow: 0 3px 8px rgba(112, 163, 73, 0.3);
  border: 2px solid white;
}

.abnormal-timeline-content {
  font-size: 1rem;
  line-height: 1.5;
  color: white;
  flex: 1;
  padding: 3px 0;
}

/* Responsive */
@media (max-width: 768px) {
  .abnormal-timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px;
    gap: 15px;
  }
  
  .abnormal-timeline-number {
    margin-bottom: 0;
  }
}

/* ===== SERVICES WITH FLOATING SHAPES ===== */
.abnormal-services-section h2 {
  color: #70a349;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2rem;
}
.abnormal-services-shapes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 700px; /* 3 circles per row */
  position: relative;
}

.service-shape {
  background: #377a93;
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  font-weight: 600;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(255,126,95,0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}
.service-shape:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(255,126,95,0.3);
}
.service-icon {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

/* subtle horizontal stagger for second row */
.service-shape:nth-child(4) { margin-left: -15px; }
.service-shape:nth-child(5) { margin-left: -10px; }
.service-shape:nth-child(6) { margin-left: -5px; }

/* ===== WHY US DIAGONAL PANELS ===== */
.abnormal-why {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.abnormal-why h2 {
  color: #377a93;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
}

.why-panels {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

.why-panel {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(55,122,147,0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.why-panel:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(55,122,147,0.25);
  color: #377a93;
  background-color: rgb(175, 223, 175);
}

.why-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  min-width: 40px;
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1024px) {
  .abnormal-why {
    padding: 30px 15px;
  }
  
  .why-panels {
    gap: 15px;
    max-width: 800px;
  }
  
  .why-panel {
    padding: 18px;
  }
  
  .why-icon {
    font-size: 1.3rem;
    min-width: 35px;
  }
}

@media (max-width: 768px) {
  .why-panel {
    padding: 15px;
    gap: 12px;
  }
  
  .why-icon {
    font-size: 1.2rem;
    min-width: 30px;
  }
}


/* ===== CTA (unchanged) ===== */
.abnormal-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.abnormal-cta h2{
  font-size: 3rem;
}

.abnormal-cta button {
  display: inline-block;
  color: white;
  padding: 12px 25px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s;
  text-align: center;
  border: none;
  cursor: pointer;
  width: fit-content;
  background: #377a93;
  font-size: 1rem;
  border-radius: 30px;
  margin-top: 30px;
  transition: transform 0.3s;
}
.abnormal-cta button:hover {
  transform: scale(1.05);
  background: #70a349;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .timeline-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .why-panel {
    flex-direction: column;
    text-align: center;
  }
  .service-shape {
    margin-left: 0 !important; /* remove stagger on mobile */
  }
}

/* ===== WAREHOUSING PAGE ===== */

/* Hero */
.ware-hero {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('WarehousespaceHero.webp') no-repeat center center/cover;
  color: white;
  text-align: center;
}
.ware-hero h1 { font-size: 3rem; margin-bottom: 10px; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); }
.ware-hero p { font-size: 1.2rem; text-shadow: 2px 2px 6px rgba(0,0,0,0.6); }

/* Intro */
.ware-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ware-intro-container {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #1a365d;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.ware-intro-container p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.ware-intro-container p:last-child {
    margin-bottom: 0;
}

.ware-intro-container strong {
    color: #1a365d;
    font-weight: 700;
}

/* ===== Services Timeline ===== */
.ware-services { height: 100vh; background: #ffffff; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 20px; }
.ware-services h1 { margin-bottom: 70px; color: #377a93; text-align: center; }
.ware-timeline { display: flex; justify-content: center; align-items: flex-start; flex-wrap: wrap; gap: 40px; max-width: 1200px; position: relative; }
.ware-step { display: flex; flex-direction: column; align-items: center; width: 200px; text-align: center; position: relative; }
.ware-step-icon { font-size: 2.5rem; background: #70a349; color: white; padding: 20px; border-radius: 50%; margin-bottom: 15px; transition: transform 0.3s; }
.ware-step:hover .ware-step-icon { transform: scale(1.2); }
.ware-step-content h3 { font-size: 1.2rem; margin-bottom: 10px; color: #377a93; }
.ware-step-content p { font-size: 0.95rem; line-height: 1.5; color: #333; }
/* Optional connecting line */
.ware-timeline::before { content: ''; position: absolute; top: 50%; left: 10%; right: 10%; height: 4px; background: linear-gradient(to right, #70a349, #377a93); z-index: -1; transform: translateY(-50%); }

/* ===== Why Partner Slide-In Hexagons ===== */
.ware-why { 
  min-height: 100vh; 
  background: #f4f9f4; 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  padding: 40px 20px; 
  box-sizing: border-box;
}

.ware-why h1 { 
  color: #377a93; 
  margin-bottom: 30px; 
  text-align: center; 
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.ware-why-grid { 
  display: grid; 
  grid-template-columns: repeat(5, 1fr); 
  justify-items: center; 
  align-items: start; /* Changed to start to prevent vertical stretching */
  gap: 20px;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
}

.ware-hex-large {
  background: linear-gradient(135deg, #377a93, #70a349);
  color: white;
  width: 200px;
  height: 200px;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease-out;
  position: relative;
}

.ware-hex-large.visible {
  opacity: 1;
  transform: translateX(0);
}

.ware-hex-icon { 
  font-size: 1.5rem; 
  margin-bottom: 8px; 
  flex-shrink: 0; /* Prevent icon from shrinking */
}

.ware-hex-text {
  font-size: 0.85rem;
  line-height: 1.3;
  overflow: hidden;
  max-height: 70px; /* Fixed max height for text */
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Tablet */
@media (max-width: 1200px) {
  .ware-why-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 800px;
  }
  
  .ware-hex-large {
    width: 180px;
    height: 180px;
  }
  
  .ware-hex-icon {
    font-size: 1.8rem;
  }
  
  .ware-hex-text {
    font-size: 0.8rem;
    max-height: 60px;
  }
}

/* Small tablets */
@media (max-width: 900px) {
  .ware-why {
    padding: 30px 15px;
  }
  
  .ware-why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 500px;
  }
  
  .ware-hex-large {
    width: 160px;
    height: 160px;
    padding: 12px;
  }
  
  .ware-hex-icon {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .ware-hex-text {
    font-size: 0.75rem;
    max-height: 55px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .ware-why {
    padding: 25px 10px;
    justify-content: flex-start;
    padding-top: 60px;
  }
  
  .ware-why-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 300px;
  }
  
  .ware-hex-large {
    width: 200px;
    height: 200px;
    padding: 15px;
  }
  
  .ware-hex-icon {
    font-size: 2rem;
  }
  
  .ware-hex-text {
    font-size: 0.85rem;
    max-height: 70px;
  }
}

/* Extra small mobile */
@media (max-width: 400px) {
  .ware-hex-large {
    width: 180px;
    height: 180px;
  }
  
  .ware-hex-icon {
    font-size: 1.8rem;
  }
  
  .ware-hex-text {
    font-size: 0.8rem;
    max-height: 60px;
  }
}


/* CTA */
.ware-cta { height: 100vh; background: linear-gradient(to right, #377a93, #70a349); color: white; text-align: center; display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 20px; }
.ware-cta button { color: white; padding: 12px 25px; border-radius: 30px; font-size: 1rem; border: none; cursor: pointer; transition: transform 0.3s; background: #377a93; }
.ware-cta button:hover { transform: scale(1.05); background: #70a349; }
.ware-cta h2{
  font-size: 3rem;
}

/* Responsive */
@media (max-width: 900px) {
  .ware-hexagon-grid, .ware-why-grid { flex-direction: column; align-items: center; }
}

/* ===== ON-SITE LABOUR PAGE===== */

/* ===== HERO ===== */
.onsite-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('onsitelaboursolutionshero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .onsite-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .onsite-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* ===== INTRO ===== */
.onsite-intro {
  padding: 80px 20px;
  background: #ffffff;
  position: relative;
    height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

.onsite-intro::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #2c5aa0, #4a7bc8);
}

.onsite-intro-container {
  max-width: 700px;
  margin: 0 auto;
}

.onsite-intro-content {
  text-align: center;
}

.onsite-intro-textgroup {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.onsite-intro-lead {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #2d3748;
  font-weight: 400;
  margin: 0;
}

.onsite-intro-divider {
  width: 60px;
  height: 2px;
  background: #e2e8f0;
  margin: 0 auto;
}

.onsite-intro-main {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #4a5568;
  margin: 0;
  font-weight: 300;
}

.onsite-intro-highlight {
  background: linear-gradient(120deg, #2c5aa0 0%, #4a7bc8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 600;
  padding: 2px 4px;
}

@media (max-width: 768px) {
  .onsite-intro {
    padding: 60px 20px;
  }
  
  .onsite-intro-lead {
    font-size: 1.1rem;
  }
  
  .onsite-intro-main {
    font-size: 1rem;
  }
}

/* ===== SKILLED WORKFORCE ===== */
.onsite-workforce {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #F5F5F5;
  gap: 40px;
  padding: 0 20px;
}
.onsite-workforce h1{
  font-size: 2.5rem;
  color: #70a349;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}
.onsite-workforce h2 {
  color: #377a93;
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.workforce-scroll {
  display: flex;
  overflow-x: auto;
  gap: 25px;
  padding: 20px 10px;
  justify-content: center; /* centered the cards */
}
.workforce-card {
  flex: 0 0 300px;
  background: #377a93;
  color: white;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}
.workforce-card:hover {
  transform: translateY(-10px);
}

/* ===== FLEXIBLE WORKFORCE ===== */
.onsite-flexible {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #eaf3e9;
  padding: 0 20px;
  gap: 30px;
}
.onsite-flexible h1{
  font-size: 2.5rem;
  color: #70a349;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}
.onsite-flexible h2 {
  color: #377a93;
  font-size: 2rem;
}
.timeline {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  counter-reset: step;
}
.timeline-step {
  background: #377a93;
  color: white;
  padding: 25px 30px;
  border-radius: 25px;
  max-width: 550px;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateX(-150px);
  transition: transform 0.7s ease-out, opacity 0.7s ease-out;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  font-size: 1.1rem;
}
.timeline-step::before {
  content: counter(step);
  counter-increment: step;
  background: #70a349;
  color: white;
  font-weight: 700;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.1rem;
}
.timeline-step.visible {
  transform: translateX(0);
  opacity: 1;
}

/* ===== BENEFITS ===== */
.onsite-benefits {
  height: 100vh;
  display: flex;
  flex-direction: column; /* stack h1 and counters */
  justify-content: center; /* center vertically */
  align-items: center;
  background: #fff;
  padding: 20px;
  text-align: center;
  gap: 40px; /* space between h1 and counters */
}

.onsite-benefits h1{
  font-size: 2.5rem;
  color: #70a349;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}

.onsite-benefits .counters-row {
  display: flex;
  justify-content: center;
  gap: 25px;
  flex-wrap: nowrap; /* ensure one row */
}

.onsite-benefits .counter {
  flex: 0 0 200px; /* fixed width */
  background: #377a93;
  color: white;
  padding: 30px;
  border-radius: 20px;
  font-size: 1.5rem;
}


/* ===== INDUSTRIES ===== */
.onsite-industries {
  height: 100vh;
  display: flex;
  flex-direction: column; /* stack heading + cards */
  justify-content: center;
  align-items: center;
  gap: 25px;
  background: #eaf3e9;
  padding: 20px;
  text-align: center;
}
.onsite-industries h1{
  font-size: 2.5rem;
  color: #377a93;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}
.onsite-industries .industry-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.onsite-industries .industry-card {
  background: #70a349;
  color: white;
  padding: 25px 30px;
  border-radius: 20px;
  min-width: 200px;
  flex: 0 0 200px;
  font-size: 1.1rem;
  transition: transform 0.3s ease;
  text-align: center;
}
.onsite-industries .industry-card:hover {
  transform: translateY(-10px);
}

/* ===== WHY UBUNTU ===== */
.onsite-why {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  text-align: center;
  gap: 25px;
  padding: 0 20px;
}
.onsite-why h1{
  font-size: 2.5rem;
  color: #377a93;
  text-align: center;
  margin-bottom: 25px;
  width: 100%;
}
.why-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 600px;
  opacity: 0;
  transform: translateX(150px);
  transition: all 0.7s ease-out;
}
.why-item.visible {
  transform: translateX(0);
  opacity: 1;
}
.why-item-icon {
  font-size: 2rem;
}

/* ===== CTA ===== */
.onsite-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 100vh;
}
.onsite-cta h2 {
  font-size: 2.8rem;
  margin-bottom: 15px;
}
.onsite-cta button {
  background: white;
  color: #377a93;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.onsite-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* ===== SCROLL ANIMATION ===== */
.timeline-step,
.why-item {
  will-change: transform, opacity;
}

/* ===== LABELS, PLACARDS & SIGNAGE ===== */

section[class^="labels-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  text-align: center;
  box-sizing: border-box;
}

/* Shared image styling */
.labels-image {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(55, 122, 147, 0.2);
  margin-top: 20px;
  transition: transform 0.3s ease;
}
.labels-image:hover {
  transform: scale(1.03);
}

/* Hero */
.labels-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.6)), url('HazStickersHero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .labels-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .labels-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Contact Expert Section */
.labels-contactexpert {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('consultexpert.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 2rem;
  box-sizing: border-box;
}

.labels-contactexpert-content {
  max-width: 600px;
}

.labels-contactexpert h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  letter-spacing: 1px;
}

.labels-contactexpert p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #f2f2f2;
}

/* Button */
.labels-contactexpert-btn {
  display: inline-block;
  padding: 0.9rem 2rem;
  background: #377a93;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.labels-contactexpert-btn:hover {
  background: #234e5e;
  color: white;
  transform: translateY(-3px);
}

/* Intro */
.labels-intro {
  background: #f8fbf9;
}
.labels-intro-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  gap: 60px;
}
.labels-intro-text {
  flex: 1;
  text-align: left;
  line-height: 1.7;
  color: #333;
}
.labels-intro-visual {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Benefits */
.labels-benefits {
  background: white;
}
.labels-benefits h2 {
  color: #377a93;
  margin-bottom: 40px;
}
.labels-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  max-width: 1100px;
}
.labels-benefit {
  background: #f2f7f5;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(55, 122, 147, 0.15);
  transition: transform 0.3s ease;
}
.labels-benefit:hover {
  transform: translateY(-8px);
}
.labels-benefit h3 {
  color: #70a349;
  margin-bottom: 10px;
}

/* Importance Section */
.labels-importance {
  background: white;
}
.labels-importance-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
}
.labels-importance-text {
  flex: 1;
  text-align: left;
  line-height: 1.7;
}
.labels-importance-text h2 {
  color: #377a93;
  margin-bottom: 15px;
}

/* Hazmat Labels */
.labels-hazmat {
  background: #f8fbf9;
}
.labels-hazmat h2 {
  color: #377a93;
  margin-bottom: 20px;
}
.labels-hazmat p {
  max-width: 800px;
  margin-bottom: 30px;
}

.labels-hazmat-gallery {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
  margin-top: 30px;
  max-width: 1000px;
}

.labels-hazmat-gallery .labels-image {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(55, 122, 147, 0.2);
  transition: transform 0.3s ease;
}

.labels-hazmat-gallery .labels-image:hover {
  transform: scale(1.05);
}

@media (max-width: 900px) {
  .labels-hazmat-gallery .labels-image {
    width: 160px;
    height: 160px;
  }
}

/* Placards */
.labels-placards {
  background: #eef6f3;
}
.labels-placards-container {
  max-width: 900px;
}
.labels-placards h2 {
  color: #377a93;
  margin-bottom: 20px;
}

/* CTA */
.labels-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
}
.labels-cta button {
  background: white;
  color: #377a93;
  border: none;
  padding: 14px 30px;
  border-radius: 30px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.labels-cta button:hover {
  background: #70a349;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .labels-intro-container,
  .labels-importance-inner {
    flex-direction: column;
    text-align: center;
  }
  .labels-intro-text,
  .labels-importance-text {
    text-align: center;
  }
  .labels-image {
    max-width: 280px;
  }
}

/* ========== GATE-IN / GATE-OUT PAGE ========== */

.gate-hero {
      background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('GateTrackingHeroOption.png') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .gate-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .gate-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }
/* Intro */
.gate-intro {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fbf9;
}

.gate-intro p strong{
  color: #377a93;
}

.gate-intro-container {
  display: flex;
  align-items: center;
  gap: 40px;
  width: 80%;
  max-width: 1200px;
}
.gate-intro-text { flex: 1; color: #1a1a1a; }
.gate-intro-image { flex: 1; text-align: center; }
.gate-intro-image img {
  width: 90%;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(55,122,147,0.2);
}

/* Understanding Section */
.gate-understanding {
  height: 100vh;
  text-align: center;
  background: white;
  padding: 60px 20px;
}

.gate-understanding h2{
  font-size: 2rem;
  color: #377a93
}

.gate-dual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  margin-top: 60px;
}
.gate-box {
  width: 300px;
  background: #f8fbf9;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(55,122,147,0.15);
}
.gate-box h3 { color: #70a349; }
.gate-flow-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(to right, #377a93, #70a349);
  border-radius: 2px;
}

/* Process Flow */
.gate-process {
  height: 100vh;
  background: #eef6f4;
  text-align: center;
  padding: 80px 20px;
}

.gate-process h2{
  font-size: 2rem;
  color: #70a349;
}

.gate-flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
  margin-top: 50px;
}
.gate-step {
  width: 220px;
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(55,122,147,0.1);
  transition: transform 0.3s ease;
}
.gate-step:hover { transform: translateY(-6px); }
.gate-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #377a93, #70a349);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin: 0 auto 15px;
  font-weight: bold;
}

/* Benefits */
.gate-benefits {
  min-height: 100vh;
  background: white;
  text-align: center;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.gate-benefits h2{
  font-size: 2rem;
  color: #377a93;
}

.gate-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.gate-benefit {
  background: #f8fbf9;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(55,122,147,0.1);
  transition: transform 0.3s ease;
}

.gate-benefit:hover { 
  transform: translateY(-6px); 
}

.gate-benefit h3 { 
  color: #70a349; 
  margin-bottom: 10px; 
  font-size: 1.2rem;
}

.gate-benefit p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #333;
}

/* Tablets - 2 columns */
@media (max-width: 1024px) {
  .gate-benefits {
    padding: 50px 20px;
  }
  
  .gate-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 35px;
    max-width: 800px;
  }
  
  .gate-benefit {
    padding: 22px;
  }
  
  .gate-benefit h3 {
    font-size: 1.1rem;
  }
  
  .gate-benefit p {
    font-size: 0.9rem;
  }
}

/* Mobile - 1 column */
@media (max-width: 600px) {
  .gate-benefits {
    padding: 40px 15px;
    justify-content: flex-start;
    padding-top: 60px;
  }
  
  .gate-benefits-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 30px;
    max-width: 400px;
  }
  
  .gate-benefit {
    padding: 20px;
  }
  
  .gate-benefit h3 {
    font-size: 1.1rem;
  }
  
  .gate-benefit p {
    font-size: 0.9rem;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .gate-benefits {
    padding: 35px 10px;
    padding-top: 50px;
  }
  
  .gate-benefits-grid {
    gap: 15px;
  }
  
  .gate-benefit {
    padding: 18px;
  }
}

/* CTA */
.gate-cta {
  height: 100vh;
  background: linear-gradient(135deg, #377a93, #70a349);
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.gate-cta h2{
  font-size: 3rem;
}

.gate-cta button {
  background: white;
  color: #377a93;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  margin-top: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}
.gate-cta button:hover {
  background: #70a349;
  color: white;
}

/* Responsive */
@media (max-width: 900px) {
  .gate-intro-container { flex-direction: column; }
  .gate-dual { flex-direction: column; gap: 20px; }
  .gate-flow { flex-direction: column; }
}

/* Material Handling Equipment (Forklifts) */
section[class^="forklift-"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  box-sizing: border-box;
  color: #fff;
}

/* Hero */
.forklift-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('ForkliftHero.webp') no-repeat center center/cover;
      height: 100vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .forklift-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .forklift-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }


.forklift-hero button:hover {
  transform: scale(1.05);
  background: #1dd3b0;
  color: #fff;
}


/* Intro */
.forklift-intro {
  background: white;
  padding: 0 5%;
}

.forklift-intro p {
  max-width: 700px;
  margin: 1rem auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: #333;
}

/* Services */
.forklift-services {
  background: #f8fbf9;
  padding: 3rem 0;
}

.forklift-services h2 {
  margin-bottom: 2rem;
  color: #377a93;
  text-align: center;
  font-size: 2.5rem;
}

/* Grid Layout */
.forkliftservices-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 2rem;
  box-sizing: border-box;
}

/* Card Container */
.forkliftservice-card {
  width: 250px;
  height: 250px;
  perspective: 1000px;
  position: relative;
  flex: 0 0 auto;
}

/* Inner wrapper */
.forklift-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s ease;
  transform-style: preserve-3d;
}

/* Flip on hover */
.forkliftservice-card:hover .forklift-card-inner {
  transform: rotateY(180deg);
}

/* Front & Back faces */
.forklift-card-front,
.forklift-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  backface-visibility: hidden;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

/* FRONT: name + description */
.forklift-card-front {
  background: #377a93;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
  color: #333;
  box-sizing: border-box;
  transform: rotateY(0deg);
  z-index: 2;
}

.forklift-card-front h3 {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.forklift-card-front p {
  font-size: 0.95rem;
  line-height: 1.4;
  margin: 0;
  color: white;
}

/* BACK: full image */
.forklift-card-back {
  transform: rotateY(180deg);
  z-index: 1;
}

.forklift-card-back img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}


/* Forklift Rentals Section */
.forklift-rentals {
  height: 100vh;
  background: #fefefe;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.forklift-rentals::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
}

.forklift-rentals-container {
  max-width: 800px;
  width: 100%;
}

.forklift-rentals-content {
  text-align: center;
}

.forklift-rentals-title {
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 60px;
  font-weight: 600;
  position: relative;
}

.forklift-rentals-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #2c5aa0, #4a7bc8);
  border-radius: 2px;
}

.forklift-rentals-list-container {
  background: white;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid #f1f5f9;
}

.forklift-rentals-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.forklift-rentals-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 30px;
  background: #f8fafc;
  border-radius: 12px;
  border-left: 4px solid #2c5aa0;
  transition: all 0.3s ease;
}

.forklift-rentals-item:hover {
  background: #f1f5f9;
  transform: translateX(10px);
}

.forklift-rentals-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.forklift-rentals-item span:last-child {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #374151;
  text-align: left;
}

@media (max-width: 768px) {
  .forklift-rentals {
    height: auto;
    min-height: 100vh;
    padding: 60px 20px;
  }
  
  .forklift-rentals-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  
  .forklift-rentals-list-container {
    padding: 30px 20px;
  }
  
  .forklift-rentals-item {
    padding: 15px 20px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  
  .forklift-rentals-item:hover {
    transform: translateY(-5px);
  }
}

/* Sales */
.forklift-sales {
  height: 100vh;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}

.forklift-sales-container {
  max-width: 1000px;
  width: 100%;
}

.forklift-sales-content {
  text-align: center;
}

.forklift-sales-header {
  margin-bottom: 60px;
}

.forklift-sales-title {
  font-size: 3rem;
  color: #1a365d;
  margin-bottom: 15px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.forklift-sales-underline {
  width: 120px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 0 auto;
  border-radius: 2px;
}

.forklift-sales-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.forklift-sales-visual {
  display: flex;
  justify-content: center;
}

.forklift-sales-circle {
  width: 280px;
  height: 280px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.3);
  animation: float 6s ease-in-out infinite;
}

.forklift-sales-inner-circle {
  width: 200px;
  height: 200px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 20px rgba(0, 0, 0, 0.1);
}

.forklift-sales-icon {
  font-size: 4rem;
  filter: grayscale(0.3);
}

.forklift-sales-text-content {
  text-align: left;
}

.forklift-sales-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 40px;
  font-weight: 400;
}

.forklift-sales-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.forklift-sales-highlight-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.forklift-sales-highlight-item:hover {
  transform: translateX(10px);
}

.forklift-sales-check {
  color: #10b981;
  font-size: 1.2rem;
  font-weight: bold;
}

.forklift-sales-highlight-item span:last-child {
  font-size: 1.1rem;
  color: #374151;
  font-weight: 500;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-20px); }
}

@media (max-width: 768px) {
  .forklift-sales {
    height: auto;
    min-height: 100vh;
    padding: 80px 20px;
  }
  
  .forklift-sales-title {
    font-size: 2.2rem;
  }
  
  .forklift-sales-main {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .forklift-sales-text-content {
    text-align: center;
  }
  
  .forklift-sales-circle {
    width: 220px;
    height: 220px;
  }
  
  .forklift-sales-inner-circle {
    width: 160px;
    height: 160px;
  }
  
  .forklift-sales-icon {
    font-size: 3rem;
  }
  
  .forklift-sales-text {
    font-size: 1.1rem;
  }
}

/* Why Us */
.forklift-why-us {
  background: #ffffff;
}

.forklift-why-us h2{
  color: #70a349;
  font-size: 2.5rem;
}

.forklift-why-us .why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2rem;
}

.forklift-why-us .why-card {
  background: #377a93;
  padding: 1.2rem;
  border-radius: 12px;
  font-weight: bold;
  min-width: 180px;
  max-width: 220px;
  transition: transform 0.3s, background 0.3s;
}

.forklift-why-us .why-card:hover {
  transform: translateY(-10px);
  background: #377a93;
}

/* CTA */
.forklift-cta {
  background: linear-gradient(175deg, #70a349, #377a93);
  padding: 0 5%;
}

.forklift-cta h2{
  font-size: 2.8rem;
}

.forklift-cta button {
  margin-top: 1.5rem;
  background-color: #1dd3b0;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: transform 0.3s, background 0.3s;
}

.forklift-cta button:hover {
  transform: scale(1.05);
  background: #fff;
  color: #1dd3b0;
}

/* Quote Page */

/* Hero Section */
        .quotehero {
            height: 400px;
            background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            margin-bottom: 40px;
        }

        .quotehero-content {
            max-width: 800px;
            padding: 20px;
        }

        .quotehero h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }

        .quotehero p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }

        /* Quote Form */
        .quote-form {
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            padding: 40px;
            margin-bottom: 40px;
        }

        .quoteform-title {
            text-align: center;
            margin-bottom: 30px;
            color: #2c3e50;
            font-size: 2rem;
        }

        .quoteform-row {
            display: flex;
            flex-wrap: wrap;
            margin: 0 -15px;
        }

        .quoteform-group {
            margin-bottom: 25px;
            padding: 0 15px;
            flex: 1 0 50%;
        }

        label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: #2c3e50;
        }

        input, textarea, select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 16px;
            transition: border 0.3s;
        }

        input:focus, textarea:focus, select:focus {
            border-color: #3498db;
            outline: none;
            box-shadow: 0 0 0 2px rgba(52, 152, 219, 0.2);
        }

        textarea {
            min-height: 120px;
            resize: vertical;
        }

        .quotesubmit-btn {
            display: block;
            width: 100%;
            padding: 15px;
            background: #3498db;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            transition: background 0.3s;
        }

        .quotesubmit-btn:hover {
            background: #2980b9;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .quotehero {
                height: 300px;
            }
            
            .quotehero h1 {
                font-size: 2.2rem;
            }
            
            .quotehero p {
                font-size: 1rem;
            }
            
            .quote-form {
                padding: 25px;
            }
            
            .quoteform-group {
                flex: 1 0 100%;
            }
            
        }


  /* WMS Page */

section[class^="wms-"] {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
  width: 100%;
  position: relative;
}

  .wms-hero {
      background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('WMSHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .wms-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .wms-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* INTRO  */
.wms-intro {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eaf3e9;
  padding: 0 40px;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

.wms-intro h2{
  font-size: 2.5rem;
  color: #377a93;
}

/* How it works */

.wms-how {
  background: linear-gradient(to right, #f8fbf9, #eef6f3);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
}
.wms-how-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  gap: 50px;
}
.wms-how-text {
  flex: 1;
}
.wms-how-left {
  flex: 1;
}

.wms-how-left h2{
  font-size: 2.5rem;
  color: #70a349
}

.wms-how-left ul {
  list-style: none;
  padding: 0;
}
.wms-how-left li {
  background: white;
  border-left: 5px solid #377a93;
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  box-shadow: 0 3px 6px rgba(55, 122, 147, 0.15);
  transition: all 0.3s ease;
}
.wms-how-left li:hover {
  transform: translateX(8px);
  box-shadow: 0 5px 12px rgba(55, 122, 147, 0.25);
}
@media (max-width: 900px) {
  .wms-how-container {
    flex-direction: column;
    text-align: center;
  }
  .wms-how-left li {
    text-align: left;
  }
}

.wms-how-right {
  flex: 1;
  text-align: center;
}

.wms-how-right img {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  margin-left: 100px;
  margin-top: 90px;
}

/* Benefits */

/* Key Benefits */
.wms-benefits {
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  padding: 60px 0;
}

.wms-benefits-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 90%;
  gap: 50px;
}

.wms-benefits-left {
  flex: 1;
  text-align: center;
}

.wms-benefits-left img {
  width: 85%;
  border-radius: 12px;
}

.wms-benefits-right {
  flex: 1;
}

.wms-benefits-right h2 {
  font-size: 3.5rem;
  color: #377a93;
  margin-bottom: 60px;
  margin-left: 40px;
}

.wms-benefits-right h3 {
  padding: 15px 20px;
  margin-bottom: 12px;
  border-radius: 6px;
  font-size: 1.5rem;;
  transition: all 0.3s ease;
}


@media (max-width: 900px) {
  .wms-benefits-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .wms-benefits-right h3 {
    text-align: left;
  }
}

/* Reporting*/
.wms-reporting {
  background: linear-gradient(to bottom, #f8fbf9, #eef6f3);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.wms-reporting-container {
  max-width: 900px;
  width: 90%;
}

.wms-reporting h2 {
  font-size: 2.2rem;
  color: #70a349;
  margin-bottom: 25px;
  font-weight: 600;
}

.wms-reporting img {
  width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: 10px;
  margin-bottom: 20px;
}

.wms-reporting p {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  max-width: 700px;
  margin: 0 auto;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
  .wms-reporting {
    padding: 35px 15px;
  }
  
  .wms-reporting h2 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .wms-reporting img {
    max-height: 350px;
    margin-bottom: 18px;
  }
  
  .wms-reporting p {
    font-size: 0.95rem;
    line-height: 1.5;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .wms-reporting {
    padding: 30px 15px;
  }
  
  .wms-reporting h2 {
    font-size: 1.8rem;
    margin-bottom: 18px;
  }
  
  .wms-reporting img {
    max-height: 300px;
    margin-bottom: 16px;
  }
  
  .wms-reporting p {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .wms-reporting {
    padding: 25px 10px;
    justify-content: flex-start;
    padding-top: 40px;
  }
  
  .wms-reporting-container {
    width: 95%;
  }
  
  .wms-reporting h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
  }
  
  .wms-reporting img {
    max-height: 250px;
    margin-bottom: 15px;
  }
  
  .wms-reporting p {
    font-size: 0.85rem;
    line-height: 1.4;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .wms-reporting {
    padding: 20px 8px;
    padding-top: 35px;
  }
  
  .wms-reporting h2 {
    font-size: 1.5rem;
  }
  
  .wms-reporting img {
    max-height: 220px;
  }
  
  .wms-reporting p {
    font-size: 0.8rem;
  }
}

/* CTA */

.wms-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
}
.wms-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.wms-cta p{
  font-size:1.2rem;
}

.wms-cta button {
  display: inline-block;
    color: #377a93;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.wms-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Office & IT */

  .office-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.1)), url('officeHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .office-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .office-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
      text-align: center;
      margin: 0 auto;
      
    }

    .office-intro {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eaf3e9;
  padding: 0 40px;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
  line-height: 1.8;
}

/* Services */

.officeandit-services {
    max-width: 1200px;
    min-height: 100vh;
    margin: 0 auto;
    padding: 2rem 1.5rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.officeandit-services__header {
    text-align: center;
    margin-bottom: 2rem;
}

.officeandit-services__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.75rem;
}

.officeandit-services__subtitle {
    font-size: 1rem;
    color: #64748b;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.5;
}

.officeandit-services__content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.officeandit-services__tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 240px;
}

.officeandit-services__tab {
    padding: 1rem 1.25rem;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #475569;
}

.officeandit-services__tab:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.officeandit-services__tab--active {
    background: #1e40af;
    border-color: #1e40af;
    color: white;
    transform: translateX(6px);
}

.officeandit-services__tab--active:hover {
    background: #1e40af;
    border-color: #1e40af;
    transform: translateX(6px);
}

.officeandit-services__panel {
    flex: 1;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-height: 320px;
    position: relative;
    overflow: hidden;
}

.officeandit-services__panel-content {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    visibility: hidden;
}

.officeandit-services__panel-content--active {
    opacity: 1;
    pointer-events: all;
    position: relative;
    visibility: visible;
}

.officeandit-services__icon {
    width: 60px;
    height: 60px;
    background: #eff6ff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #1e40af;
    font-size: 1.5rem;
}

.officeandit-services__panel-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.officeandit-services__panel-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 1.5rem;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
    .officeandit-services {
        padding: 1.5rem;
    }
    
    .officeandit-services__content {
        gap: 1.5rem;
    }
    
    .officeandit-services__tabs {
        flex: 0 0 200px;
    }
    
    .officeandit-services__tab {
        padding: 0.9rem 1rem;
        font-size: 0.9rem;
    }
    
    .officeandit-services__panel {
        padding: 1.25rem;
        min-height: 280px;
    }
    
    .officeandit-services__panel-content {
        top: 1.25rem;
        left: 1.25rem;
        right: 1.25rem;
    }
    
    .officeandit-services__icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }
    
    .officeandit-services__panel-title {
        font-size: 1.3rem;
    }
    
    .officeandit-services__panel-description {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .officeandit-services {
        padding: 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .officeandit-services__content {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .officeandit-services__tabs {
        flex: none;
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .officeandit-services__tab {
        flex: 0 0 auto;
        white-space: nowrap;
        font-size: 0.9rem;
        padding: 0.8rem 1rem;
    }
    
    .officeandit-services__tab:hover,
    .officeandit-services__tab--active {
        transform: translateY(0);
    }
    
    .officeandit-services__panel {
        min-height: 250px;
        padding: 1.25rem;
    }
    
    .officeandit-services__panel-content {
        top: 1.25rem;
        left: 1.25rem;
        right: 1.25rem;
    }
    
    .officeandit-services__title {
        font-size: 1.75rem;
    }
    
    .officeandit-services__panel-title {
        font-size: 1.25rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .officeandit-services {
        padding: 0.75rem;
        padding-top: 1.5rem;
    }
    
    .officeandit-services__header {
        margin-bottom: 1.5rem;
    }
    
    .officeandit-services__title {
        font-size: 1.5rem;
    }
    
    .officeandit-services__subtitle {
        font-size: 0.9rem;
    }
    
    .officeandit-services__panel {
        padding: 1rem;
        min-height: 220px;
    }
    
    .officeandit-services__panel-content {
        top: 1rem;
        left: 1rem;
        right: 1rem;
    }
    
    .officeandit-services__icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .officeandit-services__panel-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .officeandit-services__panel-description {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }
}

/* Why chose us */

.why-ubuntu-minimal {
    max-width: 100vw;
    margin: 0 auto;
    padding: 1rem 2rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #eaf3e9;
}

.why-ubuntu-minimal h2 {
    text-align: center;
    font-size: 2rem; /* Smaller */
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.why-ubuntu-minimal .subtitle {
    text-align: center;
    font-size: 1.1rem; /* Smaller */
    color: #64748b;
    max-width: 500px;
    margin: 0 auto 2rem; /* Much smaller margin */
    line-height: 1.5;
}

.features {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2-column grid */
    gap: 1rem; /* Tight gap */
}

.feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem; /* Much smaller padding */
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.feature-number {
    font-size: 1.5rem; /* Much smaller */
    font-weight: 700;
    color: #1e40af;
    opacity: 0.7;
    flex-shrink: 0;
    line-height: 1;
}

.feature-content h3 {
    font-size: 1.1rem; /* Much smaller */
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.5rem;
}

.feature-content p {
    font-size: 0.9rem; /* Much smaller */
    color: #64748b;
    line-height: 1.5;
}

/* CTA */

.office-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers vertically */
  align-items: center; /* Centers horizontally */
  text-align: center;
}
.office-cta h2 {
  font-size: 3.5rem;
  margin-bottom: 15px;
}
.office-cta button {
  display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: #377a93;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.office-cta button:hover {
  transform: scale(1.05);
  background: white;
  color: #377a93;
}

/* Business Development & Consulting Page */

section[class^="business-"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.business-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('businessdevelopmentHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .business-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .business-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

   /* Intro */
    .business-intro {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #eaf3e9;
  padding: 0 40px;
  text-align: center;
  font-size: 1.2rem;
  color: #333;
  line-height: 2.2;
}

.business-intro h2{
  color: #377a93;
  font-size: 2rem;;
}

/* Business Projects & Reuslts */

.business-projects-results {
  background: #ffffff;
  padding: 80px 10%;
  font-family: 'Segoe UI', sans-serif;
}

.business-columns {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.business-column {
  flex: 1 1 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.business-title {
  color: #4d9b3a;
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
}

.business-card {
  border: 3px solid #2a748a;
  border-radius: 10px;
  padding: 25px 20px;
  text-align: center;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 30px;
  width: 100%;
  max-width: 450px;
}

.business-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.business-card h3 {
  color: #000;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.business-card p {
  color: #333;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Why partner with us - business consulting */
.business-partner-section {
  background: #F5F5F5;
  padding: 60px 5%;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  box-sizing: border-box;
}

.business-partner-container {
  display: grid;
  grid-template-areas:
    "left triangle right"
    ". bottom .";
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  justify-items: center;
  text-align: center;
  gap: 40px; /* Reduced from 60px */
  width: 100%;
  max-width: 1100px; /* Reduced from 1300px */
}

/* TRIANGLE - Smaller for laptop */
.business-triangle {
  position: relative;
  grid-area: triangle;
  width: 400px; /* Reduced from 500px */
  height: 360px; /* Reduced from 450px */
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  overflow: hidden;
}

.business-triangle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.business-triangle-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.business-triangle-text h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.4rem); /* Responsive font */
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

/* TEXT ITEMS - More compact */
.business-partner-item {
  max-width: 300px; /* Reduced from 350px */
  text-align: center;
}

.business-partner-item h3 {
  color: #377a93;
  font-size: 1.1rem; /* Reduced from 1.3rem */
  font-weight: 700;
  margin-bottom: 10px; /* Reduced from 12px */
}

.business-partner-item p {
  color: #333;
  font-size: 0.9rem; /* Reduced from 1rem */
  line-height: 1.5; /* Reduced from 1.8 */
}

.business-partner-item.left {
  grid-area: left;
}

.business-partner-item.right {
  grid-area: right;
}

.business-partner-item.bottom {
  grid-area: bottom;
  margin-top: 25px; /* Reduced from 35px */
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
  .business-partner-section {
    padding: 50px 4%;
  }
  
  .business-partner-container {
    gap: 30px;
    max-width: 900px;
  }
  
  .business-triangle {
    width: 350px;
    height: 315px;
  }
  
  .business-partner-item {
    max-width: 250px;
  }
  
  .business-partner-item h3 {
    font-size: 1rem;
  }
  
  .business-partner-item p {
    font-size: 0.85rem;
  }
  
  .business-partner-item.bottom {
    margin-top: 20px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .business-partner-section {
    padding: 40px 3%;
  }
  
  .business-partner-container {
    grid-template-areas:
      "triangle triangle"
      "left right"
      "bottom bottom";
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    max-width: 700px;
  }
  
  .business-triangle {
    width: 300px;
    height: 270px;
  }
  
  .business-partner-item {
    max-width: 100%;
  }
  
  .business-partner-item.bottom {
    margin-top: 15px;
    grid-column: 1 / -1;
    max-width: 500px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .business-partner-section {
    padding: 30px 2%;
    justify-content: flex-start;
    padding-top: 50px;
  }
  
  .business-partner-container {
    grid-template-areas:
      "triangle"
      "left"
      "right"
      "bottom";
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 400px;
  }
  
  .business-triangle {
    width: 250px;
    height: 225px;
  }
  
  .business-partner-item h3 {
    font-size: 1rem;
  }
  
  .business-partner-item p {
    font-size: 0.85rem;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .business-triangle {
    width: 220px;
    height: 200px;
  }
  
  .business-triangle-text h2 {
    font-size: 1.5rem;
  }
}

/* Insight */
.business-insight-section {
  background: #ffffff;
  padding: 100px 10%;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.business-insight-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
}

.business-insight-image img {
  width: 500px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
  display: block;
}

.business-insight-content {
  max-width: 500px;
  text-align: left;
}

.business-insight-content h2 {
  color: #70a349;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.business-insight-content p {
  color: #333;
  font-size: 1rem;
  line-height: 1.8;
}

/* Case Insights */
.business-services {
    max-width: 100vw;
    margin: 0 auto;
    padding: 4rem 2rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #F5F5F5;
}

.business-services__header {
    text-align: center;
    margin-bottom: 3rem;
}

.business-services__title {
    font-size: 3rem;
    font-weight: 700;
    color: #377a93;
    margin-bottom: 1rem;
}


.business-services__content {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.business-services__tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 0 0 280px;
}

.business-services__tab {
    padding: 1.25rem 1.5rem;
    background: #70a349;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.business-services__tab:hover {
    background: #70a349;
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.business-services__tab--active {
    background: #377a93;
    border-color: #377a93;
    color: white;
    transform: translateX(8px);
}

.business-services__tab--active:hover {
    background: #377a93;
    border-color: #377a93;
    transform: translateX(8px);
}

.business-services__panel {
    flex: 1;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    min-height: 400px;
    min-width: 900px;
    position: relative;
    overflow: hidden;
}

.business-services__panel-content {
    position: absolute;
    top: 2rem;
    left: 2rem;
    right: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    visibility: hidden;
}

.business-services__panel-content--active {
    opacity: 1;
    pointer-events: all;
    position: relative;
    visibility: visible;
}

.business-services__icon {
    width: 80px;
    height: 80px;
    background: #eff6ff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: #1e40af;
    font-size: 2rem;
}

.business-services__panel-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a365d;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.business-services__panel-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 2rem;
}

.business-services__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #1e40af;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.business-services__cta:hover {
    background: #1e3a8a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 64, 175, 0.3);
}

@media (max-width: 768px) {
    .business-services__content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .business-services__tabs {
        flex: none;
        width: 100%;
    }
    
    .business-services__panel {
        min-height: 350px;
        padding: 1.5rem;
    }
    
    .business-services__panel-content {
        top: 1.5rem;
        left: 1.5rem;
        right: 1.5rem;
    }
}

/* CTA */
.business-cta {
  background: radial-gradient(#377a93, #70a349);
  

  color: white;
  text-align: center;
}
.business-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.business-cta button {
  display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: #70a349;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.business-cta button:hover {
  transform: scale(1.05);
  background: #70a349;
  color: white;
}


/* Packaging Consumables Page */

/* Hero */
.packaging-hero {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.9)), url('PackagingConsumablesHeroo.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .packaging-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .packaging-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Intro */
  .packaging-section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 5%;
  box-sizing: border-box;
}

.packaging-heading {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 60px;
  color: #377a93;
}

.packaging-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  flex: 1; /* takes up remaining height after heading */
  gap: 40px;
}

.packaging-text {
  flex: 1;
}

.packaging-paragraph {
  margin-bottom: 20px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.packaging-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.packaging-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

/* Product Range */

.packaging-consumables-section {
  background: #fff;
  text-align: center;
  padding: 60px 5%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.packaging-consumables-heading {
  color: #2c6da4;
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  margin-bottom: 50px;
  font-family: 'Segoe UI', sans-serif;
}

/* Tighter staggered layout - KEEP ORIGINAL IMAGE SIZES */
.packaging-consumables-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px; /* Reduced from 40px */
  justify-items: center;
  align-items: center;
  max-width: 1100px;
  width: 100%;
}

.packaging-consumables-item {
  position: relative;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* REMOVE fixed width/height to keep original image sizes */
}

.packaging-consumables-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.packaging-consumables-item img {
  width: 100%;
  height: auto; /* Keep original proportions */
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* Label styling overlay */
.packaging-consumables-label {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: #2c6da4;
  color: #fff;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  white-space: nowrap;
}

/* Staggered layout logic - reduced spacing only */
.packaging-consumables-item:nth-child(1) {
  grid-column: 1;
}

.packaging-consumables-item:nth-child(2) {
  grid-column: 3;
}

.packaging-consumables-item:nth-child(3) {
  grid-column: 5;
}

.packaging-consumables-item:nth-child(4) {
  grid-column: 2;
  margin-top: 60px; /* Reduced from 120px */
}

.packaging-consumables-item:nth-child(5) {
  grid-column: 4;
  margin-top: 60px; /* Reduced from 120px */
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
  .packaging-consumables-section {
    padding: 50px 4%;
  }
  
  .packaging-consumables-grid {
    max-width: 900px;
    gap: 15px;
  }
  
  .packaging-consumables-label {
    font-size: 0.85rem;
    padding: 6px 16px;
    bottom: -16px;
  }
  
  .packaging-consumables-item:nth-child(4),
  .packaging-consumables-item:nth-child(5) {
    margin-top: 50px;
  }
}

/* Tablets */
@media (max-width: 900px) {
  .packaging-consumables-section {
    padding: 40px 4%;
  }
  
  .packaging-consumables-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    gap: 20px;
  }

  .packaging-consumables-item:nth-child(1),
  .packaging-consumables-item:nth-child(2),
  .packaging-consumables-item:nth-child(3),
  .packaging-consumables-item:nth-child(4),
  .packaging-consumables-item:nth-child(5) {
    grid-column: auto;
    margin-top: 0;
  }
  
  /* Create 2x3 grid for tablets */
  .packaging-consumables-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .packaging-consumables-item:nth-child(2) { grid-column: 2; grid-row: 1; }
  .packaging-consumables-item:nth-child(3) { grid-column: 1; grid-row: 2; }
  .packaging-consumables-item:nth-child(4) { grid-column: 2; grid-row: 2; }
  .packaging-consumables-item:nth-child(5) { grid-column: 1; grid-row: 3; justify-self: center; grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 600px) {
  .packaging-consumables-section {
    padding: 30px 3%;
    justify-content: flex-start;
    padding-top: 50px;
  }
  
  .packaging-consumables-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 400px;
  }
  
  .packaging-consumables-label {
    font-size: 0.8rem;
    padding: 5px 12px;
    bottom: -14px;
  }
}

/* Small mobile */
@media (max-width: 400px) {
  .packaging-consumables-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 250px;
  }
  
  .packaging-consumables-item:nth-child(5) {
    grid-column: 1;
    grid-row: auto;
  }
}

/* Each product Sections */

.packaging-product-section {
  display: flex;
  align-items: stretch;
  height: 100vh;
  width: 100%;
  font-family: 'Segoe UI', sans-serif;
}

.packaging-left .packaging-product-image {
  order: 1;
}

.packaging-left .packaging-product-content {
  order: 2;
}

.packaging-right .packaging-product-image {
  order: 2;
}

.packaging-right .packaging-product-content {
  order: 1;
}

/* Shared styling */
.packaging-product-image {
  flex: 1;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.packaging-product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

/* Overlay text container */
.packaging-image-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  padding: 0 40px;
}

.packaging-image-text h2 {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 15px;
}

.packaging-image-text p {
  font-size: 1.2rem;
  color: #fff;
  max-width: 600px;
}

/* Content section */
.packaging-product-content {
  flex: 1;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.packaging-product-content h2,
.packaging-subtitle {
  display: none; /* hide duplicate headings since they're on the image now */
}

.packaging-product-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: #333;
}

.packaging-features {
  margin-top: 40px;
}

.packaging-features h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #111;
}

.packaging-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.packaging-features li {
  margin-bottom: 15px;
  line-height: 1.6;
}

.packaging-features strong {
  color: #000;
}

/* Responsive layout */
@media (max-width: 950px) {
  .packaging-product-section {
    flex-direction: column;
  }

  .packaging-product-image {
    height: 400px;
  }

  .packaging-product-content {
    padding: 50px 25px;
  }

  .packaging-image-text h2 {
    font-size: 2.2rem;
  }

  .packaging-image-text p {
    font-size: 1rem;
  }
}

/* Packaging CTA */

.packaging-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}
.packaging-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.packaging-cta button {
  display: inline-block;
    color: #377a93;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.packaging-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Material Handling Equipment Maintenance & Repair Page */

/* Hero Section */
.equipmentmaintenance-hero {
      background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('maintenanceandrepairhero.webp') no-repeat center center/cover;
      height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .equipmentmaintenance-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .equipmentmaintenance-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Intro Section */
.equipmentmaintenance-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipmentmaintenance-intro-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #2c5530;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 200px;
}

.equipmentmaintenance-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

/* Services Grid */

.equipmentmaintenance-bg {
    background-color: #f1f5f9;
    width: 100%;
    padding: 3rem 0;
}

.equipmentmaintenance-services {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.equipmentmaintenance-services h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #2c5530;
    margin-bottom: 1rem;
}

.equipmentmaintenance-services-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.equipmentmaintenance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.equipmentmaintenance-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    border-top: 4px solid #2c5530;
    transition: transform 0.3s ease;
}

.equipmentmaintenance-card:hover {
    transform: translateY(-4px);
}

.equipmentmaintenance-card h3 {
    color: #2c5530;
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
    text-align: center;
}

.equipmentmaintenance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.equipmentmaintenance-list li {
    padding: 0.7rem 0;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333;
}

.equipmentmaintenance-list li:last-child {
    border-bottom: none;
}

.equipmentmaintenance-list strong {
    color: #2c5530;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
    .equipmentmaintenance-bg {
        padding: 2.5rem 0;
    }
    
    .equipmentmaintenance-services {
        padding: 0 1.5rem;
    }
    
    .equipmentmaintenance-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.25rem;
    }
    
    .equipmentmaintenance-card {
        padding: 1.75rem;
    }
    
    .equipmentmaintenance-card h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .equipmentmaintenance-list li {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .equipmentmaintenance-services {
        padding: 0 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .equipmentmaintenance-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .equipmentmaintenance-card {
        padding: 1.5rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .equipmentmaintenance-bg {
        padding: 2rem 0;
    }
    
    .equipmentmaintenance-services {
        padding: 0 0.75rem;
        padding-top: 1.5rem;
    }
    
    .equipmentmaintenance-card {
        padding: 1.25rem;
    }
    
    .equipmentmaintenance-card h3 {
        font-size: 1.1rem;
    }
    
    .equipmentmaintenance-list li {
        font-size: 0.9rem;
        padding: 0.5rem 0;
    }
}

/* Why Choose Us Section */
.equipmentmaintenance-why {
    background: #F5F5F5;
    color: white;
    padding: 6rem 2rem;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.equipmentmaintenance-why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.equipmentmaintenance-why h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #377a93;
}

.equipmentmaintenance-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.equipmentmaintenance-why-card {
    background: #70a349;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.equipmentmaintenance-why-card:hover {
    transform: translateY(-5px);
    background: #70a349;
}

.equipmentmaintenance-why-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.equipmentmaintenance-why-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.equipmentmaintenance-cta {
    background: radial-gradient(#377a93, #70a349);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.equipmentmaintenance-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.equipmentmaintenance-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.equipmentmaintenance-cta-button {
    display: inline-block;
    background: #70a349;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.equipmentmaintenance-cta-button:hover {
    background: #5d8a3a;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .equipmentmaintenance-hero {
        padding: 6rem 1rem;
    }
    
    .equipmentmaintenance-hero h1 {
        font-size: 2.2rem;
    }
    
    .equipmentmaintenance-hero p {
        font-size: 1.1rem;
    }
    
    .equipmentmaintenance-grid {
        grid-template-columns: 1fr;
    }
    
    .equipmentmaintenance-card {
        padding: 2rem;
    }
    
    .equipmentmaintenance-why-grid {
        grid-template-columns: 1fr;
    }
    
    .equipmentmaintenance-why h2 {
        font-size: 2rem;
    }
    
    .equipmentmaintenance-services h2 {
        font-size: 2rem;
    }

    .equipmentmaintenance-hero,
    .equipmentmaintenance-intro,
    .equipmentmaintenance-services,
    .equipmentmaintenance-why,
    .equipmentmaintenance-cta {
        height: auto;
        min-height: 100vh;
    }
}

/* Customs Consulting Page */

/* Customs Consulting Hero Section */
.customsconsulting-hero {
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('customsconsultinghero.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.customsconsulting-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 700;
}

.customsconsulting-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    opacity: 0.9;
}

/* Intro Section */
.customsconsulting-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.customsconsulting-intro-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-left: 5px solid #1a365d;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.customsconsulting-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.customsconsulting-intro-content p:last-child {
    margin-bottom: 0;
}

.customsconsulting-intro-content strong {
    color: #1a365d;
    font-weight: 700;
}

/* Services Section */
.customsconsulting-services {
    width: 100%; /* Changed from 100vw to 100% */
    margin: 0 auto;
    padding: 0 4rem; /* Increased padding for breathing room */
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F5F5F5;
    box-sizing: border-box;
    overflow-x: hidden; /* Prevents right-side cutoff */
}

.customsconsulting-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a365d;
    margin-bottom: 3rem;
    font-weight: 700;
}

.customsconsulting-services-list {
    list-style: none;
    padding: 0;
    margin: 0 auto; /* Centers the grid */
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1200px; /* Keeps layout tidy and centered */
    width: 100%;
    box-sizing: border-box;
}

.customsconsulting-services-list li {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    border-left: 4px solid #1a365d;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.customsconsulting-services-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.customsconsulting-services-list strong {
    color: #1a365d;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}



/* Why Choose Us Section */
.customsconsulting-why {
    background: white;
    color: white;
    padding: 3rem 1.5rem;
    margin-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.customsconsulting-why-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.customsconsulting-why h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 2.5rem;
    font-weight: 700;
    color: #377a93;
}

.customsconsulting-why-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    color: #333;
}

.customsconsulting-why-card {
    background: whitesmoke;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
    flex: 0 1 250px;
    max-width: 280px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.customsconsulting-why-card:hover {
    transform: translateY(-5px);
    background: #70a349;
    color: white;
    box-shadow: 0 8px 20px rgba(112, 163, 73, 0.3);
}

.customsconsulting-why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    line-height: 1.3;
}

.customsconsulting-why-card p {
    font-size: 0.95rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

/* Tablet */
@media (max-width: 1024px) {
    .customsconsulting-why {
        padding: 2.5rem 1rem;
    }
    
    .customsconsulting-why-grid {
        gap: 1.25rem;
    }
    
    .customsconsulting-why-card {
        flex: 0 1 220px;
        max-width: 240px;
        padding: 1.25rem;
    }
    
    .customsconsulting-why-card h3 {
        font-size: 1.1rem;
    }
    
    .customsconsulting-why-card p {
        font-size: 0.9rem;
    }
}

/* Small tablets */
@media (max-width: 768px) {
    .customsconsulting-why {
        padding: 2rem 1rem;
    }
    
    .customsconsulting-why-grid {
        gap: 1rem;
    }
    
    .customsconsulting-why-card {
        flex: 0 1 180px;
        max-width: 200px;
        padding: 1rem;
    }
    
    .customsconsulting-why-card h3 {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .customsconsulting-why-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .customsconsulting-why {
        padding: 1.5rem 0.75rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .customsconsulting-why-grid {
        gap: 0.75rem;
    }
    
    .customsconsulting-why-card {
        flex: 0 1 150px;
        max-width: 160px;
        padding: 0.75rem;
    }
    
    .customsconsulting-why-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .customsconsulting-why-card p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Extra small mobile */
@media (max-width: 400px) {
    .customsconsulting-why-grid {
        gap: 0.5rem;
    }
    
    .customsconsulting-why-card {
        flex: 0 1 140px;
        max-width: 150px;
        padding: 0.6rem;
    }
    
    .customsconsulting-why-card h3 {
        font-size: 0.85rem;
    }
    
    .customsconsulting-why-card p {
        font-size: 0.75rem;
    }
}

/* CTA Section */
.customsconsulting-cta {
    background: #2c5530;
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.customsconsulting-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.customsconsulting-cta p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.customsconsulting-cta-button {
    display: inline-block;
    background: #70a349;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.customsconsulting-cta-button:hover {
    background: #5d8a3a;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(112, 163, 73, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .customsconsulting-hero h1 {
        font-size: 2.5rem;
    }
    
    .customsconsulting-hero p {
        font-size: 1.2rem;
    }
    
    .customsconsulting-intro-content {
        padding: 2rem;
    }
    
    .customsconsulting-services-list li {
        padding: 1.5rem;
    }
    
    .customsconsulting-why-grid {
        grid-template-columns: 1fr;
    }
    
    .customsconsulting-why h2,
    .customsconsulting-services h2,
    .customsconsulting-cta h2 {
        font-size: 2rem;
    }
    
    .customsconsulting-hero,
    .customsconsulting-intro,
    .customsconsulting-services,
    .customsconsulting-why,
    .customsconsulting-cta {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }
    
    .customsconsulting-why-card {
        flex: 0 1 100%;
        max-width: 100%;
    }
}

/* Labour Consulting Page */

/* Labour Consulting Hero Section */
.labourconsulting-hero {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.4)), url('labourconsultinghero.webp') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    padding: 20px;
}

.labourconsulting-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.8);
    font-weight: 700;
}

.labourconsulting-hero p {
    font-size: 1.4rem;
    max-width: 800px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    opacity: 0.9;
}

/* Intro Section */
.labourconsulting-intro {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.labourconsulting-intro-content {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
    border-right: 5px solid #1a365d;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
}

.labourconsulting-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    margin: 0 0 1.5rem 0;
}

.labourconsulting-intro-content p:last-child {
    margin-bottom: 0;
}

.labourconsulting-intro-content strong {
    color: #1a365d;
    font-weight: 700;
}

/* Services Section */
.labourconsulting-services {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.5rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.labourconsulting-services h2 {
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: #377a93;
    margin-bottom: 2.5rem;
    font-weight: 700;
    position: relative;
}

.labourconsulting-services h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #70a349;
}

.labourconsulting-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem; /* Reduced from 2.5rem */
}

.labourconsulting-services-list li {
    padding: 1.75rem; /* Reduced from 2.5rem */
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 0;
    border-left: 6px solid #377a93;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.labourconsulting-services-list li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.1), transparent);
    transition: left 0.5s ease;
}

.labourconsulting-services-list li:hover::before {
    left: 100%;
}

.labourconsulting-services-list li:hover {
    transform: translateX(10px); /* Reduced from 15px */
    background: linear-gradient(135deg, #377a93, #70a349);
    color: white;
}

.labourconsulting-services-list li:hover strong,
.labourconsulting-services-list li:hover {
    color: white;
}

.labourconsulting-services-list strong {
    color: #70a349;
    font-size: 1.1rem; /* Reduced from 1.3rem */
    display: block;
    margin-bottom: 0.75rem; /* Reduced from 1rem */
    font-weight: 700;
}

.labourconsulting-services-list li {
    font-size: 0.95rem; /* Reduced from 1.1rem */
    line-height: 1.5; /* Reduced from 1.7 */
    color: #495057;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
    .labourconsulting-services {
        padding: 0 1rem;
    }
    
    .labourconsulting-services-list {
        gap: 1.25rem;
    }
    
    .labourconsulting-services-list li {
        padding: 1.5rem;
    }
    
    .labourconsulting-services-list strong {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }
    
    .labourconsulting-services-list li {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .labourconsulting-services {
        padding: 0 0.75rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .labourconsulting-services h2 {
        margin-bottom: 2rem;
    }
    
    .labourconsulting-services-list {
        gap: 1rem;
    }
    
    .labourconsulting-services-list li {
        padding: 1.25rem;
        border-left: 5px solid #377a93;
    }
    
    .labourconsulting-services-list li:hover {
        transform: translateX(8px);
    }
    
    .labourconsulting-services-list strong {
        font-size: 0.95rem;
    }
    
    .labourconsulting-services-list li {
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .labourconsulting-services {
        padding: 0 0.5rem;
        padding-top: 1.5rem;
    }
    
    .labourconsulting-services-list li {
        padding: 1rem;
    }
    
    .labourconsulting-services-list strong {
        font-size: 0.9rem;
    }
    
    .labourconsulting-services-list li {
        font-size: 0.8rem;
        line-height: 1.3;
    }
}

/* Why Choose Us Section */
.labourconsulting-why {
    background: whitesmoke;
    color: #333;
    padding: 6rem 2rem;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.labourconsulting-why-container {
    max-width: 1200px;
    margin: 0 auto;
}

.labourconsulting-why h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 5rem;
    font-weight: 700;
    color: #377a93;
}

.labourconsulting-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.labourconsulting-why-item {
    padding: 0;
    text-align: left;
    border-bottom: 2px solid #70a349;
    padding-bottom: 2rem;
}

.labourconsulting-why-item:last-child,
.labourconsulting-why-item:nth-last-child(2) {
    border-bottom: none;
}

.labourconsulting-why-item:nth-child(2)::after {
  content: "";
  display: block;
  height: 2px;
  background: #70a349;
  position: relative;
  top: 135px; /* how far you want to lower the line */
  margin-top: -2rem; /* counteracts original padding */
}
.labourconsulting-why-item:nth-child(2) {
  border-bottom: none; /* remove the original green line */
}

.labourconsulting-why-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #333;
}

.labourconsulting-why-item p {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

/* CTA Section */
.labourconsulting-cta {
    background: linear-gradient(185deg, #70a349, #377a93);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.labourconsulting-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.labourconsulting-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.labourconsulting-cta-button {
    display: inline-block;
    background: #1a365d;
    color: white;
    padding: 1.3rem 3.5rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #1a365d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.labourconsulting-cta-button:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    border-color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .labourconsulting-hero h1 {
        font-size: 2.5rem;
    }
    
    .labourconsulting-hero p {
        font-size: 1.2rem;
    }
    
    .labourconsulting-services h2,
    .labourconsulting-why h2,
    .labourconsulting-cta h2 {
        font-size: 2.2rem;
    }
    
    .labourconsulting-services-list li {
        padding: 2rem;
    }
    
    .labourconsulting-why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .labourconsulting-why-item {
        border-bottom: 2px solid #8B4513;
        padding-bottom: 2rem;
    }
    
    .labourconsulting-why-item:last-child {
        border-bottom: none;
    }
    
    .labourconsulting-hero,
    .labourconsulting-intro,
    .labourconsulting-services,
    .labourconsulting-why,
    .labourconsulting-cta {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }
    
    .labourconsulting-intro-content p {
        font-size: 1.2rem;
    }
}

   /* On-Site Armed Security */
    

  /* Armed Security Hero Section */
    .armedsecurity-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('ArmedSecurityHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .armedsecurity-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .armedsecurity-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }


/* Intro Section */
.armedsecurity-intro {
    width: 100%;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F8F8FF;
    color: #333;
}

.armedsecurity-intro-content {
    padding: 4rem 0;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.armedsecurity-intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 0 0 2rem 0;
    color: #333;
}

.armedsecurity-intro-content strong {
    color: #70a349;
    font-weight: 700;
}

/* Services Section */
.armedsecurity-services {
    width: 100%;
    padding: 0 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F9F9F9;
    box-sizing: border-box;
}

.armedsecurity-services-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.armedsecurity-services h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #377a93;
    margin-bottom: 3rem;
    font-weight: 700;
}

.armedsecurity-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.armedsecurity-services-list li {
    padding: 2rem;
    background: white;
    border-radius: 0;
    border-left: 8px solid #377a93;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.armedsecurity-services-list li:hover {
    transform: translateX(10px);
    background: linear-gradient(135deg, #377a93, #70a349);
    color: white;
}

.armedsecurity-services-list li:hover strong,
.armedsecurity-services-list li:hover {
    color: white;
}

.armedsecurity-services-list strong {
    color: #377a93;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.armedsecurity-services-list li {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
    .armedsecurity-services {
        padding: 0 1.5rem;
    }
    
    .armedsecurity-services h2 {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }
    
    .armedsecurity-services-list {
        gap: 1.25rem;
    }
    
    .armedsecurity-services-list li {
        padding: 1.75rem;
    }
    
    .armedsecurity-services-list strong {
        font-size: 1.2rem;
        margin-bottom: 0.7rem;
    }
    
    .armedsecurity-services-list li {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .armedsecurity-services {
        padding: 0 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .armedsecurity-services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .armedsecurity-services-list {
        gap: 1rem;
    }
    
    .armedsecurity-services-list li {
        padding: 1.5rem;
        border-left: 6px solid #377a93;
    }
    
    .armedsecurity-services-list strong {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .armedsecurity-services-list li {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .armedsecurity-services {
        padding: 0 0.75rem;
        padding-top: 1.5rem;
    }
    
    .armedsecurity-services h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .armedsecurity-services-list li {
        padding: 1.25rem;
        border-left: 5px solid #377a93;
    }
    
    .armedsecurity-services-list strong {
        font-size: 1rem;
    }
    
    .armedsecurity-services-list li {
        font-size: 0.9rem;
        line-height: 1.4;
    }
}

/* Deployment Section */
.armedsecurity-deployment {
    width: 100%;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: whitesmoke;
    color: #333;
}

.armedsecurity-deployment-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.armedsecurity-deployment h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
    font-weight: 700;
    color: #70a349;
}

.armedsecurity-deployment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.armedsecurity-deployment-item {
    padding: 2rem;
    background: rgba(55, 122, 147, 0.1);
    border: 2px solid #377a93;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
}

.armedsecurity-deployment-item:hover {
    background: #377a93;
    transform: scale(1.05);
    border-color: #70a349;
    color: white;
}

/* Custom Plans Section */
.armedsecurity-plans {
    width: 100%;
    padding: 0 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.armedsecurity-plans-container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.armedsecurity-plans h2 {
    text-align: center;
    font-size: 2.8rem;
    color: #377a93;
    margin-bottom: 2rem;
    font-weight: 700;
}

.armedsecurity-plans p {
    text-align: center;
    font-size: 1.3rem;
    color: #495057;
    margin-bottom: 3rem;
    line-height: 1.7;
}

.armedsecurity-plans-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.armedsecurity-plans-list li {
    padding: 1.5rem;
    background: white;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    border: 2px solid #377a93;
    transition: all 0.3s ease;
}

.armedsecurity-plans-list li:hover {
    background: #377a93;
    color: white;
    transform: translateY(-5px);
}

/* Why Us Section */
.armedsecurity-why {
    background: #f0f5f2;
    color: white;
    padding: 4rem 2rem;
    margin-bottom: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
}

.armedsecurity-why-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.armedsecurity-why h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #377a93;
}

.armedsecurity-why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.armedsecurity-why-item {
    padding: 2.5rem 2rem;
    background: rgba(112, 163, 73, 0.1);
    border: 2px solid #70a349;
    text-align: center;
    transition: all 0.3s ease;
}

.armedsecurity-why-item:hover {
    background: #70a349;
    transform: translateY(-8px);
}

.armedsecurity-why-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #70a349;
}

.armedsecurity-why-item:hover h3 {
    color: white;
}

.armedsecurity-why-item p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin: 0;
    color: #333;
}

.armedsecurity-why-item:hover p {
    color: white;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
    .armedsecurity-why {
        padding: 3rem 1.5rem;
    }
    
    .armedsecurity-why h2 {
        font-size: 2.4rem;
        margin-bottom: 2.5rem;
    }
    
    .armedsecurity-why-grid {
        gap: 2rem;
    }
    
    .armedsecurity-why-item {
        padding: 2rem 1.5rem;
    }
    
    .armedsecurity-why-item h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }
    
    .armedsecurity-why-item p {
        font-size: 1.1rem;
        line-height: 1.5;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .armedsecurity-why {
        padding: 2.5rem 1rem;
        justify-content: flex-start;
        padding-top: 2rem;
    }
    
    .armedsecurity-why h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .armedsecurity-why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .armedsecurity-why-item {
        padding: 1.75rem 1.5rem;
    }
    
    .armedsecurity-why-item h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .armedsecurity-why-item p {
        font-size: 1rem;
        line-height: 1.5;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .armedsecurity-why {
        padding: 2rem 0.75rem;
        padding-top: 1.5rem;
    }
    
    .armedsecurity-why h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .armedsecurity-why-grid {
        gap: 1.25rem;
    }
    
    .armedsecurity-why-item {
        padding: 1.5rem 1.25rem;
    }
    
    .armedsecurity-why-item h3 {
        font-size: 1.2rem;
    }
    
    .armedsecurity-why-item p {
        font-size: 0.95rem;
        line-height: 1.4;
    }
}

/* CTA Section */
.armedsecurity-cta {
    background: linear-gradient(135deg, #377a93, #70a349);
    color: white;
    text-align: center;
    padding: 5rem 2rem;
    margin-bottom: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.armedsecurity-cta h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.armedsecurity-cta p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 600;
}

.armedsecurity-cta-button {
    display: inline-block;
    background: #377a93;
    color: white;
    padding: 1.3rem 3rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 2px solid #0a1929;
}

.armedsecurity-cta-button:hover {
    background: transparent;
    color: #0a1929;
    transform: translateY(-5px);
    border-color: #0a1929;
}

/* Responsive Design */
@media (max-width: 768px) {
    .armedsecurity-hero h1 {
        font-size: 2.8rem;
    }
    
    .armedsecurity-hero p {
        font-size: 1.3rem;
    }
    
    .armedsecurity-services h2,
    .armedsecurity-deployment h2,
    .armedsecurity-plans h2,
    .armedsecurity-why h2,
    .armedsecurity-cta h2 {
        font-size: 2.2rem;
    }
    
    .armedsecurity-deployment-grid,
    .armedsecurity-plans-list,
    .armedsecurity-why-grid {
        grid-template-columns: 1fr;
    }
    
    .armedsecurity-services-list li,
    .armedsecurity-deployment-item,
    .armedsecurity-plans-list li,
    .armedsecurity-why-item {
        padding: 1.5rem;
    }
    
    .armedsecurity-hero,
    .armedsecurity-intro,
    .armedsecurity-services,
    .armedsecurity-deployment,
    .armedsecurity-plans,
    .armedsecurity-why,
    .armedsecurity-cta {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }
}

/* Fleet Maintenance & Repair Page */

section[class^="fleetmaintenance-"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.fleetmaintenance-hero {
      background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.6)), url('FleetMaintenanceHero.jpg') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center; 
      color: white;
      padding: 20px;
    }

    .fleetmaintenance-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .fleetmaintenance-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Fleet Maintenance Services */

.fleetmaintenance-services {
    width: 100%;
    padding: 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.fleetmaintenance-services-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.fleetmaintenance-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #377a93;
    margin-bottom: 3rem;
    font-weight: 700;
}

.fleetmaintenance-compact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
    height: 60vh;
}

.fleetmaintenance-compact-item {
    padding: 2rem;
    background: white;
    border-left: 4px solid #70a349;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.fleetmaintenance-compact-item:hover {
    transform: translateY(-5px);
    border-left-color: #377a93;
    background: linear-gradient(135deg, #377a93, #70a349);
    color: white;
}

.fleetmaintenance-compact-item:hover .fleetmaintenance-compact-title,
.fleetmaintenance-compact-item:hover .fleetmaintenance-compact-desc {
    color: white;
}

.fleetmaintenance-compact-title {
    font-size: 1.2rem;
    color: #377a93;
    margin-bottom: 0.8rem;
    font-weight: 700;
    line-height: 1.3;
}

.fleetmaintenance-compact-desc {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #495057;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .fleetmaintenance-compact-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
        height: 70vh;
    }
}

@media (max-width: 768px) {
    .fleetmaintenance-services {
        height: auto;
        min-height: 100vh;
        padding: 4rem 1rem;
    }
    
    .fleetmaintenance-services h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .fleetmaintenance-compact-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(6, auto);
        height: auto;
        gap: 1rem;
    }
    
    .fleetmaintenance-compact-item {
        padding: 1.5rem;
    }
}

/* Before & After Gallery Section */
.fleetmaintenance-gallery {
    width: 100%;
    padding: 4rem 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.fleetmaintenance-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #377a93;
    margin-bottom: 3rem;
}

.fleetmaintenance-slider {
    width: 80%;
    height: 60vh;
    border-radius: 12px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleetmaintenance-slide {
    display: none;
    width: 100%;
    height: 100%;
    padding: 2rem;
}

.fleetmaintenance-slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleetmaintenance-slide img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.fleetmaintenance-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #377a93;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
}

.fleetmaintenance-slider-btn.prev {
    left: -25px;
}

.fleetmaintenance-slider-btn.next {
    right: -25px;
}

.fleetmaintenance-slider-dots {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.fleetmaintenance-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.fleetmaintenance-slider-dot.active {
    background: #377a93;
}
/* Why Choose Us */

.fleetmaintenance-whyus {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', sans-serif;
  padding: 60px 0;
}

.fleetmaintenance-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  width: 90%;
}

/* Left Side (Circular Image) */
.fleetmaintenance-image-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fleetmaintenance-image {
  width: 450px;
  height: 450px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid transparent;
  background: linear-gradient(to right, #377a93, #70a349);
  padding: 4px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.1);
}

/* Right Side (Text) */
.fleetmaintenance-content {
  flex: 1;
  position: relative;
  padding-right: 25px;
}

.fleetmaintenance-heading {
  font-size: 3rem;
  margin-bottom: 30px;
  color: #377a93;
  position: relative;
}

.fleetmaintenance-heading::after {
  content: "";
  position: absolute;
  right: -15px;
  top: 0;
  height: 100%;
  width: 4px;
  background: linear-gradient(to bottom, #377a93, #70a349);
  border-radius: 4px;
}

.fleetmaintenance-list {
  list-style: disc;
  padding-left: 25px;
}

.fleetmaintenance-list li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #333;
}

.fleetmaintenance-list strong {
  color: #000;
  font-weight: 600;
}

/* Responsive */
@media (max-width: 950px) {
  .fleetmaintenance-wrapper {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .fleetmaintenance-image {
    width: 300px;
    height: 300px;
  }

  .fleetmaintenance-heading::after {
    display: none;
  }

  .fleetmaintenance-list {
    list-style: none;
    padding: 0;
  }

  .fleetmaintenance-heading {
    font-size: 2.2rem;
  }
}


    /* CTA */
.fleetmaintenance-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
}
.fleetmaintenance-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.fleetmaintenance-cta button {
  display: inline-block;
    color: #377a93;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.fleetmaintenance-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Load Securing Consumables Page */

section[class^="loadsecuring-"] {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  box-sizing: border-box;
}

/* Hero */
.loadsecuring-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('LoadSecuringConsumablesHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .loadsecuring-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .loadsecuring-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

    /* Why Load Securing Matters */

.loadsecuring-whymatters {
  width: 100vw;
  min-height: 100vh;
  box-sizing: border-box;
  background: #ffffff;
  padding: 40px 80px 60px;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

/* Heading */
.loadsecuring-whymatters-title {
  font-size: 2.8rem;
  color: #70a349;
  margin-bottom: 40px;
  text-align: center;
  letter-spacing: 1px;
}

/* Layout */
.loadsecuring-whymatters-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  width: 100%;
  max-width: 1200px;
}

/* Text */
.loadsecuring-whymatters-content {
  color: #333;
}

.loadsecuring-whymatters-content p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.loadsecuring-whymatters-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.loadsecuring-whymatters-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
}

/* Colored checkmarks only */
.loadsecuring-whymatters-list li::before {
  content: "✔";
  color: #377a93;
  font-size: 1.2rem;
}

/* Remove the original checkmark text color */
.loadsecuring-whymatters-list li {
  color: #333; /* Normal text color */
}

/* Image */
.loadsecuring-whymatters-image {
  text-align: right;
}

.loadsecuring-whymatters-image img {
  width: 100%;
  max-width: 550px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(55, 122, 147, 0.2);
}

/* Responsive */
@media (max-width: 950px) {
  .loadsecuring-whymatters {
    padding: 40px 25px;
  }

  .loadsecuring-whymatters-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .loadsecuring-whymatters-list li {
    justify-content: center;
  }

  .loadsecuring-whymatters-image {
    text-align: center;
  }

  .loadsecuring-whymatters-image img {
    width: 90%;
  }
}

/* Products */
.loadsecuring-products {
  width: 100%;
  min-height: 100vh;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.loadsecuring-products-heading {
  font-size: 3rem;
  color: #377a93;
  text-align: center;
  margin-bottom: 60px;
  letter-spacing: 1px;
  font-weight: 600;
}

.loadsecuring-products-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loadsecuring-products-image {
  max-width: 800px;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(55, 122, 147, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .loadsecuring-products {
    padding: 40px 15px;
    min-height: 80vh;
  }
  
  .loadsecuring-products-heading {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }
  
  .loadsecuring-products-image {
    max-width: 100%;
  }
}

/* Load Securing Benefits */

.loadsecuring-benefits {
  width: 100%;
  padding: 60px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  background: #ffffff;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

.loadsecuring-benefits-heading {
  font-size: 3rem;
  color: #7dc242;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.loadsecuring-benefits-subtitle {
  font-size: 1.2rem;
  color: #666;
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.5;
}

.loadsecuring-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  width: 100%;
  max-width: 700px;
}

.loadsecuring-benefit-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 15px 0;
}

.loadsecuring-benefit-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.loadsecuring-benefit-text {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 768px) {
  .loadsecuring-benefits {
    padding: 40px 15px;
    min-height: 80vh;
  }
  
  .loadsecuring-benefits-heading {
    font-size: 2.2rem;
    margin-bottom: 15px;
  }
  
  .loadsecuring-benefits-subtitle {
    font-size: 1.1rem;
    margin-bottom: 40px;
    padding: 0 10px;
  }
  
  .loadsecuring-benefit-item {
    gap: 15px;
  }
  
  .loadsecuring-benefit-icon {
    width: 35px;
    height: 35px;
  }
  
  .loadsecuring-benefit-text {
    font-size: 1.1rem;
  }
}

/* CTA */
.loadsecuring-cta {
  background: linear-gradient(to left, #377a93, #70a349);
  color: white;
  text-align: center;
}
.loadsecuring-cta h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.loadsecuring-cta button {
  display: inline-block;
    color: white;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: #377a93;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.loadsecuring-cta button:hover {
  transform: scale(1.05);
  background: #70a349;
  color: white;
}

/* Staff & Visitor Transport Page */

/* Staff Transport Hero Section */
    .stafftransport-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('stafftransporthero.jpg') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .stafftransport-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .stafftransport-hero p {
      font-size: 1.2rem;
      max-width: 800px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
    }

/* Intro Section */
.stafftransport-intro {
    width: 100%;
    padding: 4rem 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f9fa;
}

.stafftransport-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stafftransport-intro-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 2rem;
}

.stafftransport-intro-content strong {
    color: #377a93;
}

/* Compact Services Section */
.stafftransport-services {
    width: 100%;
    padding: 3rem 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.stafftransport-services-container {
    max-width: 900px;
    margin: 0 auto;
}

.stafftransport-services h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #377a93;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.stafftransport-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stafftransport-feature {
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #70a349;
    transition: all 0.3s ease;
}

.stafftransport-feature:hover {
    transform: translateY(-5px);
    background: #e9ecef;
}

.stafftransport-feature strong {
    color: #377a93;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.stafftransport-feature p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stafftransport-features-grid {
        grid-template-columns: 1fr;
    }
    
    .stafftransport-services {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
}

/* Why Choose Us - Timeline Style */
.stafftransport-why {
    width: 100%;
    padding: 3rem 2rem;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #F5F5F5;
}

.stafftransport-why-container {
    max-width: 1000px;
    margin: 0 auto;
}

.stafftransport-why h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #377a93;
    margin-bottom: 3rem;
    font-weight: 700;
}

.stafftransport-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
}

.stafftransport-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: #70a349;
    z-index: 1;
}

.stafftransport-timeline-point {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stafftransport-point-circle {
    width: 30px;
    height: 30px;
    background: #70a349;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 3;
}

.stafftransport-point-content {
    padding: 0 1rem;
}

.stafftransport-point-content h3 {
    font-size: 1.1rem;
    color: #377a93;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stafftransport-point-content p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .stafftransport-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .stafftransport-timeline::before {
        display: none;
    }
    
    .stafftransport-timeline-point {
        display: flex;
        align-items: flex-start;
        gap: 1rem;
        text-align: left;
    }
    
    .stafftransport-point-circle {
        margin: 0;
        flex-shrink: 0;
    }
    
    .stafftransport-why {
        height: auto;
        min-height: 100vh;
        padding: 2rem 1rem;
    }
}

/* CTA */
.stafftransport-cta {
  background: radial-gradient(#377a93, #70a349);
  color: white;
  text-align: center;
  height: 100vh;
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
}
.stafftransport-cta h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.stafftransport-cta button {
  display: inline-block;
    color: #377a93;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.stafftransport-cta button:hover {
  transform: scale(1.05);
  background: #70a349;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .stafftransport-hero h1 {
        font-size: 2.5rem;
    }
    
    .stafftransport-hero p {
        font-size: 1.2rem;
    }
    
    .stafftransport-services h2,
    .stafftransport-why h2,
    .stafftransport-cta h2 {
        font-size: 2.2rem;
    }
    
    .stafftransport-why-grid {
        grid-template-columns: 1fr;
    }
    
    .stafftransport-hero,
    .stafftransport-intro,
    .stafftransport-services,
    .stafftransport-why,
    .stafftransport-cta {
        height: auto;
        min-height: 100vh;
        padding: 3rem 1rem;
    }
}

/* Networking & Connectivity Solutions Page */

/* Hero */
.networking-hero {
      background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('NetworkingHero.webp') no-repeat center center/cover;
      height: 90vh; /* ADDED */
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
      color: white;
      padding: 20px;
    }

    .networking-hero h1 {
      font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    }

    .networking-hero p {
  font-size: 1.2rem;
  max-width: 800px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
  text-align: center;
  margin: 0 auto;
}

/* Services Section */
.networking-services {
    height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 40px 0;
    box-sizing: border-box;
}

.networking-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.networking-section-title {
    text-align: center;
    font-size: clamp(1.6rem, 4vw, 2.2rem);
    color: #377a93;
    margin-bottom: 2rem;
    font-weight: 700;
}

.networking-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 1.5rem;
}

.networking-service-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    border-top: 4px solid #377a93;
}

.networking-service-card:hover {
    transform: translateY(-6px);
}

.networking-service-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.networking-service-title {
    color: #377a93;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.networking-service-description {
    color: #666;
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Laptop screens (1024px and below) */
@media (max-width: 1024px) {
    .networking-services {
        padding: 30px 0;
    }
    
    .networking-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 18px;
    }
    
    .networking-service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .networking-service-icon {
        font-size: 2.2rem;
    }
    
    .networking-service-title {
        font-size: 1.1rem;
    }
    
    .networking-service-description {
        font-size: 0.9rem;
    }
}

/* Tablets */
@media (max-width: 768px) {
    .networking-services {
        padding: 25px 0;
        justify-content: flex-start;
        padding-top: 40px;
    }
    
    .networking-services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .networking-service-card {
        padding: 1.5rem 1.25rem;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .networking-services-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Why Choose Us Section */
.networking-why {
    min-height: 100vh;
    background: white;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.networking-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.networking-benefit-card {
    background: #f8f9fa;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #70a349;
}

.networking-benefit-card:hover {
    background: #377a93;
    color: white;
    transform: translateY(-5px);
}

.networking-benefit-card:hover .networking-benefit-title,
.networking-benefit-card:hover .networking-benefit-description {
    color: white;
}

.networking-benefit-number {
    font-size: 2rem;
    color: #70a349;
    font-weight: 700;
    margin-bottom: 1rem;
}

.networking-benefit-title {
    color: #377a93;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.networking-benefit-description {
    color: #666;
    line-height: 1.6;
}

/* Process Section */
.networking-process {
    min-height: 100vh;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    padding: 30px 0;
    box-sizing: border-box;
}

.networking-process-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 700px;
    margin: 0 auto;
}

.networking-process-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.25rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.networking-process-step:hover {
    transform: translateX(5px);
}

.networking-step-number {
    background: #377a93;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
}

.networking-step-title {
    color: #377a93;
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.networking-step-description {
    color: #666;
    line-height: 1.4;
    font-size: 0.85rem;
}

/* Extra adjustment for laptop screens */
@media (max-width: 1024px) {
    .networking-process {
        padding: 20px 0;
    }
    
    .networking-process-steps {
        gap: 0.75rem;
        max-width: 600px;
    }
    
    .networking-process-step {
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .networking-step-number {
        width: 30px;
        height: 30px;
        font-size: 0.8rem;
    }
    
    .networking-step-title {
        font-size: 0.9rem;
    }
    
    .networking-step-description {
        font-size: 0.8rem;
    }
}

/* Force mobile layout earlier for laptops */
@media (max-width: 1200px) {
    .networking-process-step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .networking-step-number {
        align-self: center;
    }
}
/* CTA */
.networking-cta {
  background: linear-gradient(to right, #377a93, #70a349);
  color: white;
  text-align: center;
}
.networking-cta h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
}
.networking-ctabutton {
  display: inline-block;
    color: #377a93;
    padding: 12px 25px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s;
    text-align: center;
    border: none;
    cursor: pointer;
    width: fit-content;
     background: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.networking-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .networking-services-grid,
    .networking-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .networking-process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
}

@media (max-width: 480px) {
    .networking-service-card,
    .networking-benefit-card {
        padding: 2rem 1.5rem;
    }
    
    .networking-process-step {
        padding: 1.5rem;
    }
}

/* Freight & Transport Solutions CTA */

.freight-cta {
  background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('FreightAndTransportSolutionsCTA.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 90vh;
}
.freight-cta  h2 {
  font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.freight-cta  button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.freight-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Warehousing & On-Site Support CTA */

.warehousingandonsitesupport-cta {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('WarehousingAndOnSiteSupportCTA.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 90vh;
}
.warehousingandonsitesupport-cta  h2 {
  font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.warehousingandonsitesupport-cta  button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}
.warehousingandonsitesupport-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Security & Access Management CTA */

.securityandaccessmanagement-cta {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('SecurityAndAccessManagementCTA.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 90vh;
}
.securityandaccessmanagement-cta  h2 {
  font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.securityandaccessmanagement-cta  button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}

.securityandaccessmanagement-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* IT & Operational Systems CTA */

.it-cta {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.3)), url('ITandOperationalSystemsCTA.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 80vh;
}
.it-cta  h2 {
  font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.it-cta  button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}

.it-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Consumables & Equipment CTA */

.consumablesandequipment-cta {
  background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('ConsumablesAndEquipmentCTA.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 80vh;
}
.consumablesandequipment-cta  h2 {
  font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.consumablesandequipment-cta button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}

.consumablesandequipment-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}

/* Consultancy & Compliance CTA */

.consultancy-cta {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('ConsultancyAndComplianceCTA.webp') no-repeat center center/cover;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  height: 80vh;
}
.consultancy-cta  h2 {
  font-size: 3rem;
      margin-bottom: 10px;
      text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
}
.consultancy-cta button {
  background: #377a93;
  color: white;
  border: none;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s;
  margin-top: 30px;
}

.consultancy-cta button:hover {
  transform: scale(1.05);
  background: #377a93;
  color: white;
}


/*1366 x 768*/