body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
  }

  body {
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* Internet Explorer/Edge */
    user-select: none;          /* Standard syntax */
  }
  .container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
  }
  header {
    background-color: #000000;
    color: white;
    padding: 20px 0;
  }
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}
nav {
  display: flex;
  order: 3;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav ul li a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

nav.active {
  display: block;
}

nav ul.mobile-hidden {
  display: none;
  flex-direction: column;
  width: 100%;
}

nav ul.mobile-visible {
  display: flex;
}

  nav ul li {
	margin-left: 15px;
}

  .logo {
    display: flex;
    align-items: center;
  }
  .logo img {
    height: 50px;
    margin-right: 10px;
  }
  section {
    padding: 60px 0;
  }
  .banner {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('https://via.placeholder.com/1920x500?text=Import+Export+Services') no-repeat center center/cover;
    text-align: center;
    color: white;
    padding: 120px 20px;
  }
  .banner h2 {
    font-size: 48px;
    margin-bottom: 10px;
  }
  .banner p {
    font-size: 18px;
  }
  .banner a {
    display: inline-block;
    margin-top: 20px;
    background: #ffffff;
    color: #000000;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
  }
  .section-title {
    color: #000000;
    margin-bottom: 30px;
    text-align: center;
    font-size: 32px;
    position: relative;
  }
  .section-title::after {
    content: '';
    width: 60px;
    height: 3px;
    background: #000000;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .services-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  .service-card {
    background: #f5f5f5;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }
  .service-card i {
    font-size: 36px;
    color: #000000;
    margin-bottom: 15px;
  }
  .about-text {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
  }
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.col {
    flex: 1;
    min-width: 280px;
}

  .vision-mission {
    background: #f9f9f9;
    padding: 40px 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  .cta {
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 60px 20px;
  }
  form input,
        form textarea {
            width: 100%;
            padding: 12px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-family: 'Poppins', sans-serif;
            box-sizing: border-box;
        }

        form button {
            background-color: #000000;
            color: white;
            padding: 12px 25px;
            border: none;
            border-radius: 5px;
            font-weight: bold;
            cursor: pointer;
        }

  .contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
  }
  .contact-wrapper i {
    color: #000000;
    margin-right: 8px;
  }
  .footer {
    background-color: #f4f4f4;
    color: #000;
    padding: 30px 20px;
    text-align: center;
    font-size: 14px;
  }

  /* Scroll to top button */
  #scrollTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    font-size: 20px;
    background-color: #000000;
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  }

  #scrollProgress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background-color: #d3d3d3; /* light grey */
    z-index: 999;
    transition: width 0.25s ease-out;
  }

  .cta .container {
    max-width: 800px;
    margin: 0 auto;
  }
  .contact-info a {
  color: #000000;
  text-decoration: none;
}
.contact-info a:hover {
  text-decoration: underline;
}

  /* FAQ Section */
.faq-section {
  padding: 60px 20px;
  background-color: #f9f9f9;
}
.faq-section h2 {
  text-align: center;
  color: #000000;
  margin-bottom: 40px;
}
.accordion {
  max-width: 800px;
  margin: 0 auto;
}
.accordion-item {
  background: white;
  border-radius: 5px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  overflow: hidden;
}
.accordion-header {
  background: #000000;
  color: white;
  cursor: pointer;
  padding: 15px 20px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-header i {
  transition: transform 0.3s ease;
}
.accordion-header.active i {
  transform: rotate(180deg);
}
.accordion-body {
  display: none;
  padding: 20px;
  background: #fdfdfd;
  border-top: 1px solid #ccc;
}

.faq {
  max-width: 800px;
  margin: 0 auto 20px;
}
.faq h4 {
  color: #000000;
  margin-bottom: 10px;
}
.faq p {
  margin: 0 0 20px;
}

/* Testimonials */
.testimonial-section {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}
.testimonial-section h2 {
  color: #000000;
  margin-bottom: 40px;
}
.testimonial-carousel {
  display: flex;
  overflow-x: auto;
  gap: 30px;
  padding: 0 20px;
  scroll-snap-type: x mandatory;
}
.testimonial {
  min-width: 300px;
  background: #f1f1f1;
  padding: 20px;
  border-radius: 10px;
  scroll-snap-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.testimonial p {
  font-style: italic;
}
.testimonial .author {
  margin-top: 15px;
  font-weight: bold;
  color: #000000;
}
header {
    position: sticky;
    top: 0;
    z-index: 999;
    transition: all 0.3s ease;
  }
  header.scrolled {
    padding: 10px 0 !important;
    background-color: #075a60;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  }
  .contact-wrapper p a {
	color: #000;
}

@media (max-width: 768px) {
  .banner h2 {
    font-size: 2rem;
}

.menu-toggle {
    display: block;
    margin-left: auto;
}

nav {
    width: 100%;
    order: 4;
}

nav ul {
    display: none;
    flex-direction: column;
    width: 100%;
}

nav ul.active {
    display: flex;
}

.header-inner {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}
}