:root{
    --primary:#ff7a45;
    --primary-subtle:#ff6b30c9;
    --primary-dark:#0b4a4f;
    --whatsApp: #25D366;
    }


    .bg-pr{
        background-color: var(--primary);
    }

    .bg-pr-dark{
      background-color: var(--primary-dark);
    }

    .bg-pr-subt{
        background-color: var(--primary-subtle);
    }

    .text-pr{
      color: var(--primary);
    }

    .text-pr-dark{
      color: var(--primary-dark);
    }

    .w-fit{
        width: fit-content;
    }

    .fs-8{ font-size: 0.8rem}

    .fs-7{ font-size: 1rem;}

    .fs-6{ font-size: 1.5rem;}

    .fs-5{ font-size: 2rem;}

    .fs-4{ font-size: 2.5rem;}

    .fs-3{ font-size: 3rem;}

    .fs-2{ font-size: 3.5rem;}

    .fs-1{ font-size: 4rem;}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  /* background: #0b3d42; */
  overflow-x: hidden;
}

/* NAVBAR BASE */
.custom-navbar {
  background: var(--primary-dark);
  padding: 12px 0;
  transition: all 0.3s ease;
  z-index: 999;
}

/* LOGO */
.navbar-brand {
  font-size: 20px;
  color: #fff !important;
}

/* LINKS */
.nav-link {
  color: #fff !important;
  font-weight: 650;
  margin: 0 10px;
  transition: 0.3s;
}

.nav-link:hover {
  color: var(--primary) !important;
}

/* BUTTON */
.quote-btn {
  background: var(--primary);
  color: #fff;
  padding: 8px 18px;
  font-size: 14px;
  border-radius: 4px;
  transition: 0.3s;
}

.quote-btn:hover {
  background: #fff;
  color: var(--primary-dark);
}

/* REMOVE TOGGLER BORDER */
.navbar-toggler:focus {
  box-shadow: none;
}

/* MOBILE STYLING */
@media (max-width: 991px) {

  .navbar-collapse {
    background: var(--primary-dark);
    padding: 20px;
    margin-top: 10px;
    border-radius: 10px;
    text-align: center;
  }

  .nav-link {
    margin: 12px 0;
    font-size: 16px;
  }

  .quote-btn {
    width: 100%;
    margin-top: 10px;
  }
}

.email-text {
  color: #cfd8dc;
  font-size: 14px;
}

.quote-btn {
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
}

.quote-btn:hover {
  background: #ff6a30;
}

.hero-section {
    background: #0b4a4f;
    /* padding: 100px 0; */
    overflow: hidden;
    position: relative;
}

/* Parallax base */
.parallax-up,
.parallax-down {
    transition: transform 0.1s linear;
    will-change: transform;
}


.hero-title {
    font-size: 70px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 100px;
}

.desc-box {
    border-left: 3px solid var(--primary);
    padding-left: 15px;
    margin-top: 20px;
    color: #cfd8dc;
    max-width: 420px;
}

.track-btn {
    background-color: var(--primary);
    color: white;
    padding: 12px 25px;
    font-weight: 600;
    border-radius: 3px;
    border: none;
    transition: 0.3s;
}

.track-btn:hover {
    background-color: #e85a2f;
    color: #fff;
}

.ship-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    position: relative;
}

/* MAIN FIX */
.ship-img {
    /* max-height: 700px; */
    width: 350px;
    /* width: auto; */
    object-fit: contain;
    padding-top: 200px;

    /* push it slightly down to match screenshot */
    transform: translateY(40px);
}

/* Remove unwanted gap below image */
.ship-wrapper img {
    display: block;
}

/* .plane-img{
  max-width: 400px;
  object-fit: cover;
} */

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 42px;
        
    }

    .content-left {
        text-align: center;
    }

    .desc-box {
        margin: 20px auto;
    }
}

/* Responsive */
@media (max-width: 991px) {
  .hero-section {
    height: auto;
    padding: 120px 20px;
  }

  .content-left {
    padding-left: 20px;
  }

  .hero-title {
    font-size: 40px;
  }

  .ship-wrapper {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
}

.video-wrapper {
  position: relative;
  width: 350px;
  margin-top: 30px;
  z-index: 2;
}

.plane-img {
  max-width: 550px;
  width: 100%;
  object-fit: cover;
  /* border-radius: 12px; */
  transition: all 0.5s ease;
}

/* Fullscreen (during scroll) */
.video-fixed {
  position: fixed;
  top: 0; /* FIXED */
  left: 0;
  width: 100hw !important;
  height: 100vh;
  object-fit: cover;
  border-radius: 0;
  z-index: 9999;
}

/* Final section */
.video-full-section {
  /* width: 100%; */
  height: 100vh;
  /* background: #111; */
  position: relative;
}

.video-full-section video,
.video-full-section .plane-img {
  width: 80%;
  height: 80%;
  object-fit: cover;
  display: block;
}

/* Default */
.service-card {
  border: 1px solid #e0e0e0;
  transition: all 0.3s ease;
}

.number-circle {
  border: 1px solid #cfd8dc;
  width: 30px;
  height: 30px;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

/* 🔥 Hover Effect */
.service-card:hover {
  border-color: var(--primary); /* Bootstrap primary */
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.service-card:hover .number-circle {
  border-color: var(--primary);
  
}


.zoomship-img{
  width: 600px;
  will-change: transform;
  /* transition: transform 0.2s ease; */
}

/* Tablet */
@media (max-width: 991px) {
  .zoomship-img {
    max-width: 400px;
    align-items: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .zoomship-img {
    max-width: 280px;
    align-items: center;
  }
}

.brand-title{
    color:var(--brand-teal);
    font-weight:700;
}

/* CARD */

.case-card{
    border:none;
    border-radius:28px;
    overflow:hidden;
    background:#fff;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.5s;
}

.case-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 50px rgba(0,0,0,.12);
}

.case-img-container{
    position:relative;
    height:500px;
    overflow:hidden;
}

.case-img-container img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .8s ease;
}

.case-card:hover img{
    transform:scale(1.08);
}

/* DARK BOTTOM GRADIENT */

.case-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.92) 5%,
        rgba(0,0,0,.6) 35%,
        rgba(0,0,0,0) 70%
    );
}

/* CONTENT */

.card-content{
    position:absolute;
    left:30px;
    right:30px;
    bottom:30px;
    z-index:2;
}

.label{
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    border:1px solid rgba(255,255,255,.25);
    border-radius:40px;
    padding:8px 18px;
    font-size:13px;
    margin-bottom:16px;
}

.card-content h3{
    color:white;
    font-weight:700;
    margin-bottom:12px;
}

.card-content p{
    color:rgba(255,255,255,.75);
    font-size:.92rem;
}

/* KPI SECTION */

.metrics{
    display:flex;
    gap:15px;
    margin-top:25px;
}

.metric{
    flex:1;
    background:rgba(255,255,255,.12);
    backdrop-filter:blur(8px);
    border:1px solid rgba(255,255,255,.15);
    border-radius:18px;
    padding:14px;
}

.metric h4{
    color:white;
    font-size:1.6rem;
    margin:0;
    font-weight:700;
}

.metric small{
    color:rgba(255,255,255,.7);
}

/* Responsive */

@media(max-width:768px){

.case-img-container{
height:420px;
}

.card-content{
left:20px;
right:20px;
bottom:20px;
}

.metrics{
flex-direction:column;
}

.card-content p{
display:none;
}

}

/* Logo slider */
.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.logo-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 25s linear infinite;
}

.logo-track img {
  height: 80px;
  object-fit: contain;
  margin-right: 100px; /* 👈 control gap here */
  transition: transform 0.3s ease;
}

/* hover effect (optional) */
.logo-track img:hover {
  transform: scale(1.1);
}

/* animation */
@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .logo-track img {
    height: 40px;
  }

  .logo-track {
    animation: scrollLogos 12s linear infinite; /* faster on mobile */
  }
}

.team-card {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

/* zoom on hover */
.team-card:hover img {
  transform: scale(1.1);
}

/* caption */
.team-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  color: #fff;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

/* show on hover */
.team-card:hover .team-caption {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .team-card img {
    height: 280px;
  }
}


/* LEFT BOX */
.quote-box {
  background: #0b3f46; /* exact dark tone */
  border-top: 5px solid var(--primary);
  color: #fff;

  position: relative;
  top: -20px; /* 🔥 lifts form upward like design */
}

.quote-box label {
  font-size: 12px;
  color: #cfd8dc;
  margin-bottom: 5px;
  display: block;
}

.quote-box input {
  width: 100%;
  padding: 10px;
  border: none;
  background: #124952;
  color: #fff;
  font-size: 13px;
}

.quote-box textarea {
  width: 100%;
  padding: 10px;
  border: none;
  background: #124952;
  color: #fff;
  font-size: 13px;
}

.quote-box input::placeholder {
  color: #9fb3b7;
}



/* CONTACT INFO */
.contact-info i {
  font-size: 20px;
  color: var(--primary);
}

.contact-info small {
  font-size: 10px;
  color: #9fb3b7;
}

.contact-info h6 {
  font-size: 16px;
  font-weight: 600;
}

/* RIGHT SIDE */
.line {
  height: 1px;
  flex: 1;
  background: linear-gradient(to right, #ff7a45, transparent);
}

.decorative-line {
  height: 1px;
  max-width: 500px; /* keeps design limit */
  width: 100%;
}

/* LEFT */
.left-line {
  background: linear-gradient(to left, #ff7a45, transparent);
}

/* RIGHT */
.right-line {
  background: linear-gradient(to right, #ff7a45, transparent);
}
@media (max-width: 576px) {
  .decorative-line {
    max-width: 100px; /* shorter lines on mobile */
  }

  .text-pr {
    font-size: 12px;
  }
}

.fact-item {
  padding: 15px 0;
}

.divider {
  height: 1px;
  background: #ddd;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .quote-box {
    margin-bottom: 30px;
  }
}

/* challange */


/* HEADER */
.freight-header h3 {
  font-weight: 700;
}

.toggle-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #eee;
  border: 1px solid var(--primary);
  
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* PRICE BOX */
.price-box {
  position: relative;
  height: 250px;
  background: url('https://images.unsplash.com/photo-1463567517034-628c51048aa2?q=80&w=870&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D') center/cover;
}

.price-box .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 122, 69, 0.9);
}

.price-content {
  position: relative;
  z-index: 2;
  color: #fff;
  top: 50%;
  transform: translateY(-50%);
}

.price-content h1 {
  font-size: 60px;
  font-weight: 800;
}

/* FEATURES */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 25px;
}

.feature-list li::before {
  
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 14px;
}

/* BUTTON */
.purchase-btn {
  background: var(--primary-dark);
  color: #fff;
  border: none;
  padding: 12px 20px;
  width: 100%;
  font-weight: 600;
}

.purchase-btn:hover {
  background: #092f34;
}

/* DIVIDER */
hr {
  margin: 30px 0;
  border-color: #ccc;
}

/* ACCORDION FIX */
.freight-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.freight-item.active .freight-body {
  max-height: 1000px; /* increased so content never cuts */
}

/* LIST FIX */
.feature-list {
  padding-left: 0;
  list-style: none;
}

.feature-list li {
  margin-bottom: 8px;
  font-size: 14px;
}

/* MOBILE IMPROVEMENT */
@media (max-width: 768px) {
  .price-box {
    height: 180px;
  }

  .price-content h1 {
    font-size: 32px;
  }

  .freight-header h5 {
    font-size: 18px;
  }
}


/* FULL WIDTH SECTION */
.bg-section {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background-image: url('/img/container.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* 📱 MOBILE FIX */
@media (max-width: 768px) {
  .bg-section {
    /* background-size: contain;   show full image */
    background-position: center top;
    background-repeat: no-repeat;

    min-height: auto;           /* prevent extra empty space */
    padding: 100px 20px;        /* maintain spacing */
  }
}

/* make card vertical layout */
.card {
  display: flex;
  flex-direction: column;
}

/* make content area flexible */
.card > div:last-child {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* push last div (anchor container) to bottom */
.card > div:last-child > div {
  margin-top: auto;
}

.footer-section {
  background: #fff;
}

/* TITLES */
.footer-title {
  font-size: 14px;
  font-weight: 700;
  color: #999;
  text-transform: uppercase;
  margin-bottom: 15px;
}

/* LINKS */
.footer-links li {
  margin-bottom: 10px;
  font-size: 14px;
  color: var(--primary-dark);
}

.footer-links a {
  text-decoration: none;
  color: var(--primary-dark);
  transition: 0.3s;
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 5px;
}

/* ICON ALIGNMENT */
.footer-links i {
  width: 18px;
}

/* MOBILE SPACING */
@media (max-width: 991px) {
  .footer-section {
    text-align: left;
  }
}

.footer-section {
  border-top: 1px solid #eee;
}

.footer-links li:hover {
  transform: translateX(3px);
  transition: 0.2s;
  color: var(--primary);
}

/* About us  */
.timeline-section {
  position: relative;
}

.timeline-item {
  margin-bottom: 120px;
  position: relative;
}

/* REMOVE bootstrap padding gap */
.timeline-item .row {
  --bs-gutter-x: 0;
}

/* CARD */
.timeline-card {
  background: #fff;
  border: 18px solid #cecece;
  /* padding: 35px; */
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  position: relative;
}

/* PUSH CARDS CLOSER TO LINE */
.timeline-item:nth-child(odd) .timeline-card {
  margin-right: -40px;
}

.timeline-item:nth-child(even) .timeline-card {
  margin-left: -40px;
}

/* IMAGE ADJUST */
.timeline-img {
  width: 100%;
}

/* YEAR */
.year {
  color: var(--primary);
  font-weight: 700;
}

/* CENTER LINE */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 3px;
  height: 100%;
  background: #eee;
}

.timeline-progress {
  position: absolute;
  width: 100%;
  height: 0;
  background: var(--primary);
  top: 0;
  left: 0;
}

/* DOT */
.timeline-item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 40px;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  background: var(--primary-dark);
  border-radius: 50%;
  z-index: 5;
}

/* MOBILE */
@media (max-width: 991px) {

  .timeline-line {
    left: 20px;
  }

  .timeline-item::before {
    left: 20px;
  }

  .timeline-item .row {
    flex-direction: column !important;
  }

  .timeline-card {
    margin: 20px 0 0 40px !important;
  }
}

/* why choose */

/* IMAGE */
.image-wrapper {
  overflow: hidden;
}

.main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



.main-title {
  font-size: 42px;
  font-weight: 700;
  color: #0b3d3b;
  margin-bottom: 30px;
}

/* FEATURE BOX */
.feature-box {
  gap: 20px;
  margin-bottom: 25px;
}

.icon-box {
  width: 65px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.icon-box.dark {
  background: var(--primary-dark);
}

.icon-box.orange {
  background: var(--primary);
}

.feature-box h5 {
  font-weight: 600;
  margin-bottom: 5px;
}

.feature-box p {
  font-size: 14px;
  color: #777;
  margin: 0;
}

/* BUTTON */
.contact-btn {
  background: var(--primary-dark);
  color: #fff;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 0;
}

.contact-btn:hover {
  background: var(--primary);
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .main-title {
    font-size: 30px;
  }
}


/* MAP */
.map-box {
  /* border-radius: 10px; */
  overflow: hidden;
  min-height: 100%;
}

.map-box iframe {
  min-height: 100%;
  height: 100%;
}

/* MOBILE */
@media (max-width: 991px) {
  .map-box {
    height: 300px;
  }
}



/* About */

 /* Core Section Layout */
    .about-section {
      padding: 80px 0;
    }

    /* Left Side: Brand Card Frame */
    .brand-story-card {
      border: 8px solid #dbdbdb; /* Signature thick grey frame */
      padding: 45px;
      background-color: #ffffff;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    }

    .brand-established {
      color: #e66e45; /* Coral Accent */
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .brand-title {
      color: #0d4b43; /* Deep Teal */
      font-size: 1.8rem;
      font-weight: 700;
      margin-bottom: 25px;
      line-height: 1.3;
    }

    .brand-text {
      color: #555555;
      font-size: 1.05rem;
      line-height: 1.8;
    }

    /* Right Side: Feature Grid & Image */
    .about-img-wrapper {
      margin-bottom: 40px;
    }

    .about-img {
      width: 100%;
      height: auto;
      object-fit: cover;
      border-radius: 4px;
    }

    .strengths-heading {
      color: #0d4b43;
      font-size: 1.5rem;
      font-weight: 700;
      margin-bottom: 25px;
      position: relative;
      padding-bottom: 10px;
    }

    /* Subtle underline accent for the strengths header */
    .strengths-heading::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 3px;
      background-color: #e66e45;
    }

    /* Strength List Item Layout */
    .strength-item {
      margin-bottom: 20px;
      display: flex;
      align-items: start;
    }

    /* Custom Bullet Design matching your color scheme */
    .strength-bullet {
      width: 8px;
      height: 8px;
      background-color: #e66e45;
      border-radius: 50%;
      margin-top: 9px;
      margin-right: 15px;
      flex-shrink: 0;
    }

    .strength-title {
      font-weight: 700;
      color: #0d4b43;
      font-size: 1.05rem;
    }

    .strength-desc {
      color: #666666;
      font-size: 0.95rem;
      margin-top: 2px;
      line-height: 1.5;
    }

    /* Responsive adjustments for cleaner flow on small viewports */
    @media (max-width: 767.98px) {
      .brand-story-card {
        border-width: 4px;
        padding: 25px;
      }
      .brand-established {
        font-size: 2rem;
      }
      .brand-title {
        font-size: 1.5rem;
      }
    }


    .user-icon{
    height:60px;
    width:60px;
    border-radius:50%;
    background:#f3f4f6;
    display:flex;
    align-items:center;
    justify-content:center;
}

.user-icon i{
    font-size:28px;
    color:#6c757d;
}




/* WhatsApp Floating Button */
.whatsapp-float{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 32px;
    text-decoration: none;
    z-index: 9999;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    transition: all .3s ease;
}

.whatsapp-float:hover{
    background: #1ebe5d;
    color: #fff;
    transform: scale(1.08);
}

.whatsapp-icon{
  font-size: 26px;
}

/* Mobile Responsive */
@media (max-width:768px){
    .whatsapp-float{
        width:55px;
        height:55px;
        font-size:28px;
        bottom:15px;
        right:15px;
    }
}