.hero {
  background: #f9f9f9;
  padding: 0px;
  margin-top: 5%;
}

.hero {
  position: relative;
  background-image: url('../images/img12.png');
  /* background for just hero section */
  background-size: fill;
  background-position: center;
  /* background-repeat: no-repeat; */
  padding: 60px 0;
  overflow: visible;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffffe5;
  opacity: 0.85;
  z-index: 0;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 50px;
  line-height: 1.2em;
  color: #193153;
  margin-bottom: 20px;
  font-weight: 800;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.6;
  color: #193153;
  margin-bottom: 30px;
  font-weight: 300;
}

.hero-btn {
  display: inline-block;
  background: #001d3f;
  color: #FFFFFF;
  padding: 16px 28px;
  border-radius: 9px;
  font-weight: 300;
  font-size: 15px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  border: 1px solid #193153;
  border-radius: 12px;
  background: #F7F8FC;
  color: #193153;
}

.hero-video {
  flex: 1 1 500px;
  position: relative;
}

.hero-video-element {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
}

.video-thumbnail-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  transform: translate(-50%, -50%);
  z-index: 2;
  pointer-events: none;
}

@media (max-width: 768px) {
  .hero-text h1 {
  font-size: 40px;
  line-height: 1.2em;
  color: #193153;
  margin-bottom: 20px;
  font-weight: 800;
}

}


.hero-features {
  margin-top: 80px;
  text-align: left;
}

.hero-subheading {
  margin-top: 20%;
  text-align: left;
  font-size: 40px;
  color: #193153;
  font-weight: 500;
  margin-bottom: 10%;
  max-width: 900px;
  line-height: 1;
  margin-left: 9%;
  margin-right: auto;
  padding-left: -12px;
}


.features-grid {
  display: flex;
  justify-content: center;
  gap: 90px;
  flex-wrap: wrap;
}

.feature-box {
  background: none;
  text-align: left;
  max-width: 300px;
}

.feature-icon {
  width: 90px;
  height: 90px;
  /* margin: 17px; */
  background: #f2f6fb;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 40px;
  height: 40px;
}

.feature-box h3 {
  font-size: 27px;
  font-weight: 500;
  color: #022a50;
  margin-bottom: 15px;
  vertical-align: inherit;
}

.feature-box p {
  text-align: left;
  font-size: 16px;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 20px;
  font-weight: 300;

}

.feature-btn {
  display: inline-block;
  background: #001d3f;
  color: #fff;
  padding: 14px 27px;
  border-radius: 12px;
  font-size: 15px;
  text-decoration: none;
  font-weight: 300;
  transition: background 0.3s ease;
}

.feature-btn:hover {
  border: 1px solid #193153;
  border-radius: 12px;
  background: #F7F8FC;
  color: #193153;
}

@media (max-width: 768px) {
  .hero-subheading {
  
  font-size: 20px;
  color: #193153;
  font-weight: 500;
  line-height: 1.3;
  
}
}
.image-section {
  margin-top: 8%;
  width: 100%;
  height: 400px;
  /* You can adjust height */
  background-image: url('../images/img75.png');
  /* 🔁 Replace this with your actual image path */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.overlay-text {
  position: absolute;
  bottom: 27px;
  right: 32px;
  font-size: 50px;
  font-weight: 600;
  color: #000000;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.overlay-text:hover {
  opacity: 0.9;
}

.fleet-section {
  background: #F0F3F8;
  padding: 100px 20px;
  text-align: center;
  margin-top: 4%;
}

.fleet-header .fleet-tag {
  color: #193153;
  font-size: 16px;
  text-transform: lowercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-weight: 300;
}

.fleet-header h2 {
  font-size: 40px;
  color: #193153;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 0px;
}

.fleet-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.fleet-item {
  max-width: 160px;
}

.fleet-item img {
  width: 100%;
  height: 80%;
  margin-bottom: 12px;
}

.fleet-item p {
  font-size: 16px;
  color: #01294e;
  font-weight: bold;
  margin: 0;
}

.fleet-btn-container {
  text-align: center;
}

.fleet-btn {
  display: inline-block;
  background: #193153;
  color: white;
  padding: 14px 24px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 300;
  font-size: 15px;
  transition: background 0.3s ease;
}

.fleet-btn:hover {
  border: 1px solid #193153;
  border-radius: 12px;
  background: #F7F8FC;
  color: #193153;
}

@media (max-width: 768px) {
  .overlay-text {

    font-size: 24px;
    bottom: 11px;
    right: 14px;
  }


  .image-section {
    height: 250px;
    filter: brightness(80%);

  }
}



.section {
  padding: 80px 20px;
  text-align: center;
}

.section p {
  color: #193153;
  font-size: 16px;
  margin-bottom: 10px;
  font-weight: 300;
}


.section h2 {
  color: #193153;
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 60px;
  line-height: 1.4;
}

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.feature-box {
  width: 300px;
  text-align: left;
}

.feature-box .icon {
  margin-bottom: 20px;
  align-items: left;
  justify-content: left;
}

.feature-box h3 {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #193153;
}

.feature-box {
  animation: fadeInUp 0.4s ease-out forwards;
}


.features p {
  font-size: 16px;
  color: #193153;
  line-height: 27.2px;
  font-weight: 300;
}

.icon {
  width: 50px;
  height: 50px;
  margin-bottom: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.icon img {
  width: 20px;
  height: 20px;
  align-items: left;
  justify-content: left;
}

.hero-image-box {
  width: 100%;
  height: 400px;
  /* adjust height as needed */
  background-image: url('../images/img68.jpg');
  /* ⬅️ replace with your PNG path */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.hero-button-text {
  position: absolute;
  bottom: 20px;
  right: 30px;
  font-size: 50px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-button-text:hover {
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-button-text {

    font-size: 24px;
    bottom: 11px;
    right: 14px;
  }


  .hero-image-box {
    height: 250px;
    filter: brightness(80%);

  }

  .section h2 {
    font-size: 28px;
  }

  .fleet-header h2 {
    font-size: 23px;
  }
}

.headline-section {
  background-color: #0f2644;
  border-radius: 12px;
  padding: 27px 50px;
  max-width: 1200px;
  margin: 5% auto;
  color: white;
}

.headline-sub {
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: -12px;
  font-weight: 300;

}

.headline-main {
  font-size: 40px;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1.4;
  color: #FFFFFF;
}

.inner-box {
  display: flex;
  flex-wrap: nowrap;
  background-color: #132d4f;
  border-radius: 12px;
  padding: 40px 0 40px 56px;
  /* top, right=0, bottom, left */
  gap: 20px;
}



.content-left {
  flex: 0 0 35%;
}


.content-left h3 {
  color: #ffffffd5;
  font-size: 30px;
  margin-bottom: 10px;
  font-weight: 500;
}

.content-left p {
  font-size: 16px;
  color: #ffffffb3;
  font-weight: 300;
  margin-bottom: 20px;
  line-height: 1.6;
}

.progress-list {
  width: 100%;
}

.progress-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 4px;
  color: #e2e8f0;
}

.progress-bar {
  background-color: #5C6E88;
  height: 21px;
  /* shorter line */
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 14px;
}

.progress-bar .fill {
  background-color: #B5BEC9;
  height: 100%;
  border-radius: 12px;
}

/* .content-right {
  flex: 0 0 68%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
} */



.side-image {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  /* filter: brightness(60%); */
}

@media (max-width: 768px) {
  .inner-box {
    flex-direction: column;
    padding: 22px;
    margin: -9%;
  }

  .headline-section {

    padding: 46px 50px;
  }

  .headline-main {
    font-size: 22px;
  }

  .content-left,
  .content-right {
    flex: 1 1 100%;
  }
}

.testimonial-section {
  background-color: #f8fafc;
  padding: 2px 20px;
  margin-bottom: 0%;
}

.testimonial-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  /* Aligns image higher */
  /* justify-content: space-between; */
  flex-wrap: wrap;
  gap: 20px;
}

/* .testimonial-text {
  flex: 0 0 55%;
 
  text-align: left;
} */

.testimonial-small {
  font-size: 16px;
  color: #193153;
  margin-bottom: 20px;
  font-weight: 300;
}

.testimonial-quote {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.6;
  color: #193153;
  margin-bottom: 20px;
}

.testimonial-author {
  font-size: 16px;
  font-weight: 500;
  color: #1e293b;
}

.testimonial-icon {
  width: 160px;
  margin-top: 37px;
  /* icon slightly higher */
  margin-left: 0;
  /* remove manual pushing */
  display: flex;
  align-items: flex-start;
  /* align icon with top text */
  justify-content: center;
}

.testimonial-icon img {
  width: 100px;
  height: auto;
}

@media (max-width: 768px) {
  .testimonial-icon {
    width: 162px;
    margin-top: -125px;
    margin-left: 85px;
    display: flex;
    margin-bottom: -115px;
    justify-content: center;
  }

  

  .testimonial-quote {

    font-weight: 500;
    font-size: 20px;
    line-height: 1.5em;
    color: #193153;
    margin-bottom: 20px;
    
  }
}

/* Animation styles - Faster versions */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes subtleBounceUp {
  0% {
    transform: translateY(30px);
    opacity: 0.8;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Faster progress bar animations */
@keyframes fillProgress50 {
  from { width: 0; }
  to { width: 50%; }
}

@keyframes fillProgress80 {
  from { width: 0; }
  to { width: 80%; }
}

@keyframes fillProgress65 {
  from { width: 0; }
  to { width: 65%; }
}

@keyframes fillProgress45 {
  from { width: 0; }
  to { width: 45%; }
}

/* Animation classes - Faster durations */
.animate-fadeInUp {
  animation: fadeInUp 0.4s ease-out forwards; /* Reduced from 0.6s */
}

.animate-slideUp {
  animation: slideUp 0.4s ease-out forwards; /* Reduced from 0.6s */
}

.animate-subtleUp {
  animation: subtleBounceUp 0.4s ease-out forwards; /* Reduced from 0.6s */
}

/* Faster animation delays ONLY for logistics section */
.logistics-section .feature-box:nth-child(-n+3) {
  animation-delay: 0.05s;
}

.logistics-section .feature-box:nth-child(n+4) {
  animation-delay: 0.2s;
}

/* Optional: Slightly faster animation speed */
.logistics-section .feature-box {
  animation: fadeInUp 0.3s ease-out forwards;
}


/* Faster progress bar animations */
.progress-bar .fill {
  animation-duration: 0.6s !important; /* Reduced from 1s */
}

/* Reduce delay interval */
.feature-box:nth-child(1) { animation-delay: 0.05s; }
.feature-box:nth-child(2) { animation-delay: 0.1s; }
.feature-box:nth-child(3) { animation-delay: 0.15s; }
.feature-box:nth-child(4) { animation-delay: 0.2s; }
.feature-box:nth-child(5) { animation-delay: 0.25s; }
.feature-box:nth-child(6) { animation-delay: 0.3s; }


/* Section animation delays - also reduced */
.hero-video { animation-delay: 0.2s; }
.fleet-section { animation-delay: 0.3s; }
.headline-section { animation-delay: 0.4s; }
.testimonial-section { animation-delay: 0.5s; }

