* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Fullscreen overlay */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Loader box */
.loader {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: float 1.6s ease-in-out infinite;
}

/* Logo */
.loader img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 50%;
  opacity: 0.9;
}

/* Orange shadow / ring */
.loader .shadow {
  width: 90px;
  height: 14px;
  background: rgba(255, 160, 0, 0.35);
  border-radius: 50%;
  margin-top: -8px;
  filter: blur(3px);
}

/* Floating effect */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

/* When done loading */
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* ===== Top Bar ===== */
.top-bar {
  background: #f8f8f8;
  border-bottom: 1px solid #eee;
  padding: 8px 8%;
  font-size: 14px;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.language-select select {
  padding: 4px 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
}


/* ===== NAVBAR ===== */
.navbar {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 14px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ===== LOGO ===== */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #222;
  font-size: 18px;
  font-weight: 600;
}

.logo span {
  color:#383636;
}

.logo strong {
  color: #ffb400;
}

.logo img {
  height: 40px;
}


/* .nav-links ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: #383636;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffb400;
}


.dropdown {
  position: relative;
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  cursor: pointer;
}

.dropdown .arrow {
  transition: transform 0.3s ease;
}


.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 6px;
  display: none;
  flex-direction: column;
  min-width: 230px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}


.dropdown:hover .dropdown-menu {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}


.dropdown-menu li a {
  padding: 12px 18px;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s;
}

.dropdown-menu li a:hover {
  color: #ffb400;
}


.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1100;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background-color: #222;
  margin: 4px 0;
  transition: 0.3s ease;
}


.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


@media (max-width: 900px) {
  .nav-links ul {
    position: fixed;
    top: 0;
    left: -100%;        
    width: 70%;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 20px;
    gap: 20px;
    display: flex;
    transition: left 0.3s ease;
    z-index: 9999;
    box-shadow: 2px 0 15px rgba(0, 0, 0, 0.15);
}

  

  .nav-links.show ul {
    left: 0;   
}


  .menu-toggle {
    display: flex;
  }

 
  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .dropdown.open .dropdown-menu {
    display: flex;
    opacity: 1;
    transform: translateY(0);
    position: static;
    box-shadow: none;
    padding-left: 10px;
  }

  .dropdown-menu li a {
    padding: 8px 16px;
    color: #333;
  }
} */

/* ===== BASE NAV LINKS ===== */
.nav-links ul {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 26px;
}

.nav-links a {
  text-decoration: none;
  color: #383636;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
  transition: 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffb400;
}



/* ===== HAMBURGER ===== */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 999999;
}

.menu-toggle .bar {
  width: 25px;
  height: 3px;
  background: #222;
  margin: 4px 0;
  transition: 0.3s;
}

/* Hamburger → X */
.menu-toggle.active .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle.active .bar:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== MOBILE MENU ===== */
@media (max-width: 900px) {

  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links ul {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  
  .menu-toggle {
    display: flex;
  }
}

/* ===== DROPDOWN BASE ===== */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 120%;
  left: 0;
  min-width: 230px;
  background: #fff;
  padding: 10px 0;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: none;
  flex-direction: column;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}






/* ===== Hero Section (Swipe Background) ===== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #fff;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: background-image 1.2s ease-in-out;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg.active {
  opacity: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
}

.hero h4 {
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #fbbf24;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: "Open Sans", sans-serif;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 25px;
}

.btn {
  display: inline-block;
  background: #f59e0b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #d97706;
}


/* ===== Sections ===== */
.section {
  padding: 80px 8%;
  text-align: center;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}



/* ===== About Section ===== */
.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: #f59e0b;
  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: #f59e0b;
  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: #f59e0b;
  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: #f59e0b;
}

/* 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;
  }
}


/* ===== WHO WE ARE SECTION ===== */
.who-we-are {
  background: #fff;
  padding: 100px 8%;
}

.who-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.who-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.who-images .who-img {
  width: 80%;
  max-width: 450px;
  object-fit: contain;
}

.who-text {
  flex: 1;
  max-width: 600px;
}

.who-text h3 {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #222;
  margin-bottom: 15px;
}

.who-text h2 {
  font-size: 28px;
  line-height: 1.5;
  color: #333;
  margin-bottom: 20px;
  font-weight: 500;
}

.who-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.8;
}

/* Responsive Layout */
@media (max-width: 900px) {
  .who-container {
    flex-direction: column;
    text-align: center;
  }

  .who-images .who-img {
    width: 60%;
  }

  .who-text h2 {
    font-size: 24px;
  }
}


.mission-section {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 80px 10%;
      gap: 40px;
      flex-wrap: wrap;
      background-color: #000;
    }

    .mission-text {
      flex: 1;
      min-width: 320px;
    }

    .mission-text h4 {
      color: #ff9900;
      text-transform: uppercase;
      letter-spacing: 2px;
      font-weight: 600;
      margin-bottom: 20px;
      font-size: 0.95rem;
    }

    .mission-text h2 {
      font-size: 1.9rem;
      line-height: 1.5;
      font-weight: 500;
      margin-bottom: 25px;
      color: #fff;
    }

    .mission-text p {
      color: #cfcfcf;
      font-size: 1rem;
      line-height: 1.7;
      max-width: 600px;
    }

    .mission-image {
      flex: 1;
      min-width: 320px;
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .mission-image img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* Responsive layout */
    @media (max-width: 900px) {
      .mission-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
      }

      .mission-text {
        padding-right: 0;
      }

      .mission-text h2 {
        font-size: 1.6rem;
      }

      .mission-text p {
        font-size: 0.95rem;
      }

      .mission-image {
        margin-top: 30px;
      }
    }

    @media (max-width: 500px) {
      .mission-text h2 {
        font-size: 1.4rem;
      }
    }


    .choose-section {
      text-align: center;
      padding: 80px 10%;
      background-color: #fff;
    }

    .choose-section h2 {
      font-size: 2rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .choose-section .underline {
      width: 80px;
      height: 3px;
      background-color: #ff9900;
      margin: 10px auto 25px;
      border-radius: 3px;
    }

    .choose-section p {
      color: #555;
      font-size: 1rem;
      line-height: 1.7;
      max-width: 800px;
      margin: 0 auto 60px;
    }

    .choose-icons {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
      gap: 40px;
      justify-items: center;
    }

    .choose-item {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .choose-item .icon-circle {
      background-color: #ff9900;
      border-radius: 50%;
      width: 90px;
      height: 90px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
      transition: transform 0.3s ease;
    }

    .choose-item .icon-circle:hover {
      transform: scale(1.05);
    }

    .choose-item i {
      font-size: 38px;
      color: #fff;
    }

    .choose-item h4 {
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      color: #000;
      margin-top: 5px;
    }

    @media (max-width: 768px) {
      .choose-section {
        padding: 60px 6%;
      }

      .choose-section h2 {
        font-size: 1.6rem;
      }

      .choose-item .icon-circle {
        width: 80px;
        height: 80px;
      }

      .choose-item i {
        font-size: 32px;
      }
    }



    /* Hero Section */
    .faq-hero {
      position: relative;
      background: url("img/airplaneimg.jpg") center/cover no-repeat;
      height: 400px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-align: center;
    }

    .faq-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.6);
    }

    .faq-hero-content {
      position: relative;
      z-index: 2;
    }

    .faq-hero-content h1 {
      font-size: 2.3rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .faq-hero-content a {
      color: white;
      text-decoration: none;
    }

    .faq-hero-content p {
      font-size: 0.95rem;
      color: #ff9900;
    
    }

    /* FAQ Section */
    .faq-section {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      flex-wrap: wrap;
      padding: 80px 10%;
      gap: 40px;
    }

    .faq-text {
      flex: 1;
      min-width: 280px;
    }

    .faq-text h2 {
      font-size: 1.8rem;
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }

    .faq-text p {
      font-size: 1rem;
      color: #666;
      max-width: 500px;
      line-height: 1.7;
    }

    .faq-image {
      flex: 1;
      min-width: 280px;
      display: flex;
      justify-content: center;
    }

    .faq-image img {
      max-width: 100%;
      height: auto;
      object-fit: contain;
    }

    /* Accordion Styles */
    .accordion {
      flex: 1;
      min-width: 300px;
      border: 1px solid #ddd;
      border-radius: 6px;
      overflow: hidden;
    }

    .accordion-item {
      border-bottom: 1px solid #ddd;
    }

    .accordion-header {
      background-color: #fff;
      color: #333;
      cursor: pointer;
      padding: 16px 20px;
      font-weight: 500;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
    }

    .accordion-header:hover {
      background-color: #f9f9f9;
    }

    .accordion-header i {
      color: #ff9900;
      transition: transform 0.3s ease;
    }

    .accordion-content {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease;
      background-color: #fff;
      padding: 0 20px;
    }

    .accordion-content p {
      color: #555;
      font-size: 0.95rem;
      line-height: 1.6;
      margin: 15px 0;
    }

    .accordion-item.active .accordion-content {
      max-height: 200px;
      padding: 10px 20px 20px;
    }

    .accordion-item.active .accordion-header i {
      transform: rotate(45deg);
    }

    /* Responsive */
    @media (max-width: 900px) {
      .faq-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 6%;
      }

      .accordion {
        width: 100%;
      }

      .faq-text p {
        margin: 0 auto 30px;
      }

      .faq-image {
        order: 3;
      }
    }


  /* Header Section */
.contact-header {
  background: url('img/airplaneimg.jpg')
    center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.contact-header .overlay {
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 50px 100px;
  border-radius: 8px;
}

.contact-header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.contact-header a {
  color: #ffa500;
  text-decoration: none;
}

.contact-header p {
  font-size: 1rem;
  color: #ddd;
}

/* Contact Section */
.contact-section {
  padding: 60px 10%;
  background: #fff;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 50px;
}

/* Contact Info */
.contact-info {
  flex: 1 1 45%;
  order: 1;
}

.contact-info h2 {
  font-size: 1.8rem;
  color: #333;
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  color: #666;
  margin-bottom: 25px;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #444;
}

.info-item .icon {
  font-size: 1.3rem;
  margin-right: 10px;
  color: #ffa500;
}

/* Contact Form */
.contact-form {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  order: 2;
}

.contact-form input,
.contact-form textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #ffa500;
}

.contact-form button {
  background-color: #ffa500;
  color: white;
  border: none;
  padding: 15px;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form button:hover {
  background-color: #e59500;
}

/* Responsive Design */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;          /* ✅ center horizontally */
    text-align: center;
  }

  .contact-info,
  .contact-form {
    flex: 1 1 100%;
  }

  .contact-info {
    order: 1;
  }

  .contact-form {
    order: 2;
  }

  .contact-header .overlay {
    padding: 30px;
  }

  .contact-header h1 {
    font-size: 2rem;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 40px 5%;
  }

  .contact-info h2 {
    font-size: 1.5rem;
  }

  .contact-form button {
    font-size: 0.95rem;
    padding: 12px;
  }
}




/* ===== About Hero Section ===== */
.about-hero {
  position: relative;
  width: 100%;
  height: 400px;
  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, 0, 0, 0.6); /* dark overlay */
  z-index: 1;
}

.about-hero .about-content {
  position: relative;
  z-index: 2;
  color: #fff;
}

.about-hero .about-content h1 {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.about-hero .about-content p {
  color: #ffa500; /* gold/orange accent */
  font-size: 1rem;
}

.about-hero .about-content p a {
  color: #fff;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-hero .about-content p a:hover {
  color: #ffa500;
}

/* Optional: responsive tweak */
@media (max-width: 768px) {
  .about-hero {
    height: 300px;
  }
  .about-hero .about-content h1 {
    font-size: 2.2rem;
  }
}

















/* ===== 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: #f59e0b;
  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;
  }
}



/* ===== Hero Banner ===== */
.tracking-hero {
  position: relative;
  background: url('img/airplaneimg.jpg') center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
}

.tracking-hero-overlay {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.tracking-hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.tracking-hero p {
  font-size: 0.95rem;
  color: #fff;
}

.tracking-hero p a {
  color: #f59e0b;
  text-decoration: none;
  transition: color 0.3s;
}

.tracking-hero p a:hover {
  color: #f59e0b;
}

/* ===== Tracking Section ===== */
.tracking-section {
  background: #fff;
  padding: 80px 20px;
  text-align: center;
}

.tracking-container {
  max-width: 800px;
  margin: 0 auto;
}

.tracking-section h2 {
  font-size: 1.8rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 30px;
}


.tracking-image {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 10px;
}

.tracking-image img {
  width: 100%;
  max-width: 450px;   /* image size on large screens */
  height: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px; /* optional */
}

/* 📱 Mobile optimization */
@media (max-width: 600px) {
  .tracking-image img {
    max-width: 100%;   /* allow full width on small screens */
    border-radius: 6px;
  }
}






#trackForm {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
  flex-wrap: wrap; /* Makes it stack nicely on extra-small screens */
}

#trackForm input {
  width: 100%;
  max-width: 320px;
  padding: 12px 15px;
  border: 2px solid #ff9d00;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
  transition: 0.3s ease;
}

#trackForm input:focus {
  border-color: #f28a00;
  box-shadow: 0 0 6px rgba(242, 138, 0, 0.4);
}

#trackForm button {
  background: #ff9d00;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  font-size: 18px;
  transition: 0.3s ease;
}

#trackForm button:hover {
  background: #f28a00;
  transform: scale(1.05);
}

#trackForm button i {
  pointer-events: none;
}

/* Mobile optimization */
@media (max-width: 480px) {
  #trackForm {
    gap: 12px;
  }

  #trackForm input {
    max-width: 100%;
  }

  #trackForm button {
    width: 100%;
    font-size: 16px;
  }
}








/* ===== 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: #f59e0b;
  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/cargo.webp')
    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: #f59e0b;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 30px;
  border-radius: 4px;
  transition: background 0.3s ease;
}

.quote-btn:hover {
  background: #d97706;
}

/* ===== 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: #f59e0b;
  margin-bottom: 15px;
}

.stat-box h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.stat-box p {
  color: #f59e0b;
  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:#f1a400; 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; }
}



/* ===== Scroll Reveal Animations ===== */
.reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
  will-change: transform, opacity;
}

.reveal-left {
  transform: translateX(-60px);
}

.reveal-right {
  transform: translateX(60px);
}

.reveal-left.active, 
.reveal-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ===== Additional Scroll Reveal Styles ===== */
.reveal-up, .reveal-down {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease;
  will-change: transform, opacity;
}

.reveal-down {
  transform: translateY(-40px);
}

.reveal-up.active,
.reveal-down.active {
  opacity: 1;
  transform: translateY(0);
}

/* Footer Styles */
.footer {
  background: #000;
  color: #fff;
  padding: 60px 10%;
  font-family: "Poppins", sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 60px;
  margin-bottom: 40px;
}

/* Logo section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.footer-logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer-logo h2 {
  font-size: 18px;
  line-height: 1.3;
  font-weight: 600;
}

.footer-logo span {
  color: #ffa500; /* orange accent */
}

/* Text and link styles */
.footer-col p {
  color: #bbb;
  line-height: 1.6;
  font-size: 14px;
}

.footer-col h3 {
  font-size: 17px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: #bbb;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-col ul li a:hover {
  color: #ffa500;
}

/* Email line */
.footer-col p i {
  margin-right: 8px;
}

/* Bottom line */
.footer-bottom {
  text-align: center;
  border-top: 1px solid #222;
  padding-top: 20px;
  font-size: 14px;
  color: #ccc;
}


/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .logo img {
    height: 42px;
  }

  .logo-main {
    font-size: 1.2rem;
  }

  .logo-sub {
    font-size: 0.8rem;
  }
  
  
  .nav {
    display: none;
    flex-direction: column;
    background:#433838;
    width: 100%;
    position: absolute;
    top: 65px;
    left: 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .nav.active {
    display: flex;
  }

  .nav ul {
    flex-direction: column;
    text-align: center;
  }

  .nav li {
    margin: 15px 0;
  }

  .menu-toggle {
    display: flex;
  }

   /* Transform hamburger into X when active */
  .menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    height: 60vh; /* smaller for mobile */
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero h4 {
    font-size: 1rem;
  }
}


/* ===== Chat Support ===== */
.chat-btn {
  position: fixed;
  bottom: 25px;
  left: 25px;
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
  z-index: 9999 !important;
}

.chat-btn:hover {
  transform: scale(1.1);
}

.chat-support {
  position: fixed;
  bottom: 90px;
  left: 25px;
  width: 320px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000  !important;
  animation: fadeIn 0.3s ease;
}

.chat-header {
  background: #f59e0b;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chat-header button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}

.chat-body {
  padding: 15px;
  height: 250px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fafafa;
}

.chat-body::-webkit-scrollbar {
  width: 6px;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 10px;
}

/* Messages */
.bot-message,
.user-message {
  padding: 10px 12px;
  border-radius: 10px;
  max-width: 80%;
  line-height: 1.4;
  font-size: 14px;
}

.bot-message {
  background: #f3f4f6;
  align-self: flex-start;
}

.user-message {
  background: #f59e0b;
  color: #fff;
  align-self: flex-end;
}

/* Input Area */
.chat-input-area {
  display: flex;
  border-top: 1px solid #ddd;
}

.chat-input-area input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 14px;
  outline: none;
}

.chat-input-area button {
  background: #f59e0b;
  color: #fff;
  border: none;
  padding: 0 15px;
  cursor: pointer;
  font-size: 14px;
}

.chat-input-area button:hover {
  background: #d97706;
}

@keyframes fadeIn {
  from {opacity: 0; transform: translateY(10px);}
  to {opacity: 1; transform: translateY(0);}
}

/* Responsive Chat */
@media (max-width: 600px) {
  .chat-support {
    width: 90%;
    left: 5%;
    bottom: 80px;
  }

  .chat-btn {
    left: 15px;
    bottom: 15px;
  }
}


/* ===== Floating Contact Button ===== */
.contact-floating {
  position: fixed;
  bottom: 25px;
  right: 35px;
  z-index: 999 !important;
}

.main-btn {
  background: #f59e0b;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, background 0.3s ease;
}

.main-btn:hover {
  transform: scale(1.1);
  background: #d97706;
}

/* Social Icons (hidden by default) */
.social-icons {
  position: absolute;
  bottom: 70px;
  right: 6px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 1.3rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  text-decoration: none;
}

.telegram {
  background: #0088cc;
}

.whatsapp {
  background: #25D366;
}

.contact-floating.active .social-icons {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

/* Change main button to X when active */
.contact-floating.active .main-btn i {
  transform: rotate(180deg);
}

.contact-floating.active .main-btn i::before {
  content: "\f00d"; /* FontAwesome times icon */
}

/* Responsive */
@media (max-width: 600px) {
  .main-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }

  .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
}

/* Solutions Page Styling */
.solution {
  position: relative;
  background: url('img/airplaneimg.jpg') center/cover no-repeat;
  padding: 120px 20px;
  color: #fff;
  text-align: center;
}

.solution .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.solution-content {
  position: relative;
  z-index: 3;
}

.solution-content h1 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #FFA500;
}

.solution-content p {
  margin-top: 10px;
  font-size: 18px;
}

.solution-content p a {
  color: #FFD700;
  text-decoration: none;
  transition: color 0.3s ease;
}

/* Solutions Details Section */
.solutions-wrapper {
  padding: 80px 20px;
  background: #f9f9f9;
}

.solutions-container {
  max-width: 1100px;
  margin: auto;
}

.solutions-heading {
  font-size: 35px;
  color: #FFA500;
  text-align: center;
  margin-bottom: 15px;
  font-weight: 700;
}

.solutions-intro {
  text-align: center;
  font-size: 18px;
  color: #333;
  line-height: 1.8;
  max-width: 850px;
  margin: 0 auto 40px;
}

.solutions-list {
  list-style: none;
  padding: 0;
}

.solutions-list li {
  background: #fff;
  margin-bottom: 35px;
  padding: 25px 30px;
  border-left: 6px solid #FFA500;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.solutions-list li h3 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
}

.solutions-list li p {
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.solutions-extra {
  margin-top: 50px;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.solutions-extra h2 {
  font-size: 30px;
  color: #FFA500;
  margin-bottom: 15px;
  font-weight: 700;
}

.solutions-extra p {
  font-size: 17px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .solution-content h1 {
    font-size: 36px;
  }

  .solutions-list li {
    padding: 20px;
  }

  .solutions-extra h2 {
    font-size: 26px;
  }
}

/* Popup Background */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* Popup Box */
.popup-content {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  text-align: center;
  animation: popupFade 0.3s ease-in-out;
}

/* Animation */
@keyframes popupFade {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.popup-content h2 {
  color: #ffa500;
  margin-bottom: 10px;
}

.popup-content p {
  color: #444;
  margin-bottom: 20px;
}

.popup-content button {
  background: #ffa500;
  border: none;
  padding: 10px 25px;
  color: #fff;
  border-radius: 6px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}

.popup-content button:hover {
  background: #e68a00;
}

