/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh; /* Fixed height to contain overlay and video */
    overflow: hidden;
    text-align: center;
    color: white;
    background-color: #203E56;
}

.hero-section video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: white;
    line-height: 1.4;
}

.hero-overlay p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 90%;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}

.hero-buttons a {
    background: #203E56;
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.3s ease;
    white-space: nowrap;
}

.hero-buttons a:hover {
    background: #c1733d;
    color: white;
}

/* LABELED ICONS SECTION */
.labeled-icons {
    background-color: #203E56;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    padding: 30px 20px;
    gap: 20px;
}

.labeled-icons > div {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 250px;
    justify-content: center;
}

.labeled-icons img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: invert(100%) brightness(200%);
}

.labeled-icons p {
    margin: 0;
    color: white;
    font-size: 22px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* RESPONSIVE BREAKPOINTS */
@media (max-width: 768px) {
    .hero-overlay {
        padding: 50px 15px;
    }

    .hero-overlay h1 {
        font-size: 1.6rem;
    }

    .hero-overlay p {
        font-size: 1rem;
    }

    .hero-buttons a {
        font-size: 0.95rem;
        padding: 10px 20px;
    }

    .custom-hero-buttons a {
         font-size: 0.95rem;
        padding: 10px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        height: auto;
        min-height: 100vh;
    }

    .hero-overlay {
        height: auto;
        min-height: 100vh;
        padding: 60px 15px 40px;
    }

    .hero-overlay h1 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .hero-overlay p {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        font-size: 1rem;
    }
    
    .custom-hero-buttons {
        align-items: center !important;
        width: 100%;
    }
}

.stats-section {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
  gap: 20px;
  padding: 40px 20px;
  padding-top: 100px;
}

.background-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 0;
  pointer-events: none;
}

.stat-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  flex: 1 1 18%;
  min-width: 180px;
  text-align: center;
  border-bottom: 5px solid #203E56;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
  z-index: 1;
}

.stat-box {
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: scale(1.05);
}

.stat-img {
  width: 60px;
  height: 60px;
  margin: 0 auto 10px auto;
  display: block;
}

.stat-box h2 {
  font-size: 22px;
  color: #000;
  margin-bottom: 8px;
}

.stat-box p {
  font-size: 14px;
  color: #555;
}

/* Responsive for Mobile */
@media screen and (max-width: 768px) {
  .stats-section {
    flex-direction: column;
    align-items: center;
  }

  .stat-box {
    width: 90%;
    margin-bottom: 20px;
  }
}

.heading-orange {
    text-transform: uppercase;
    color: #D78955;
}

.heading-blue {
    text-transform: uppercase;
    color: #203E56;
}

.track_form_tr h4{
    color: #203E56;
}

.wpcargo-btn{
    background-color: #203E56 !important;
}

.wpcargo-btn:hover{
    background-color: #D78955 !important;
}

.section h5 {
    justify-content: center;
}

.container.ros {
  text-align: center;
  padding-bottom: 50px;
}

.group.ros {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px; /* spacing between cards */
  justify-content: center; /* optional: centers the row items */
}

.ros-card {
  background-color: #203E56;
  border-radius: 20px;
  border: 1px solid #203E56;
  flex-grow: 1;
  flex-basis: calc((100% - 48px) / 3); /* 3 in a row with 24px gap */
  padding: 40px 40px 30px 40px;
  transition: all 400ms cubic-bezier(0.42, 0, 0.41, 1.31);
  cursor: pointer;
  z-index: 1;
  box-sizing: border-box;
}

.ros-card a{
    text-decoration: none;
}

.ros-card:hover {
  border: 1px solid #D78955;
  background-color: #D78955;
  box-shadow: 0px 3px 30px #12204999;
  transform: scale3d(1.05, 1.05, 1.05);
}

.ros-card h2,
.ros-card:hover h2 {
  margin-top: -25px;
  color: white;
}

.ros-icon {
  height: 250px;
  width: 250px;
  margin: 0 auto 10px auto;
  display: block;
}

.ros h5 {
  padding-top: 100px;
}

@media (max-width: 992px) {
  .ros-card {
    flex-basis: calc((100% - 24px) / 2); /* 2 in a row */
  }

  .container.ros {
    padding-bottom: 100px;
  }
}

@media (max-width: 600px) {
  .ros-card {
    flex-basis: 100%; /* full width on small screens */
  }

  .ros h5 {
    padding-top: 40px;
  }

  .group.ros {
    margin-top: 25px;
  }
}

.custom-hero {
  position: relative;
  width: 100%;
  background: #000; /* solid dark background */
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-hero-overlay {
  background: rgba(0, 0, 0, 0.6); /* dark overlay for text readability */
  width: 100%;
  height: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
}

.custom-hero-overlay h1 {
  color: white;
  font-size: 2.8rem;
  margin-bottom: 10px;
}

.custom-hero-overlay p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.custom-hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.custom-hero-buttons a {
  background-color: #203E56;
  color: white;
  padding: 12px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background 0.3s ease;
  width: fit-content;
}

.custom-hero-buttons a .arrow {
  margin-left: 8px;
  font-size: 1.2em;
  transition: transform 0.2s ease;
}

.custom-hero-buttons a:hover {
  background-color: #b86a3d;
}

.custom-hero-buttons a:hover .arrow {
  transform: translateX(4px);
}

.partners-carousel-wrapper {
    position: relative;
    margin-top: 30px;
  }

  .partners-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  .partners-carousel::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .partner-item {
    flex: 0 0 auto; /* prevent shrinking */
    width: 150px;
    height: 80px;
    margin-right: 20px;
    object-fit: contain;
    cursor: grab;
    user-select: none;
  }

  .partners-carousel.active {
    cursor: grabbing;
    cursor: -webkit-grabbing;
    user-select: none;
  }

  .carousel-dots {
  text-align: center;
  margin-top: 15px;
}

.carousel-dots button {
  width: 10px;    /* smaller width */
  height: 10px;   /* smaller height */
  border-radius: 50%;
  background-color: #ccc;
  border: none;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  padding: 0;
}

.carousel-dots button.active {
  background-color: #203E56; /* active dot color */
}