* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: Arial, Helvetica, sans-serif;
      background: #f5f5f5;
      color: #333;
    }

 
/* Spin animation */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


    /* HEADER */
    header {
      width: 100%;
      background: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 2rem;
      border-bottom: 1px solid #eee;
      position: fixed;
      top: 0;
      left: 0;
      z-index: 1000;
    }

    .logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo img {
  width: 28px;     /* adjust this number to control size */
  height: auto;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-text .main {
  font-size: 18px;
  font-weight: 700;
  color: #1E3A8A; /* deep blue */
}

.logo-text .sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: #f97316; /* orange */
  margin-top: -2px;
}

/* Mobile adjustment */
@media (max-width: 480px) {
  .logo-text .main {
    font-size: 16px;
  }
  .logo-text .sub {
    font-size: 9px;
    letter-spacing: 1.5px;
  }

   .logo img {
    width: 24px;
  }
}


    nav {
      flex: 1;
      text-align: center;
    }

    nav ul {
      list-style: none;
      display: flex;
      justify-content: center;
      gap: 2rem;
    }

    nav ul li a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: 0.3s;
    }

    nav ul li a:hover {
      color: #1E3A8A;
    }

    .btn {
      background: #1b96e3;
      color: #fff;
      padding: 0.6rem 1.2rem;
      border-radius: 6px;
      text-decoration: none;
      font-weight: 600;
      transition: background 0.3s ease;
    }

    .btn:hover {
      background: #55a9de;
    }

    /* Hamburger */
    .menu-toggle {
      font-size: 1.8rem;
      cursor: pointer;
      background: none;
      border: none;
      color: #000 !important;
      display: none;
      margin-left: 1rem;
    }
    .menu-toggle:focus {
      outline: none;
    }

    /* HERO SECTION BASE */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* DARK BLUE OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 20, 60, 0.75);
    z-index: 1;
}

/* TEXT CONTENT */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1b96e3;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
}


.hero-slideshow {
    animation: slideShow 18s infinite ease-in-out;
    background-size: cover;
    background-position: center;
}

@keyframes slideShow {
    0%   { background-image: url("img/shipmenthead.jpg"); }
    33%  { background-image: url("img/shipmenthead2.jpg"); }
    66%  { background-image: url("img/shipmenthead3.jpg"); }
    100% { background-image: url("img/shipmenthead4.jpg"); }
}






.about {
  position: relative;
  padding: 100px 0;
  background-color: #111827; /* fallback color */
  color: #fff;
  overflow: hidden;
}

.about-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

/* Make the forklift image a soft background */
.about-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

/* Dark overlay for contrast */
.about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}

.about-text {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin: auto;
  padding: 40px 20px;
}

.about-text h3 {
  color: #1b96e3;
  font-size: 1.2rem;
  text-transform: uppercase;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #fff;
}

.about-text p {
  color: #e5e7eb;
  font-size: 1rem;
  line-height: 1.8;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }

  .about-text p {
    font-size: 0.95rem;
  }
}


/* ===== Logistics Services Section ===== */

.logistics-section {
  background-color: #0d0d0d;
  color: #fff;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.logistics-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.logistics-header {
  text-align: center;
  margin-bottom: 60px;
}

.logistics-header h2 {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}

.logistics-header p {
  color: #d1d5db;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1rem;
}

.logistics-line {
  width: 60px;
  height: 3px;
  background-color: #1b96e3;
  margin: 25px auto 0;
  border-radius: 3px;
}

/* Grid Layout */
.logistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  justify-items: center;
  align-items: stretch;
}

/* Service Cards */
.logistics-card {
  background: #1a1a1a;
  border: 1px solid #2c2c2c;
  border-radius: 10px;
  padding: 45px 25px;
  width: 100%;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.logistics-card i {
  font-size: 40px;
  color: #1b96e3;
  margin-bottom: 18px;
  line-height: 1;
}

.logistics-card h3 {
  color: #fff;
  margin: 10px 0 14px;
  font-size: 1.15rem;
  font-weight: 600;
}

.logistics-card p {
  color: #d1d5db;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.logistics-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(245, 158, 11, 0.15);
  border-color: #55a9de;
}

/* Responsive */
@media (max-width: 1100px) {
  .logistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .logistics-card {
    max-width: 90%;
    margin: 0 auto;
    padding: 35px 20px;
  }
}

/* ===== Experience Section ===== */
.experience {
  background-color: #fff;
  padding: 100px 20px;
}

.experience-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}

.experience-image {
  flex: 1 1 45%;
  text-align: center;
}

.experience-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
}

.experience-content {
  flex: 1 1 50%;
}

.experience-content h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #111;
}

.experience-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experience-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.experience-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.experience-card .icon {
  width: 60px;
  height: 60px;
  background-color: #1b96e3;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.experience-card .text h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}

.experience-card .text p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
  .experience-container {
    flex-direction: column;
    text-align: center;
  }

  .experience-content {
    flex: 1 1 100%;
  }

  .experience-card {
    justify-content: center;
    text-align: left;
  }
}

@media (max-width: 576px) {
  .experience-content h2 {
    font-size: 1.8rem;
  }

  .experience-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .experience-card .icon {
    margin-bottom: 10px;
  }
}


/* ===== Values Section ===== */
.values {
  background-color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.values-container {
  max-width: 1100px;
  margin: 0 auto;
}

.values-intro {
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto 50px;
}

.values-icons {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.value-item {
  flex: 1 1 150px;
  max-width: 180px;
}

.icon-circle {
  width: 100px;
  height: 100px;
  background-color: #1b96e3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  margin: 0 auto 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.icon-circle:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.value-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
  line-height: 1.3;
}

/* Responsive */
@media (max-width: 768px) {
  .values-icons {
    gap: 25px;
  }

  .icon-circle {
    width: 80px;
    height: 80px;
    font-size: 1.5rem;
  }

  .value-item h4 {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .values-icons {
    flex-direction: column;
    align-items: center;
  }

  .value-item {
    max-width: 100%;
  }
}

/* ===== Quote Section ===== */
.quote-section {
  font-family: "Poppins", sans-serif;
}

.quote-hero {
  position: relative;
  background: url('img/forkliftworld.jpg')
    center/cover no-repeat;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.quote-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.quote-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.quote-content h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.quote-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
}

.quote-btn {
  display: inline-block;
  background: #1b96e3;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background: #55a9de;
}

/* ===== Stats Section ===== */
.stats-container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  background: #000;
  color: #fff;
  text-align: center;
}

.stat-box {
  flex: 1 1 250px;
  padding: 40px 20px;
  transition: background 0.3s ease;
}

.stat-box:nth-child(odd) {
  background: #111;
}

.stat-box:nth-child(even) {
  background: #0a0a0a;
}

.stat-box i {
  font-size: 2.5rem;
  color: #1b96e3;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-box p {
  color: #1b96e3;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .quote-content h2 {
    font-size: 1.8rem;
  }
  .quote-content p {
    font-size: 0.95rem;
  }
}

@media (max-width: 768px) {
  .quote-hero {
    height: 55vh;
  }
  .stat-box {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  .quote-content h2 {
    font-size: 1.5rem;
  }
  .quote-btn {
    padding: 10px 25px;
  }
}

.testimonials { 
  padding:70px 20px; 
  background:#efefef; 
}
.wrap { 
  max-width:1200px; 
  margin:0 auto; 
  text-align:center; 
}

/* Title + line */
.title { 
  font-size:48px; 
  font-weight:600; 
  margin:6px 0 6px; 
  letter-spacing:0.2px; 
}
.title span { 
  color:#000; 
}
.title-line { 
  width:110px; 
  height:4px; 
  background:#1b96e3; 
  margin:14px auto 22px; 
  border-radius:2px; 
  box-shadow:0 0 0 3px rgba(241,164,0,0.03) inset; 
}

/* Lead paragraph */
.lead { 
  max-width:760px; 
  margin:0 auto 36px; 
  color:#8b8b8b; 
  line-height:1.6; 
  font-size:15px; }

/* Cards container */
.cards { 
  display:flex; 
  gap:36px; 
  justify-content:space-between; 
  align-items:flex-start; 
  padding:10px 20px; 
}

/* Single card */
.card {
  background:#fff;
  padding:36px 36px 48px;
  border-radius:2px;
  width:calc((100% - 72px)/3);
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  position:relative;
  text-align:center;
  min-height:320px;
}

/* elevated center card like screenshot */
.card--center { 
  transform: translateY(-12px); 
  box-shadow: 0 18px 30px rgba(0,0,0,0.09); 
}

/* avatar */
.avatar { 
  width:110px; 
  height:110px; 
  border-radius:50%; 
  object-fit:cover; 
  display:block; 
  margin:0 auto 18px; 
}

/* quote text */
.quote { 
  color:#7f7f7f; 
  font-style:italic; 
  line-height:1.6; 
  font-size:14px; 
  margin:6px 12px 20px; 
}

/* big faded quote mark on right */
.quote-mark {
  position:absolute;
  right:28px;
  top:40%;
  transform:translateY(-50%);
  font-size:48px;
  color:rgba(0,0,0,0.08);
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* stars row */
.stars { 
  display:flex; 
  justify-content:center; 
  gap:6px; margin:8px 0 12px; 
  align-items:center; 
}
.star { 
  width:18px; 
  height:18px; 
  display:block; 
  fill:#f2b01e; 
  filter: drop-shadow(0 1px 0 rgba(0,0,0,0.15)); 
}
.star--empty { 
  fill: #e6e6e6; 
}

/* Name / country */
.name { 
  font-weight:700; 
  margin:6px 0 4px; 
  color:#222; 
  font-size:16px; 
}
.country { 
  color:#9b9b9b; 
  font-size:13px; 
  margin:0; 
}

/* responsive */
@media (max-width:980px){
  .cards { flex-direction:column; gap:22px; }
  .card { width:100%; transform:none; }
  .card--center { transform:none; }
  .wrap { padding:0 20px; }
  .title { font-size:34px; }
}






/* ============================= */
/* LEFT CONTACT WIDGET           */
/* ============================= */

.contact-widget {
    position: fixed;
    bottom: 25px;   /* SAME LEVEL AS CHAT BUTTON */
    left: 25px;
    z-index: 9999;
}

/* Main contact button */
.contact-main-btn {
    width: 55px;
    height: 55px;
    background: #1b96e3;
    border-radius: 50%;
    border: none;
    font-size: 22px;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* Upward panel — does NOT push main button */
.contact-icons {
    position: absolute;
    bottom: 70px; /* icons open upward above main button */
    left: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: 0.25s ease;
}

.contact-icons.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Buttons inside the stack */
.contact-icons a,
.close-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 22px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.telegram { background: #1b96e3; }
.whatsapp { background: #25D366; }
.close-btn { background: #a45de8; }

/* ============================= */
/* RIGHT CHAT WIDGET             */
/* ============================= */

.chat-widget {
    position: fixed;
    bottom: 25px;   /* SAME LEVEL AS CONTACT BUTTON */
    right: 25px;
    width: 60px;
    height: 60px;
    background: #1b96e3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;
}

.chat-icon {
    width: 30px;
    height: 30px;
}

.online-dot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #00e300;
    border-radius: 50%;
    border: 2px solid white;
}


/* CHAT WIDGET BUTTON (bottom right) */
.chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #1b96e3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    cursor: pointer;
    z-index: 9999;
}

.chat-icon {
    width: 30px;
}

/* Online dot */
.online-dot {
    position: absolute;
    bottom: -3px;
    right: -3px;
    width: 14px;
    height: 14px;
    background: #00e300;
    border-radius: 50%;
    border: 2px solid white;
}

/* CHAT BUTTON */
.chat-widget {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #1b96e3;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35);
    cursor: pointer;
    z-index: 9999;
}

.chat-icon { width: 30px; }

/* Green online dot */
.online-dot {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    background: #00e300;
    border-radius: 50%;
    border: 2px solid white;
}

/* POPUP */
.chat-popup {
    position: fixed;
    bottom: 95px; /* rises upward */
    right: 25px;
    width: 300px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px);
    transition: 0.25s ease;
    z-index: 9999;
}

/* When open */
.chat-popup.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

/* Header */
.chat-header {
    background: #1b96e3;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    border-radius: 15px 15px 0 0;
}

.chat-close {
    background: transparent;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Messages box */
.chat-messages {
    height: 220px;
    overflow-y: auto;
    padding: 10px;
    background: #f1f1f1;
}

.msg {
    padding: 8px 12px;
    margin-bottom: 10px;
    border-radius: 10px;
    max-width: 80%;
    font-size: 14px;
}

.msg.bot {
    background: #1b96e3;
    color: white;
    align-self: flex-start;
}

.msg.user {
    background: #d9d9d9;
    align-self: flex-end;
}

/* Input area */
.chat-input {
    display: flex;
    border-top: 1px solid #ddd;
}

.chat-input textarea {
    width: 100%;
    height: 45px;
    padding: 10px;
    border: none;
    resize: none;
    outline: none;
    font-size: 14px;
}

.send-btn {
    width: 50px;
    background: #1b96e3;
    border: none;
    color: white;
    cursor: pointer;
    font-size: 18px;
}

/* ===== ABOUT US HERO SECTION ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 380px;
  background: url('img/airplaneimg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 28, 54, 0.7); /* Dark overlay */
  z-index: 1;
}

.about-hero .about-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding: 0 15px;
}

.about-hero .about-content h1 {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.about-hero .about-content p {
  color: #1b96e3; /* Accent color */
  font-size: 1rem;
  font-weight: 500;
}

.about-hero .about-content p a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-hero .about-content p a:hover {
  color: #1b96e3;
}

/* Responsive */
@media (max-width: 600px) {
  .about-hero {
    height: 300px;
  }

  .about-hero .about-content h1 {
    font-size: 2.2rem;
  }
}

/* ===== GENERAL ===== */
section { padding: 70px 8%; }
h2 { margin-bottom: 20px; font-weight: 800; color: #1b96e3; }

/* ===== WHO WE ARE ===== */
.who-we-are .container {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}
.who-we-are .about-text { flex: 1 1 400px; }
.who-we-are .about-img { flex: 1 1 350px; }
.who-we-are .about-img img {
  width: 100%; border-radius: 10px;
}

.who-we-are {
  background: #ffffff; /* white background */
  padding: 80px 0;
}

.who-we-are h2 {
  color: #003366; /* dark navy or change to any color you want */
  font-weight: 700;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

.who-we-are p {
  color: #333; /* dark grey text for readability */
  line-height: 1.7;
  font-size: 1rem;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  display: flex; gap: 30px; flex-wrap: wrap;
}
.mv-box {
  flex: 1 1 300px;
  background: #f0f9ff; padding: 25px;
  border-left: 6px solid #1b96e3; border-radius: 10px;
}

/* ===== VALUES ===== */
.values { text-align: center; }
.value-list {
  display: flex; justify-content: center; gap: 15px;
  flex-wrap: wrap; margin-top: 25px;
}
.value-stat {
  padding: 12px 20px; background: #1b96e3; color: #fff;
  border-radius: 25px; font-weight: 600;
}

/* ===== CHOOSE US ===== */
.choose-us { text-align: center; }
.choose-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px; margin-top: 30px;
}
.choose-card {
  padding: 25px; border-radius: 12px;
  background: #f8fcff; border: 1px solid #e3eefe;
  transition: 0.3s ease;
}
.choose-card:hover { transform: translateY(-5px); border-color: #1b96e3; }
.choose-card i { font-size: 2.2rem; }

/* ===== STATS ===== */
.stats {
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 30px;
  text-align: center; background: #f8fcff;
}
.stat-box h2 { font-size: 2.8rem; color: #1b96e3; }

/* ===== WORKFLOW ===== */
.workflow { text-align: center; }
.steps {
  display: flex; justify-content: center; gap: 20px; margin-top: 30px; flex-wrap: wrap;
}
.step {
  padding: 12px 15px; background: #fff; border-radius: 10px;
  border: 2px dashed #1b96e3; font-weight: 600;
}
.step span {
  background: #1b96e3; color: #fff; padding: 5px 10px; border-radius: 50%;
  margin-right: 8px;
}

/* ===== CTA ===== */
.cta { text-align: center; background: #1b96e3; color: #fff; padding: 70px 8%; }
.cta-btn {
  display: inline-block; margin-top: 20px; padding: 12px 28px;
  background: #fff; color: #1b96e3; border-radius: 30px;
  font-weight: 700; transition: 0.3s;
}
.cta-btn:hover { background: #0d76c4; color: #fff; }

/* ===== Services Hero Section ===== */
.services-hero {
  position: relative;
  width: 100%;
  height: 380px;
  background: url('img/airplaneimg.jpg') center center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.services-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
}

.services-hero .our-services {
  position: relative;
  color: #fff;
  z-index: 2;
}

.services-hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: bold;
}

.services-hero p a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.services-hero p a:hover {
  color: #1b96e3;
}

/* ===== Services Intro ===== */
.services-intro {
  padding: 60px 7%;
  text-align: center;
}

.services-intro h2 {
  font-size: 2.2rem;
  color: #1b96e3;
  font-weight: 700;
  margin-bottom: 20px;
}

.services-intro p {
  max-width: 800px;
  margin: auto;
  line-height: 1.7;
  color: #333;
}

.text-only .service-text.full {
  flex: 1;
  padding: 0 10px;
}

.service-box {
  padding: 70px 0;
}

.service-text h2 {
  color: #1b96e3;
  font-size: 2rem;
  margin-bottom: 18px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

.service-text p {
  color: #495e73;
  font-size: 1rem;
  line-height: 1.65rem;
  margin-bottom: 14px;
}

/* Center Service Text */
.service-box .container {
  display: flex;
  justify-content: center;
  text-align: center;
}

.service-text.full {
  max-width: 900px;
  margin: 0 auto;
}

.service-text.full p {
  text-align: center;
}

.service-text {
  text-align: center;
}

/* ==== Solutions Banner ==== */
.solutions-banner {
  background: url('img/airplaneimg.jpg') center/cover no-repeat;
  height: 380px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
  position: relative;
}

.solutions-banner::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.solutions-banner h1,
.solutions-banner p {
  position: relative;
  z-index: 2;
}

.solutions-banner h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.solutions-banner p {
  font-size: 1.1rem;
  margin-top: 10px;
  color: #ffdc75;
}

/* ==== Intro ==== */
.solutions-intro {
  text-align: center;
  padding: 60px 15px;
  max-width: 900px;
  margin: auto;
}

.solutions-intro h2 {
  font-size: 2.2rem;
  color: #1b96e3;
  margin-bottom: 15px;
  font-weight: 700;
}

.solutions-intro p {
  color: #444;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ==== Features Section ==== */
.solutions-features {
  padding: 70px 20px;
  background: #f8fafc;
}

.solutions-features h2 {
  text-align: center;
  font-size: 2.2rem;
  color: #1b96e3;
  font-weight: 700;
  margin-bottom: 40px;
}

.tech-img {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.tech-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1100px;
  margin: auto;
}

.feature-card {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

.feature-card h3 {
  margin-bottom: 10px;
  color: #1b96e3;
  font-size: 1.25rem;
  font-weight: 600;
}

.feature-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==== Process Section ==== */
.solutions-process {
  padding: 70px 20px;
  text-align: center;
  padding-bottom: 120px !important;
}

.solutions-process h2 {
  color: #1b96e3;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.step {
  background: #fff;
  border-radius: 12px;
  padding: 30px 20px;
  border-top: 4px solid #1b96e3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  position: relative;
  transition: transform 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
}

.step-number {
  background: #1b96e3;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 auto 10px;
}

.step h3 {
  font-size: 1.2rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 600;
}

.step p {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ==== Responsive ==== */
@media (max-width: 600px) {
  .solutions-banner h1 {
    font-size: 2rem;
  }

  .features-grid, 
  .process-steps {
    grid-template-columns: 1fr;
  }
}







/* ===== Industries Style (Premium) ===== */
.industries {
  padding: 80px 7%;
  background: #ffffff;
  text-align: center;
}

.industries h2 {
  font-size: 2.3rem;
  font-weight: 800;
  color: #1b96e3;
  margin-bottom: 10px;
}

.ind-subtext {
  color: #444;
  font-size: 1rem;
  margin-bottom: 40px;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #f7fbff;
  border: 1px solid #e4f1ff;
  padding: 25px 20px;
  border-radius: 14px;
  transition: 0.3s ease;
  position: relative;
  min-height: 250px;
}

.industry-card:hover {
  background: #1b96e3;
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 55, 100, 0.15);
}

.industry-card:hover h3,
.industry-card:hover p {
  color: #ffffff;
}

.icon-box {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: #e6f4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: #1b96e3;
  transition: 0.3s ease;
}

.industry-card:hover .icon-box {
  background: #ffffff;
  color: #1b96e3;
  transform: scale(1.15);
}

.industry-card h3 {
  font-size: 1.2rem;
  color: #003b60;
  margin-bottom: 10px;
  font-weight: 700;
}

.industry-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}


/* ===== Value Added Services ===== */
.value-added {
  padding: 80px 0;
  background: #f8fbff;
}

.value-added h2 {
  text-align: center;
  font-size: 2.3rem;
  font-weight: 700;
  color: #004b7a;
  margin-bottom: 50px;
  position: relative;
}

.value-added h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: #1b96e3;
  display: block;
  margin: 10px auto 0;
  border-radius: 5px;
}

/* Grid Layout */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* Card Style */
.value-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #e2edf8;
  box-shadow: 0px 5px 16px rgba(0, 60, 110, 0.05);
  text-align: center;
  transition: 0.3s ease-in-out;
}

.value-box img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* Text Style */
.value-box h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: #1b96e3;
  margin-bottom: 10px;
}

.value-box p {
  color: #495e73;
  font-size: 0.95rem;
  line-height: 1.5rem;
  padding: 0 5px;
}

/* Hover Effects */
.value-box:hover {
  transform: translateY(-7px);
  box-shadow: 0px 7px 20px rgba(0, 60, 110, 0.12);
  border-color: #1b96e3;
}


/* ===== Logistics Technology List Styling ===== */
.logistics-tech ul {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.logistics-tech ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #f6fbff;
  border: 1px solid #e3efff;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 10px;
  font-size: 0.95rem;
  color: #004b7a;
  transition: 0.3s ease-in-out;
}

.logistics-tech ul li::before {
  content: "✔";
  color: #1b96e3;
  font-weight: 700;
  font-size: 1rem;
  display: inline-block;
  width: 18px;
}

.logistics-tech ul li:hover {
  background: #1b96e3;
  color: #ffffff;
  border-color: #1b96e3;
  transform: translateX(5px);
}

.logistics-tech ul li:hover::before {
  color: #ffffff;
}


.logistics-tech ul li {
  position: relative;
  overflow: hidden;
}

.logistics-tech ul li:hover {
  box-shadow: 0 6px 18px rgba(0, 70, 130, 0.15);
}





 

    .footer {
      position: relative;
      background-color: #1a1a1a;
      color: #fff;
      padding: 60px 20px 40px;
      overflow: hidden;
    }

    .footer::before {
      content: "Freight";
      position: absolute;
      font-size: 160px;
      font-weight: 700;
      color: rgba(255, 255, 255, 0.04);
      bottom: 10px;
      right: 5%;
      z-index: 0;
      white-space: nowrap;
    }

    .footer-container {
      max-width: 1200px;
      margin: auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      position: relative;
      z-index: 1;
    }

    .footer-left {
      flex: 1 1 300px;
      margin-bottom: 30px;
      background: #2a2a2a;
      padding: 30px;
      border-radius: 8px;
    }

    .footer-left h2 {
      font-size: 22px;
      margin-bottom: 10px;
    }

    .footer-left p {
      color: #bbb;
      font-size: 15px;
      margin-bottom: 20px;
    }

    .footer-left button {
      background: #1b96e3;
      color: #000;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      font-weight: 600;
      cursor: pointer;
    }

    .footer-columns {
      display: flex;
      flex: 2 1 600px;
      gap: 40px;
      flex-wrap: wrap;
    }

    .footer-column h4 {
      font-size: 14px;
      margin-bottom: 16px;
      color: #ccc;
      text-transform: uppercase;
    }

    .footer-column ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-column ul li {
      margin-bottom: 10px;
    }

    .footer-column ul li a {
      color: #eee;
      text-decoration: none;
      font-size: 15px;
    }

    .footer-column ul li a:hover {
      color: #1b96e3;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 40px;
      flex-wrap: wrap;
      z-index: 1;
      position: relative;
    }

    .language-select select {
      padding: 8px 10px;
      background: #2a2a2a;
      color: #fff;
      border: 1px solid #444;
      border-radius: 4px;
    }

    .footer-legal {
      font-size: 13px;
      color: #aaa;
      margin-top: 20px;
    }

    .social-icons {
      display: flex;
      gap: 16px;
      align-items: center;
      margin-top: 20px;
    }

    .social-icons a {
      color: #fff;
      font-size: 20px;
      text-decoration: none;
    }

    .social-icons a:hover {
      color: #1b96e3;
    }

    @media (max-width: 768px) {
    .footer-container {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .footer-columns {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-column ul {
    align-items: center;
  }

  .footer-column ul li a {
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center !important;
    text-align: center;
  }

  .language-select select {
    margin: 0 auto;
  }

  .social-icons {
    justify-content: center;
  }
}


   
   


  

    @media (max-width: 900px) {
      nav ul {
        position: absolute;
        top: 70px;
        right: 0;
        background: #fff;
        flex-direction: column;
        width: 220px;
        padding: 1rem;
        gap: 1rem;
        display: none;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      }

      nav ul.active {
        display: flex;
      }

      .menu-toggle {
        display: block;
      }
    }


    /* ===== HERO ===== */
.contact-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: linear-gradient(rgba(10, 45, 100, 0.8), rgba(10, 45, 100, 0.8)), url('img/warehouse.png');
  background-size: cover;
  background-position: center;
  color: #fff;
}
.contact-hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
}
.contact-hero p {
  font-size: 18px;
  opacity: 0.9;
}

/* ===== GRID ===== */
.contact-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  padding: 80px 12%;
}
.contact-info-box, .contact-form-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  border: 1px solid #e5e5e5;
}
.contact-info-box h2, 
.contact-form-box h2 {
  color: #0a3c88;
  margin-bottom: 20px;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 15px;
}
.form-group input, 
.form-group textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c6c6c6;
  font-size: 16px;
  transition: 0.3s;
}
.form-group input:focus, 
.form-group textarea:focus {
  border-color: #0a66cc;
  box-shadow: 0 0 4px rgba(0,102,204,0.3);
}
textarea {
  height: 120px;
  resize: none;
}
.contact-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background: #0a66cc;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-btn:hover {
  background: #054a94;
}

/* ===== MAP ===== */
.map-section {
  margin-top: 60px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 50px 5%;
  }
  .contact-hero h1 {
    font-size: 32px;
  }
}

.contact-btn {
  display: inline-block;
  padding: 10px 22px;
  background: #0077ff;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
  font-size: 15px;

  /* 👉 limits the width */
  max-width: 180px;
  text-align: center;
}

.contact-btn:hover {
  background: #005ec2;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.15);
}

.chat-popup.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.msg.bot {
    background: #0077ff;
    color: white;
    border-radius: 10px 10px 10px 0;
}

.msg.user {
    background: #e8e8e8;
    color: #333;
    border-radius: 10px 10px 0 10px;
    align-self: flex-end;
}


/* Popup Background Blur */
.popup-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
  display: none;
  z-index: 999;
}

/* Popup Box */
.popup-box {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: #ffffff;
  padding: 25px;
  width: 90%;
  max-width: 380px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  text-align: center;
  z-index: 1000;
  display: none;
  transition: 0.3s ease-in-out;
}

.popup-box.show {
  transform: translate(-50%, -50%) scale(1);
}

/* Popup Button */
.popup-btn {
  background: #004aad;
  color: #fff;
  border: none;
  padding: 10px 16px;
  margin-top: 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.popup-btn:hover {
  background: #003a8f;
}





  