 @import url(./common.css);
  @import url(./bootstrap.css);
    @import url(./responsive.css);
   
 

    /* Top Bar */
    .top-bar {
      background: #021A62;
      padding: 6px 0;
    }
    .top-bar a {
      color: #fff;
      margin-right: 12px;
      font-size: 14px;
    }

    /* Navbar */
    .navbar {
      background: #fff;
      padding: 14px 0;
    }
    .nav-link {
      color: #021A62;
      font-weight: 600;
      font-size: 16px;
    }
    .nav-link:hover{
        color: #CC0A3D;
    }

    .navbar .logo{
        width: 68px;
        height: 54px;
        opacity: 1;

    }

    .btn-login {
      border: 1px solid #021A62;
      color: #021A62;
      border-radius: 30px;
      padding: 6px 18px;
      font-size: 16px;
      font-weight: 600;
    }
     .btn-login:hover {
      border: 1px solid #021A62;
      color: #021A62;
      border-radius: 30px;
      padding: 6px 18px;
    }

    .btn-signup {
      background: linear-gradient(266.48deg, #CC0A3D 7.67%, #8C0629 92.33%);
      color: #fff;
      border-radius: 30px;
      padding: 6px 18px;
      border: none;
      font-size: 16px;
      font-weight: 600;
      transition: background 0.4s ease;
    }
    .btn-signup:hover{
      background: linear-gradient(86.48deg, #CC0A3D 7.67%, #8C0629 92.33%);
    }

    /* Banner */
    .banner {
      position: relative;
      min-height: 560px;
      background: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d")
        center/cover no-repeat;
      overflow: hidden;
      color: #fff;
    }

    /* Hidden video initially */
    .banner video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit:cover;
      display: none;
      z-index: 0;
    }

    /* Gradient Overlay */
    .banner::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(
        270deg,
        rgba(0, 84, 157, 0) 0%,
        rgba(5, 47, 171, 0.45) 30.29%,
        rgba(0, 15, 61, 0.9) 65.38%
      );
      z-index: 1;
    }

    .banner-content {
      position: relative;
      z-index: 2;
      padding: 100px 20px;
    }

    .banner h1 {
      font-size: 50px;
      font-weight: 700;
    }
     .banner p{
      font-family: "TASA Orbiter", sans-serif;
      font-size: 35px;
      font-weight: 400;
    }
    .banner h1 span {
      color: #CC0A3D;
    }

    .btn-started {
      background: linear-gradient(266.48deg, #CC0A3D 7.67%, #8C0629 92.33%);
      color: #fff;
      border: none;
      padding: 10px 24px;
      border-radius: 6px;
    }

    /* Center Play Button */
    .play-btn {
      width: 94px;
      height: 94px;
      background: rgba(0, 0, 0, 0.65);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 36px;
      color: #fff;
      cursor: pointer;
      transition: 0.3s;
    }

    .play-btn-center {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 3;
    }

    .hide {
      display: none;
    }




@media (max-width:500px){
    .banner h1 {
    font-size: 38px;
    
}

 .banner p{
      font-size: 25px;
      line-height: 30px;
    }
.play-btn {
      width: 64px;
      height: 64px;
      font-size: 25px;
}

 .banner-content {
      padding: 60px 20px;
    }

  .banner {
      min-height: 400px;
       }



}

    /* Section */
  .partner-section {
    padding: 30px 0px;
    overflow: hidden;
  }
  
  
  /* Button */
  .partner-btn {
    background: #0b2c6f;
    color: #fff;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 500;
    white-space: nowrap;
  }

  /* Scroll container */
  .logo-scroll-wrapper {
    overflow: hidden;
    white-space: nowrap;
  }

  .logo-track {
    display: inline-flex;
    align-items: center;
    gap: 60px;
    animation: scroll 18s linear infinite;
  }

  .logo-track img {
    /* width: 150px; */
    height: 50px;
    object-fit: contain;
    /* filter: grayscale(100%); */
    transition: 0.3s;
  }


  @keyframes scroll {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-50%);
    }
  }

  /* Break container on right side */
  .full-right {
    margin-left: calc((100vw - 1320px) / 2);
  }

  @media (max-width: 1400px) {
    .full-right {
      margin-left: 0;
    }
  }

  @media (max-width:500px){
      .partner-section {
    padding: 20px 0px 0px 0px;
    overflow: hidden;
  }
  }



/* Tabs */
.custom-tabs {
  border: 1px solid #0935B9;
  border-radius: 10px;
  padding: 15px;
}

.nav-tabs {
  border-bottom: 1px solid #cfd6ff;
}

.nav-tabs .nav-link {
  color: #111;
  font-weight: 500;
  border: none;
  font-size: 15px;
}

.nav-tabs .nav-link.active {
  color: #0935B9;
  border-bottom: 3px solid #0935B9;
  background: #CFDBFF;
}

/* Tab content */
.tab-content ul {
  padding-left: 18px;
}

.tab-content li {
  margin-bottom: 10px;
  font-size: 14.5px;
}

.tab-content li strong {
  color: #0935B9;
}

/* Footer text */
.highlight-text {
  color: #e30613;
  font-weight: 700;
  margin-top: 16px;
}




 

    .growth-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .growth-header h2 {
      font-size: 34px;
      font-weight: 700;
      color: #021A62;
    }

    .growth-header p {
      margin-top: 10px;
      font-size: 18px;
      color: #CC0A3D;
      font-weight: 500;
    }

    .growth-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 50px 40px;
    }

    .growth-item {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      text-align: center;
    }

    .growth-icon img {
      height: 82px;
      width: 82px;
      margin-bottom: 20px;
      
    }



    .growth-item h4 {
      font-size: 16px;
      font-weight: 600;
      color: #000;
      margin-bottom: 12px;
    }

    .growth-item p {
      font-size: 14px;
      line-height: 1.6;
      color: #797979;
    }

    /* Responsive */
    @media (max-width: 991px) {
      .growth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 40px;
      }
    }

    @media (max-width: 575px) {
      .growth-grid {
        grid-template-columns: 1fr;
        gap: 25px 40px;
      }

      .growth-header h2 {
        font-size: 18px;
      }
 

    .growth-header p {
      margin-top: 5px;
      font-size: 14px;
    }
    }



    /* Responsive */
@media (max-width: 500px) {
  .section-title {
    font-size: 26px;
  }
  .section-subtitle{
    font-size: 18px;
  }
}

    @media (max-width:600px){
        .growth-icon img {
      height: 52px;
      width: 52px;
      margin-bottom: 15px;
      
    }
    }



.performance-section .container {
  position: relative;
  z-index: 1;
  color: #ffffff;
}

.performance-section .stats-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.performance-section .stat-item {
  text-align: center;
  flex: 1;
  min-width: 160px;
}

.performance-section .stat-item h3 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 6px;
}

.performance-section .stat-item p {
  font-size: 20px;
  color: #E4E3E3;
}

.performance-section .divider {
  width: 2px;
  height: 80px;
  background: rgba(255, 255, 255, 0.35);
}

.performance-section .cta-wrap {
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .performance-section .stats-row {
    justify-content: center;
  }

  .performance-section .divider {
    display: none;
  }
}




.section-logistics .logistics-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}



.section-logistics .logistics-illustration {
  margin-top: 50px;
}

.section-logistics .logistics-illustration img {
  max-width: 100%;
  height: auto;
}

/* RIGHT */
.section-logistics .feature-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section-logistics .feature-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.section-logistics .feature-icon {
  width: 160px;
  height: 150px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.section-logistics .feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-logistics .feature-content h4 {
  margin: 0;
  font-size: 25px;
  font-weight: 700;
  color: #021A62;
}

.section-logistics .feature-content p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 120%;
  color: #797979;
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .section-logistics .logistics-grid {
    grid-template-columns: 1fr;
  }

 
}

@media (max-width: 576px) {
  /* .section-logistics .feature-card {
    flex-direction: column;
  } */

  .section-logistics .feature-icon {
    width: 80px;
    height: 80px;
  }
}


.customer-voice-testimonial-section .testimonial-card {
  position: relative;
  border: 2px solid #021A62;
  border-radius: 14px;
  padding: 35px 40px 30px;
  height: 230px;
}

.customer-voice-testimonial-section .voice-carousel-start{
  /* margin-top: 20px; */
}

.customer-voice-testimonial-section .quote-icon {
  position: absolute;
  top: -22px;
  left: 30px;
  font-size: 34px;
  color: #021A62;
  background: #fff;
  padding: 0 8px;
}

.customer-voice-testimonial-section .testimonial-text {
  font-size: 18px;
  color: #5C5A5A;
  line-height: 140%;
}

.customer-voice-testimonial-section .testimonial-footer {
  display: flex;
  justify-content: end;
  align-items: center;
  margin-top: 25px;
  gap: 12px;
}

.customer-voice-testimonial-section .testimonial-footer img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #021A62;
}

.customer-voice-testimonial-section .testimonial-name {
  font-weight: 700;
  color: #021A62;
  font-size: 25px;
}

.customer-voice-testimonial-section .testimonial-role {
  font-size: 18px;
  color: #4E4C4C;
}

/* Brand text */
.customer-voice-testimonial-section .brand-name img {
  width: 160px;
  margin-top: 15px;
}

/* Navigation buttons */
.customer-voice-testimonial-section .nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  background: #021A62;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.customer-voice-testimonial-section .nav-btn.left {
  left: -18px;
}

.customer-voice-testimonial-section .nav-btn.right {
  right: -18px;
}

/* Responsive */
@media (max-width: 768px) {
  .customer-voice-testimonial-section .nav-btn {
    /* display: none; */
  }
}





/* Card */
.insight-card img {
  border-radius: 14px;
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.meta {
  font-size: 14px;
  color: #3057A5;
  margin-top: 14px;
}

/* .meta span {
  color: #6c757d;
} */

.insight-title {
  font-size: 20px;
  font-weight: 700;
  color: #021A62;
  margin: 10px 0 12px;
  line-height: 28px;
}

.read-more {
  color: #CC0A3D;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
}

.read-more i {
  margin-left: 6px;
  transition: transform .2s;
}

.read-more:hover i {
  transform: translateX(4px);
}

/* Button */
.view-all-btn {
  background: #CC0A3D;
  color: #fff;
  border-radius: 6px;
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.view-all-btn:hover {
  background: #a5082f;
}

/* Responsive */
@media (max-width: 768px) {
  .insight-card img {
    height: 170px;
  }
}

.relationship-section-subtitle{
   font-family: "TASA Orbiter", sans-serif;
  color: #ffffff;
  font-weight: 600;
  text-align: center;
  /* margin-top: 8px; */
  font-size: 25px;
}



.footer {
  position: relative;
  background: #031c68;
  color: #ffffff;
  padding: 50px  30px;
  /* overflow: hidden; */
}

.footer::before {
  content: "";
  position: absolute;
  top: 33%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: url("./images/footer-elips.png") no-repeat center;
  /* background-size: contain; */
  transform: translate(-50%, -50%);
  /* opacity: 0.9; */
  z-index: 0;
}

.footer * {
  position: relative;
  z-index: 1;
}


/* Logo */
.footer-logo {
  width: 185px;
}
.footer-logo img{
  width: 100%;
  border-radius: 10px;
}

.footer p {
  font-size: 16px;
  color: #D2D2D2;
  line-height: 1.7;
}

/* Headings */
.footer h6 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 18px;
}

/* Links */
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer ul li a {
  color: #d6d6d6;
  font-size: 14px;
  text-decoration: none;
}

.footer ul li a:hover {
  color: #CC0A3D;
}

/* Contact */
.contact-info i {
  color: #CC0A3D;
  margin-right: 8px;
}

.footer .column{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Social Icons */
.social-icons a {
  color: #ffffff;
  font-size: 22px;
  margin-right: 14px;
}
.social-icons a:hover {
  color: #8C0629;
}

/* Divider */
.footer-divider {
  border-top: 1px solid rgba(255,255,255,0.15);
  margin: 40px 0 20px;
}

/* Bottom bar */
.footer-bottom {
  font-size: 13px;
  color: #d6d6d6;
}

.footer-bottom a:hover {
  color: #a5082f;
}

/* Responsive */
@media (max-width: 768px) {
  .footer {
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}





@media (max-width: 576px){
  .section-title-two {
    font-size: 26px;
    margin-bottom: 1rem;
  }
  .relationship-section-subtitle{
    font-size: 18px;
  }
  .performance-section .stat-item h3{
    font-size: 26px;
  }
  .performance-section .stat-item p{
    font-size: 14px;
  }
  .section-bg{
    padding: 28px 8px;
  }
  .performance-section .stats-row{
    margin-bottom: 20px;
  }
  .section-title-three{
    text-align: center;
    font-size: 26px;
  } 
  .section-subtitle-two{
    font-size: 18px;
    text-align: center;
  }
  .section-logistics .feature-content h4{
    font-size: 18px;
  }
 .section-logistics .feature-content p{
display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  font-size: 12px;
 }

 .insight-title {
    font-size: 18px;
    font-weight: 700;
    color: #021A62;
    margin: 6px 0 8px;
    line-height: 24px;
}
.meta{
  font-size: 12px;
}
 
.customer-voice-testimonial-section .testimonial-text{
  font-size: 15px;
}
.customer-voice-testimonial-section .testimonial-name {
    font-size: 18px;
}
.customer-voice-testimonial-section .testimonial-role{
  font-size: 14px;
}
.customer-voice-testimonial-section .testimonial-card{
  height: 190px;
}
.customer-voice-testimonial-section .nav-btn.left{
  left: -8px;
}
.customer-voice-testimonial-section .nav-btn.right{
  right: -8px;
}
 .footer-section-content{
  display: flex;
  gap:10px;

 }
  .footer-logo{
    width: 200px;
  }
  .footer p{
    font-size: 13px;
  }
  .footer h6 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}
}

@media(max-width:400px){
   .footer-section-content{
  display: flex;
  flex-direction: column;
  gap:10px;

  justify-content: center;
  align-items: center;

 }
 .footer-logo{
    width: 150px;
  }
}
