/* Basic Reset */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Header Styles */
header {
    padding: 15px 0;
    background-color: #f9f9f9;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
}

.logo {
    margin: 0;
    width: 200px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 60px;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    color: #01120A;
    text-decoration: none;
    font-size: 16px;
}

.nav-links a:hover {
    color: #FAB904;
}

/* Tracking Form Styles */
.section-wrapper-hero {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 20px;
}
.hero-section{
  background-repeat: no-repeat;
  background-image: url('./img/herobackback.png');
  background-size: contain;
  background-position: center;
}
.text{
  color: #333;
  width: 50%;
  margin: 40px 0px 0px 0px;
}
.text h1{
  font-size: 56px;
  line-height: 80px;
  font-weight: bold;
}
.text-placeholder {
    margin: 40px 0px;
    width: 400px;
    border: 2px solid #1F3A68;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
    border-radius: 40px;
  }
.text p{
  color: #333;
  width: 520px;
  font-size: 16px;
}
.image {
  display: flex;
  flex: 1;
  padding: 0px;

}
.image picture img{
  margin: auto;
  width: 100%;
  margin-top: 60px;
}
  .text-input {
    width: 80%;
    height: 100%;
    border: none;
    margin-left: 10px;
    padding-left: 10px;
    color: #888;
    background-color: #F9F9F9;
    font-size: 16px;
    outline: none;
  }

  .action-button {
    padding: 12px 32px;
    font-size: 18px;
    background-color: #1F3A68;
    border-radius: 24px;
    color: white;
    border: none;
    cursor: pointer;
    height: 100%;
  }

  .action-button:hover {
    background-color: #1F3A68;
  }

  .cta-button {
    padding: 15px 30px;
    font-size: 18px;
    background-color: #FAB904; /* A bright color for attention */
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    text-align: center;
    width: auto;
    text-decoration: none;
    display: inline-block;
  }

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

/* page styles */
.ax-hidden {
    visibility: hidden;
    position: absolute;
  }

/* Mobile Navigation */
.menu-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    margin-top: -10px;
}

/* Section Styling */
.section {
    padding:50px 20px;
    text-align: center;
}
/* Two-Column Layout */
.section-about{
  color: 333;
}
.section-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    
}
.section-content-about{
    text-align: center;
    width: 100%;
    padding: 50px 0px 0px 0px;
}

.section-content-about h1 {
    font-size: 40px;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.section-content-about p {
    font-size: 1rem;
}


/*SECTION CAROUSEL STYLE*/
:root {
  --ff-heading: "General Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  --ff-body: "Gambetta", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--ff-body);
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {

  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--ff-heading);
  font-weight: 600;
}

h5,
h6 {
  font-weight: 400;
}

.container {
  background-repeat: no-repeat;
  background-image: url('./img/herobackback.png');
  background-size: contain;
  background-position: center;
  position: relative;
  margin-inline: auto;
  padding-block: 2rem;
}

p {
  font-size: 1.125rem;
  margin-bottom: 1.2rem;
  line-height: 2em;
}

article.sample-col-para {
  margin-inline: auto;
  -moz-column-width: 350px;
       column-width: 350px;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  -moz-column-rule: 1px solid #5b5b5d;
       column-rule: 1px solid #5b5b5d;
}
article.sample-col-para h1 {
  font-size: 56px;
  margin-bottom: 1rem;
  line-height: 1.2em;
}
article.sample-col-para h3 {
  opacity: 0.7;
  margin-bottom: 1rem;
}
article.sample-col-para img {
  width: 200px;
  height: 200px;
  float: right;
  margin-left: 1.2rem;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  shape-outside: circle();
  border: 5px solid rgb(164, 67, 31);
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-5 {
  margin-top: 5rem;
}

.marquee-wrapper {
  position: relative;
  display: flex;
  overflow: hidden;
  gap: 1rem;
  border-radius: 1rem;
}
.marquee-wrapper .marquee-content {
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 1rem;
  cursor: grab;
}
.marquee-wrapper .marquee-content .card-testimonial {
  max-width: 400px;
  background-color: #ffffff;
  padding: 1rem;
  border-radius: 1rem;
  color: #333;
}
.marquee-wrapper .marquee-content .card-testimonial article picture {
  position: relative;
  min-width: 200px;
}
.marquee-wrapper .marquee-content .card-testimonial article picture img {
  width: 100%;
  height: 240px;
  border-radius: 0.5rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 50% 15%;
     object-position: 50% 15%;
}
.marquee-wrapper .marquee-content .card-testimonial article h4 {
  font-size: 20px;
  text-transform: capitalize;
  margin-block: 1rem;
}
.marquee-wrapper .marquee-content .card-testimonial article article.short-description p {
  font-family: var(--ff-heading);
  font-size: 14px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 1.2rem;
}
@media (max-width: 1024px) {
  .marquee-wrapper {
    overflow: auto;
  }
}

.scrollingX {
  animation: scroll 45s linear infinite;
}

.marquee-wrapper:hover .scrollingX {
  animation-play-state: paused;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-100% - 1rem));
  }
}/*# sourceMappingURL=styles.css.map */
/*SECTION WHY STYILE */
.section-why-top {
  background-image: url('./img/aircargo.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: right;
    padding: 60px 20px 40px 20px;
    background-color: none;
    text-align: left;
  }
  .why-top-wrap{
    align-items: center;     /* Centering content vertically */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    height: auto;  /* Make sure it takes the full viewport height */
  }

  .section-why-top h1 {
    font-weight: 800;
    font-size: 48px;
    color: #333;
    margin-bottom: 20px;
    line-height: 54px;
  }

  .section-why-top p {
    font-size: 15px;
    color: #555;
    max-width: 470px;
    line-height: 1.6;
  }
    /* General styling for the section */
    .why-section {
        padding-bottom: 100px;
        background-color: #f9f9f9;
      }
  
      .container {
        display: flex;
        justify-content: space-between; /* Centering content horizontally */
        align-items: center;/* Centering content vertically */
        max-width: 1200px;
        margin: 0 auto;
        flex-wrap: wrap;
        height: auto;  /* Make sure it takes the full viewport height */
      }
  
      /* Left side: 3 cards */
      .why-left-side {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center; /* Center the cards inside the left side */
        justify-content: center; /* Center the cards vertically */
      }
  
      .card {
        background-color: #fff;
        width: 454px;  /* Fixed width */
        height: 176px; /* Fixed height */
        padding: 22px 24px 24px 30px;
        border-radius: 24px;
        border: 2px solid #eeeeee;
        justify-content: space-between;
        text-align: left;
      }
  
      .card h2 {
        font-size: 24px;
        color: #333;
      }
  
      .card p {
        font-size: 15px;
        color: #01120A;
      }
  
      /* Right side: Image holder */
      .why-right-side {
        max-width: 50%;
      }
      .why-image-holder img {
        width: 100%;
      }


  /*SECTION-VALUE-STYLE*/

  .section-value {
    display: flex;
    justify-content: space-between;
    padding: 40px 20px;
    background-image: url('./img/Element2.png');
    background-size: contain;
    background-position: center;
    width: auto;
    height: 320px;
  }

  .left-side-value, .right-side {
    width: 48%; /* Each side takes 48% of the total width */
  }

  /* Left side styles */
  .left-side-value {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .left-side-value h1 {
    font-size: 28px;
    color: #f5f5f5;
    margin-bottom: 10px;
  }

  .left-side-value p {
    font-size: 16px;
    color: #f5f5f5;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .cta-button {
    padding: 14px 36px;
    background-color: #FAB904;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 34px;
    font-weight: 500;
    font-size: 16px;
  }
  .cta-button-value {
    padding: 14px 36px;
    font-weight: 500;
    width: 180px;
    background-color: #FAB904;
    color: white;
    text-align: center;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    border-radius: 34px;
    font-size: 16px;
  }

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

  /* Right side styles */
  .right-side-value img {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }

  /* Placeholder for background image */
  .placeholder {
    background-image: url('');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 300px;
    border-radius: 10px;
  }
 /*partnership style section*/
    .partners-section {
        background-color: #fff;
        padding: 50px;
        border-radius: 10px;
        text-align: center;
    }

    .section-wrapper-part {
        max-width: 1200px; /* Set a max-width to limit overexpansion */
        margin: 0 auto; /* Center the content */
        text-align: center;
    }

    .partners-section h1 {
        font-size: 48px;
        font-weight: bold;
        color: #333;
        margin-bottom: 30px;
    }

    .partners-list {
        display: flex;
        justify-content: space-around;
        gap:20px;
        flex-wrap: wrap;
        text-align: center;
    }

    .partner-item {
        width: 22%;
        min-width: 150px;
        height: 150px;
        padding: 30px 0px 0px 0px;
        background-color: #fff;
        border-radius: 10px;
    }

    .partner-item img {
        width: 140px;
        height: 140px;
        object-fit:fill;
        border-radius: 10px;
    }
    /*ACOORDION SECTION STYLE*/
    .faq-section {
        padding: 40px 0px 80px 20px;
        background-color: #fff;
        margin: 0px;
        border-radius: 10px;
        background-image: url('./img/footer-back.png');
        background-size: contain;
        background-position: right;
        background-repeat: no-repeat;
      }
  
      .section-wrapper {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
        gap: 40px;
      }
  
      .left-side, .right-side {
        width: 44%;
      }
  
      /* Left side styles */
      .left-side{
        text-align: left; 
        padding-right: 60px;  
      }
      .left-side h2 {
        font-size: 42px;
        color: #333;
        font-weight: bold;
        margin-bottom: 20px;
      }
  
      .left-side p {
        font-size: 16px;
        color: #555;
        margin-bottom: 50px;
        line-height: 1.6;
      }
  
      .image-holder {
        width: 100%;
      }
      .image-holder img{
        width: 80%;
      }
  
      /* Accordion styles */
      .accordion {
        background-color: #fff;
        border-radius: 10px;
        padding: 10px;
        margin-top: 180px;
      }
  
      .accordion-button {
        background-color: #ffffff;
        color: #000;
        padding: 15px;
        width: 100%;
        border: 2px solid #eeeeee;
        text-align: left;
        cursor: pointer;
        font-size: 16px;
        border-radius: 8px;
        margin-bottom: 5px;
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
  
      /* Accordion content */
      .accordion-content {
        padding: 0px;
        display: block;
        background-color: #ffffff;
        border-radius: 8px;
        max-height: 0; /* Initially collapsed */
        overflow: hidden;
        transition: max-height 0.5s ease-in-out; /* Smooth transition for height */
      }

      .accordion-content p{
        padding: 20px 10px;
        margin-bottom: 10px;
        font-size: 16px;
      }
  
      /* Arrow icon styles */
      .accordion-button .icon {
        width: 30px;
        height: 30px;
        padding-bottom: 2px;
        background-color: black; /* Black background */
        color: white; /* White text color */
        font-size: 20px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: transform 0.3s ease;
      }
  
      .accordion-button.active .icon {
        transform: rotate(180deg); /* Rotate the icon on active state */
      }
    /*FOOTER SECTION*/
    footer {
        width: 100%;
        padding: 20px;
        background-color: #F3F3F3;
        color: #4A5650;
      }
  
      /* Wrapper to center the content */
      .footer-wrapper {
        width: 100%;
        max-width: 1200px; /* Maximum width for the content */
        margin: 0 auto; /* Center the content */
        padding: 20px; /* Add some padding on the sides */
      }
      .footer-logo{
          margin-top: -16px;
          width: 200px;
          padding-bottom: 20px;
      }
      .footer-content {
        padding: 30px 0px;
        display: flex;
        justify-content: flex-end; /* Align content to the right */
        border-top: 1px solid #1F3A68;

      }
  
      .footer-left {
        flex: 1; /* Empty left side */
      }
  
      .footer-right {
        display: flex;
        justify-content: space-between;
        width: 60%; /* Adjust the width if needed */
        align-items: flex-start; /* Align all items to the top */
      }
  
      .footer-column {
        display: flex;
        flex-direction: column;
      }
  
      .footer-column ul {
        list-style-type: none;
        padding: 0;
      }
  
      .footer-column li {
        margin: 20px 0;
        text-align: left;
      }
      .footer-column li a{
        color: #4A5650;
        font-size: 16px;
      }
      .social-media {
        margin-top: 12px;
        display: flex;
        gap: 10px;
        flex-direction: row; /* Ensures icons are in a row */
        align-items: center; /* Align icons to the center of the row */
      }
  
      .social-icon {
        text-decoration: none;
        color: white;
        font-size: 20px;
      }
  
      .social-icon:hover {
        color: #ddd;
      }
      .footer-credits{
        text-align: center;
        border-top: 1px solid #1F3A68;

      }
      .footer-credits p{
        margin-top: 30px;
        margin-bottom: 0px;
        font-size: 16px;
      }
  

 
/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  body{
    background-color: #fff;
  }
  header{
    background-color: #fff;
  }

  .hero-section{
    .hero-section{
      background-repeat: no-repeat;
      background-image: url('./img/herobackback.png');
      background-size: contain;
      background-position: center;
    }
    padding-bottom: 60px;
}
.image{
  z-index: -1;
  position: absolute;  
  width: 100%;
  display: none;
}
.image img{
  height: 400px;
}
.text{
  width: 100%;
  padding: 0px 20px;
  margin: 0px;
}
.text h1{
  margin-top: -20px;
  font-size: 12vw;
  line-height: 72px;
  font-weight: 800;
  color: #333;
}
.text-placeholder {
    margin: 40px 0px;
    width: 100%;
    background-color: #fff;
    border: 2px solid #1F3A68;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: 0;
    border-radius: 40px;
  }
.text p{  
  margin-top: -20px;
  width: 100%;
  font-size: 16px;
}
  .text-input {
    width: 80%;
    height: auto;
    border: none;
    margin-left: 10px;
    padding-left: 10px;
    color: #888;
    font-size: 16px;
    outline: none;
    background-color: #fff;
  }

  .action-button {
    padding: 12px 32px;
    font-size: 18px;
    background-color: #1F3A68;
    border-radius: 24px;
    color: white;
    border: none;
    cursor: pointer;
    height: 100%;
  }
  .navbar{
    padding: 0px 20px;
  }
    .nav-links {
        flex-direction: column;
        position: absolute;
        top: 80px;
        right: 0;
        background-color: #fff;
        padding-bottom: 10px;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        list-style: none;
        display: flex;
        gap: 1rem;
        transition: max-height 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active {
        max-height: 300px; /* adjust based on your content */
        opacity: 1;
        pointer-events: auto;
    }

    .menu-icon {
        display: block;
    }

    .nav-links li {
        text-align: center;
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 11px;
        font-size: 16px;
    }
    .section-about{
      background-color: #f9f9f9;
    }
    .section-content-about{
      margin: 0px 20px;
    }
    .container{
      background-color: #f9f9f9;
    }
    .why-section{
      padding-bottom:20px;
    }
    .right-side-value{
      display: none;
    }
    .left-side-value{
      margin: 0px 20px;
      width: 100%;
    }
    .section-why-top {
      padding: 30px 20px 10px 20px;
      text-align: left;
      margin: 0px;
      border-radius: 0px;
      background: #f9f9f9;
    }
    .section-why-top h1{
      font-weight: bold;
    }
    .why-left-side{
      padding: 0px 20px;
      width: 100%;
    }
    .card {
      max-width: 100%;
      height: auto;
      padding-bottom: 0px;
    }

    .why-right-side{
      max-width: 100%;
      margin: 50px 0px 0px 0px;
      padding: 0px 20px;
    }
    .why-image-holder img{
      width: 100%;
    }
    .section-content-about{
        display: block;
    }
    .image-holder img{
      width: 80%;
    }
    .image-holder{
      display: flex;
      justify-content: center;
    }
    .accordion {
        background-color: #fff;
        border-radius: 0px;
        padding: 10px;
        margin-top: 10px;
      }
      /* Left side styles */
      .left-side{
        text-align: center; 
        padding-right: 0px;  
      }
      .left-side h2 {
        font-size: 36px;
        color: #333;
        margin-bottom: 10px;
      }
  
      .left-side p {
        font-size: 16px;
        color: #555;
        margin: 40px 0px;
        line-height: 1.8;
      }    

    /* Make images shrink on smaller screens */

    @media (max-width: 768px) {
      .partners-list{
        display: flex;
        margin: 20px 0px;
      }
       .partners-section h1{
          margin-bottom: -10px;
          font-size: 36px;
        }
        .partner-item {
          width: 0%; /* Two images per row on small screens */
        }
      }
  
      @media (max-width: 480px) {
        .partner-item {
          width: 10%; /* Single image per row on very small screens */
        }
      }


  /*FOOTER SECTION*/
        /* Mobile responsiveness */
        @media (max-width: 768px) {
            .footer-content {
              flex-direction: column;
              align-items: center; /* Center content */
            }
      
            .footer-left {
              order: -1; /* Move footer-left above footer-right on mobile */
              width: 100%; /* Ensure it takes full width */
            }
      
            .footer-right {
              width: 100%; /* Take up full width */
              flex-direction: row; /* Keep the lists side by side */
              justify-content: space-between;
            }
      
            .footer-column {
              margin-bottom: 20px; /* Add space between the columns */
              text-align: center; /* Center the text in each column */
            }
      
            .social-media {
              justify-content: center; /* Center social media icons */
            }
          }  
      

      /* Responsive Layout */
      @media (max-width: 768px) {
        .left-side, .right-side {
          width: 100%;
        }
      }

    /* Responsive Layout */
    @media (max-width: 768px) {
      .left-side, .right-side {
        width: 100%;
      }
    }
      /* Responsive Layout */
      @media (max-width: 768px) {
        .left-side, .right-side {
          width: 100%;
        }
      }    
      .faq-section {
        background: none;
        padding: 0px 0px 60px 0px;
        background-color: #fff;
        margin: 20px;
        border-radius: 10px;
      } 
      .social-media {
        margin-top: 16px;
        display: flex;
        gap: 10px;
        flex-direction: row; /* Ensures icons are in a row */
        align-items: center; /* Align icons to the center of the row */
      }
      .footer-credits p{
        margin-top: 20px;
        margin-bottom: 0px;
      }
    }

