body {
  margin: 0;
  font-family: "Segoe UI", sans-serif;
  background: linear-gradient(to top left, #e6f5f5, #ffffff);
}



html {
  scroll-behavior: smooth;
}


.top-bar {
  display: flex;
  justify-content: space-between;
  background: linear-gradient(to top left, #e6f5f5, #ffffff);
  padding: 6px 20px;
  font-size: 14px;
  color: #000000;
}

.email-link {
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  transition: color 0.3s ease;
}

.email-link:hover {
  color: #005e60;
  text-decoration: underline;
}

.top-bar i {
  margin-right: 6px;
  color: #005e60;
}

.logo-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  border-bottom: 1px solid #ddd;
}

.logo img {
  height: 80px;
}

.logo-text {
  font-size: 1.1rem;
  font-weight: bold;
  color: #333;
  margin-top: 8px;
  text-align: center;
  letter-spacing: 0.5px;
}


.call-info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-info i {
  color: #003e3f;
  font-size: 16px;
}

.call-info p {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
  color: #333;
}


.phone-number {
  font-size: 14px;
  font-weight: bold;
  color: #002929;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.phone-number:hover {
  color: #005e60;
  text-decoration: underline;
}



.contact-line {
  font-family: 'Segoe UI', sans-serif;
  font-size: 1.1rem;
  color: #c0c0c0;
}

.divider {
  margin: 0 12px;
  color: #eaeaea;
  font-weight: lighter;
 
  transform: scaleY(1.2);
  display: inline-block;
}


.main-nav {
  background: none;
  padding: 14px 20px;
  display: flex;
  justify-content: flex-end; /* Align links to the right */
  gap: 20px;
  width: 100%;              /* Ensure full width */
  box-sizing: border-box;   /* Includes padding in width */
  flex-wrap: wrap;
}

.main-nav a {
  color: rgb(0, 0, 0);
  text-decoration: none;
  font-weight: lighter;
  font-family: Arial, Helvetica, sans-serif;
  white-space: nowrap;      /* Prevent wrapping mid-word */
}

.main-nav a:hover {
  color: teal;
  text-decoration: underline;
}

/* Optional: Responsive tweak for smaller screens */
@media (max-width: 600px) {
  .main-nav {
    justify-content: center;
    gap: 10px;
  }

  .main-nav a {
    font-size: 0.9rem;
  }
}


.main-nav {
  
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.company-name {
  font-weight: bold;
  color: #000;
  text-decoration: none !important;
  margin-right: auto;
  margin-left: 20px; /* Pushes it to the right */
  font-size: 16px;
}


.nav-links {
  display: flex;
  gap: 20px;
}






.hero-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*background: linear-gradient(to right, #006d77, #83c5be);*/
  color: rgb(0, 0, 0);
  padding: 60px 40px;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 42px;
  font-weight: lighter;
  margin-bottom: 20px;
}

.hero-text .highlight {
  color: #000000;
 
}

.hero-subtext {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
   background-color: #e85d04;
  color: white;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #ce5307;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}






/*section 2 */

.tabs-section {
  max-width: 100%;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.tabs-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tab {
  flex: 1;
  background-color: none;
  border-radius: 12px;
  
  padding: 40px 20px;
  cursor: pointer;

  
}

.tab:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.tab img {
  height: 80px;
  margin-bottom: 20px;
}

.tab h3 {
  font-size: 18px;
  color: #333;
  font-weight: 600;
  margin: 0;
}

.tab.active {
  

  border-color: #e0e0e0;
}

.tab.active h3 {
  color: rgb(0, 0, 0);
}


.tab-message {
  margin-top: 30px;
  background: #e6f6f9;
  border-left: 2px solid rgb(109, 92, 60);
  padding: 20px;
  border-radius: 8px;
  font-size: 16px;
  color: #333;
 
  transform: translateY(10px);
  
  min-height: 50px;
}

.tab-message {
  opacity: 0;
  transition: opacity 1.5s ease;
}

.tab-message.show {
  opacity: 1;
}






.tab-message.show {
  opacity: 1;
  transform: translateY(0);
}


.tab i {
  color: #6a6a9f;
  margin-bottom: 15px;
  display: block;
  transition: color 0.3s ease;
}

.tab.active i {
  color:  #6a6a9f;
}


.tabs-heading {
  text-align: center;
  
  color: #000000;

  font-size: 42px;
  font-weight: lighter;
 
 
  margin-bottom: 10px;
  
}

.tabs-subtext {
  text-align: center;
  font-size: 16px;
  color: #555;
  max-width: 900px;
  margin: 0 auto 30px;
  line-height: 1.6;
}


.tabs-header-container {
  margin-top: -80px; 
}



/*section 3*/




.service-cards-heading {
  text-align: center;
  
  color: #000000;

  font-size: 42px;
  font-weight: lighter;
 
 
  margin-bottom: 20px;
}

.service-cards-section {
  padding: 60px 20px;
  background-color: none;
}

.service-cards-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  flex: 1 1 300px;
  background-color: none;
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card i {
  font-size: 40px;
  color:  #6a6a9f;

  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}


/*Section 3*/



.about-section {
  background: none;
  padding: 70px 30px;
  display: flex;
  justify-content: center;
}

.about-content {
  display: flex;
  flex-wrap: wrap;
  max-width: 1100px;
  align-items: center;
  gap: 40px;
}

.about-text {
  flex: 1 1 500px;
}

.about-text h2 {
  text-align: left;
  
  color: #000000;

  font-size: 52px;
  font-weight: lighter;
 
 
  margin-bottom: 20px;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 15px;
}

.about-image {
  flex: 1 1 400px;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 80%;
  max-width: 400px;
  border-radius: 12px;
  opacity: 0.85;
  transition: transform 0.4s ease, opacity 0.4s ease;
  
}



/* section 4*/



.contact-section {
  background-color: none;
  color: rgb(0, 0, 0);
  padding: 60px 20px;
  text-align: center;
}

.contact-heading {
  font-size: 28px;
  font-weight: lighter;
  margin-bottom: 40px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  margin-bottom: 40px;
  position: relative;
}

.contact-item {
  text-align: center;
  max-width: 250px;
  position: relative;
}

.icon-circle {
  width: 80px;
  height: 80px;
  background-color: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.icon-circle i {
  font-size: 26px;
  color: #6a6a9f;
}

.contact-item p {
  font-size: 16px;
  margin: 0;
  color: rgb(0, 0, 0);
}

.follow-heading {
  margin-top: 40px;
  font-size: 22px;
}

.social-icons {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 25px;
}

.social-icons a {
  color: #0c0e3f;
  background-color: none;
  padding: 10px 14px;
  border-radius: 5px;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background-color: #7f3f00;
  color: white;
}


.contact-item a {
  color: rgb(46, 46, 46);
  text-decoration: none;
  font-weight: 500;
}

.contact-item a:hover {
  color: #572c00;
  text-decoration: underline;
}



/*foother */


.custom-footer {
  background-color: none;
  color: #000000;
  padding: 60px 30px 0;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 40px;
}

.footer-column {
  flex: 1 1 300px;
}

.footer-column h3 {
  color: #000000;
  font-size: 18px;
  margin-bottom: 15px;
  position: relative;
}

.footer-column h3::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: linear-gradient(to top left, #823d01, #ffffff);
  margin-top: 5px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 30px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.footer-links a:hover {
  color: #ff8c1a;
}

.newsletter-form {
  margin-top: 15px;
  display: flex;
}

.newsletter-form input {
  padding: 10px;
  border: none;
  flex: 1;
  border-radius: 4px 0 0 4px;
  outline: none;
  font-size: 14px;
}

.newsletter-form button {
  background-color: none;
  border: none;
  padding: 0 18px;
  color: #000000;
  font-size: 16px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.newsletter-form button:hover {
  background-color: #00a3d9;
}

.footer-bottom {
  background: linear-gradient(to top left, #c7e1e1, #ffffff);
  color: #000000;
  text-align: center;
  padding: 15px 10px;
  font-size: 14px;
}



.footer-column a {
  color: #1eb6e7;
  text-decoration: none;
  font-weight: bold;
}

.footer-column a:hover {
  color: #ff8c1a;
  text-decoration: underline;
}



.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #e85d04;
  color: white;
  padding: 12px 14px;
  border-radius: 50%;
  font-size: 18px;
  z-index: 1000;
  cursor: pointer;
  display: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.scroll-to-top:hover {
  background-color: #006f72;
}







@media (max-width: 768px) {
  /* Hamburger icon styling */
  .hamburger {
    display: block;
    cursor: pointer;
    font-size: 24px;
    color: #000;
    padding: 10px 20px;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 20px;
    position: relative;
  }

  .company-name {
    margin-left: 0;
    font-size: 18px;
    margin-bottom: 10px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    background-color: #f2f2f2;
    padding: 10px;
    border-radius: 6px;
    margin-top: 10px;
  }

  .nav-links a {
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
    font-size: 16px;
    text-align: left;
  }

  /* Show nav-links when active (add .active via JavaScript) */
  .nav-links.active {
    display: flex;
  }

  .hero-section {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 28px;
  }

  .hero-subtext {
    font-size: 16px;
  }

  .tabs-container {
    flex-direction: column;
    gap: 20px;
  }

  .service-cards-container {
    flex-direction: column;
    align-items: center;
  }

  .about-section {
    padding: 40px 20px;
  }

  .about-content {
    flex-direction: column;
  }

  .about-text h2,
  .tabs-heading,
  .service-cards-heading {
    font-size: 28px;
    text-align: center;
  }


  .about-text h2 {
    font-size: 28px;
    text-align: left;
  }


  .footer-top {
    flex-direction: column;
    align-items: center;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    border-radius: 4px;
    margin-bottom: 10px;
  }

  .newsletter-form button {
    border-radius: 4px;
  }

  .contact-info {
    flex-direction: column;
    gap: 20px;
  }

  .scroll-to-top {
    bottom: 20px;
    right: 20px;
    padding: 10px 12px;
    font-size: 16px;
  }
}




@media (max-width: 480px) {
  .top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 10px;
  }

  .contact-info,
  .track-order {
    display: flex;
    align-items: center;
    font-size: 10px;
    flex: 1;
    white-space: nowrap;
  }

  .contact-info i,
  .track-order i {
    font-size: 12px;
    margin-right: 5px;
    color: teal;
  }

  @media (max-width: 480px) {
    .contactt-info {
      display: none !important;
    }
  }
  

  .email-link {
    font-size: 10px;
    text-decoration: none;
    color: black;
  }

  .track-order {
    justify-content: flex-end;
    text-align: right;
    gap: 4px;
  }

  .track-order span {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .logo-bar {
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    text-align: center;
  }

  .logo img {
    height: 130px;
    margin-bottom: 10px;
  }

  .call-info {
    flex-direction: column;
    align-items: center;
    display: flex;
    gap: 6px;
  }

  .call-info i {
    font-size: 16px;
    color: teal;
    margin-bottom: 4px;
  }

  .contact-line {
    font-size: 12px;
    line-height: 1.4;
  }

  .phone-number {
    font-size: 12px;
    color: #003e3f;
  }

  .divider {
    display: none;
  }
}


@media (max-width: 100%) {
  img[alt="LOGISTICS International"] {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
  }
}



/* Hide hamburger on desktop */
.hamburger {
  display: none;
}

/* Responsive navigation */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 16px;
    gap: 10px;
  }

  .company-name {
    font-size: 16px;
  }

  .hamburger {
    display: block;
    font-size: 24px;
    color: #000;
    cursor: pointer;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background-color: #e6f5f5;
    padding: 12px;
    border-radius: 6px;
    gap: 12px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    font-size: 14px;
    color: #000;
    text-decoration: none;
  }
}


@media (max-width: 768px) {
  .company-name {
    text-align: center;
    display: block;
    width: 100%;
    font-size: 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold !important;
    margin: 0 auto;
  }
}
