

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--primary-clr);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1.8px;
}
.section-title span {
    width: 35px;
    height: 2px;
    background: var(--primary-clr);
    display: inline-flex;
}



/* ---------- BEGIN:: hero section ---------- */
.hero {
    position: relative;
    height: 100vh; /*calc(100vh - 70px);*/
    overflow: hidden;
    isolation: isolate;
    color: var(--text-white);
    background: #0f172a;
}
.hero-slides {
    position: absolute;
    inset: 0;
    z-index: -3;
}
.hero-slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1.08);
    transition: opacity 1s ease, transform 6s ease;
}
.hero-slide.is-active {
    opacity: 1;
    transform: scale(1);
}



.bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

/* base "image": layered radial gradients standing in for a photographic
   backdrop, since no external asset is bundled with this template */
.bg-image{
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(60% 45% at 50% 8%, rgba(53,229,195,0.16), transparent 60%),
    radial-gradient(55% 40% at 82% 78%, rgba(77,124,255,0.16), transparent 65%),
    radial-gradient(70% 55% at 12% 82%, rgba(20,40,45,0.55), transparent 60%),
    linear-gradient(180deg, #060d12 0%, #071219 45%, #050a0e 100%);
  filter: saturate(1.05);
  opacity: 0.8;
}

.bg-orb{
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  will-change: transform;
}
.bg-orb--teal{
    width: 46vw;
    height: 46vw;
    top: -12vw;
    left: 8vw;
    background: radial-gradient(
        circle,
        rgba(53, 229, 195, 0.45),
        transparent 70%
    );
    animation: drift-a 10s ease-in-out infinite;
    will-change: transform;
}
.bg-orb--blue{
    width: 40vw;
    height: 40vw;
    bottom: -14vw;
    right: 4vw;
    background: radial-gradient(
        circle,
        rgba(77, 124, 255, 0.35),
        transparent 70%
    );
    animation: drift-b 14s ease-in-out infinite;
    will-change: transform;
}
/*@keyframes drift-a {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(3vw, 3vw, 0); }
}
@keyframes drift-b {
    0%, 100% { transform: translate3d(0, 0, 0); }
    50% { transform: translate3d(-2vw, -3vw, 0); }
}*/

.bg-grid{
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(65% 55% at 50% 45%, black, transparent 85%);
  opacity: 0.5;
  display: none;
}

.bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 70% at 50% 100%, rgba(0,0,0,0.55), transparent 60%),
    radial-gradient(90% 60% at 50% 0%, rgba(0,0,0,0.35), transparent 55%);
  pointer-events: none;
  display: none;
}



/**/
/* ---------------------------------------------------
   Glass cards
--------------------------------------------------- */
.glass-card{
  position: absolute;
  width: 230px;
  padding: 18px;
  border-radius: 20px;
  background: rgba(18, 28, 36, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(22px) saturate(140%);
  -webkit-backdrop-filter: blur(22px) saturate(140%);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 1;
  transition:
    border-color 0.3s var(--easing-cb),
    box-shadow 0.3s var(--easing-cb),
    transform 0.15s var(--easing-cb);
  user-select: none;
}

.glass-card.floaty{
  animation-name: float, fade-in-card;
  animation-duration: 7s, 0.8s;
  animation-timing-function: ease-in-out, var(--easing-cb);
  animation-iteration-count: infinite, 1;
  animation-fill-mode: none, forwards;
}

@keyframes fade-in-card{
  from{ opacity: 0; transform: translateY(14px) scale(0.98); }
  to{ opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes float{
  0%, 100%{ transform: translateY(0); }
  50%{ transform: translateY(-9px); }
}

.card-network{ top: 122px; left: 90px; animation-delay: 0s, 0.1s; }
.card-edit{ top: 148px; right: 90px; animation-delay: 1.2s, 0.3s; }
.card-admin{ bottom: 46px; right: 90px; width: 250px; animation-delay: 0.6s, 0.55s; }

.glass-card:hover{
  border-color: rgba(255, 255, 255, 0.18);
}

.glass-card.dragging{
  transition: none;
  cursor: grabbing;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5), 0 0 0 1px var(--teal-clr);
  z-index: 20;
}

/* Edit-mode highlight state, toggled via JS */
.scene.edit-mode .glass-card{
  border-color: rgba(53,229,195,0.55);
  box-shadow: 0 20px 45px rgba(0,0,0,0.35), 0 0 0 1px rgba(53,229,195,0.35), 0 0 24px rgba(53,229,195,0.12);
}
.scene.edit-mode .glass-card:hover{
  border-color: var(--teal-clr);
}
.scene.edit-mode .drag-handle{
  opacity: 1;
}

.drag-handle{
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,0.18);
  opacity: 0;
  transition: opacity 0.25s var(--easing-cb);
}
.glass-card:hover .drag-handle{ opacity: 0.6; }

.card-row{
  display: flex;
  align-items: center;
  gap: 10px;
}
.card-row--head{ justify-content: space-between; margin-bottom: 14px; }
.card-row--foot{ justify-content: space-between; margin-top: 12px; }
.card-row--between{ justify-content: space-between; margin: 12px 0; }

.card-label{
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #b9c4c6;
  font-weight: 500;
}
.card-title{ font-weight: 600; font-size: 15px; }
.card-title--sm{ font-size: 14px; }

.icon-btn, .icon-chip, .avatar{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #b9c4c6;
}
.icon-chip{
  width: 30px; height: 30px;
  border-radius: 9px;
  background: rgba(255,255,255,0.06);
  color: var(--teal-clr);
}
.icon-chip i{
    font-size: 13px;
    color: var(--teal-clr);
}

.admin-meta{ display: flex; flex-direction: column; gap: 2px; }
.dim{ color: #7c8b8d; font-size: 13px; }
.dim--xs{ font-size: 11.5px; }
.clr-teal{ color: var(--teal-clr) !important; }

.status-live{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: var(--teal-clr);
  font-weight: 500;
}
.status-live i{
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal-clr);
  box-shadow: 0 0 0 0 rgba(53,229,195,0.6);
  animation: pulse-dot 1.8s infinite;
}
@keyframes pulse-dot{
  0%{ box-shadow: 0 0 0 0 rgba(53,229,195,0.55); }
  70%{ box-shadow: 0 0 0 6px rgba(53,229,195,0); }
  100%{ box-shadow: 0 0 0 0 rgba(53,229,195,0); }
}

/* Bars (network activity) */
.bars{
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 54px;
  padding: 0 2px;
}
.bars span{
  flex: 1;
  height: var(--h);
  border-radius: 4px;
  background: rgba(255,255,255,0.14);
  transition: height 0.6s var(--easing-cb), background 0.3s var(--easing-cb);
}
.bars span.bar-active{
  background: linear-gradient(180deg, var(--teal-clr), #1f8f7c);
  box-shadow: 0 0 14px rgba(53,229,195,0.35);
}


/* Flow bar */
.flow-track{
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  overflow: hidden;
  margin-top: 6px;
}
.flow-fill{
  height: 100%;
  width: var(--pct);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue-clr), var(--teal-clr));
  transition: width 0.6s var(--easing-cb);
}


.glass-card-list {
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.glass-card-list .gcl-item {
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: #7c8b8d;
    line-height: 1.5;
}
.glass-card-list .gcl-item .gcli-icon {
    font-family: system-ui;
    color: var(--teal-clr);
    font-weight: 500;
}
.glass-card-list .gcl-item .gcli-text{}
/**/




.hero-container {
    height: 100%;
    display: flex;
    align-items: center;
    padding: 0 40px;
    justify-content: center;
}
.hero-content {
    width: fit-content;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.hero-eyebrow {
    display: flex;
    margin-bottom: 18px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    color: #fff;
    background: rgba(0,0,0,0.1);
    padding: 7px 20px;
    justify-content: start;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.09);

    /*for text reveal animation*/
    opacity: 0;
    transform: translate3d(0, -30px, 0);
    will-change: transform, opacity;
}
.hero-eyebrow svg{
    width: 15px;
    height: 15px;
    color: var(--teal-clr);
}
.hero-heading {
    /*font-size: clamp(44px, 6.4vw, 76px);*/
    font-size: 76px;
    line-height: 1.08;
    font-weight: 700;
    letter-spacing: -0.035em;
    color: var(--text-white);
    font-family: var(--font-bigger);

    /*for text reveal animation*/
    visibility: hidden;
    z-index: 1;
}
.hero-heading .char {
    display: inline-block;
    opacity: 0;
    transform: translate3d(-28px, 0, 0);
    filter: blur(10px);
    will-change: opacity, transform, filter;
}
.hero-heading-highlighted {
    display: block;
    width: fit-content;
    margin: 0 auto;
    font-size: clamp(3.3846rem, 6.4vw, 5.8462rem);
    font-family: var(--font-bigger);
    font-weight: 700;
    color: transparent;
    background: linear-gradient(100deg, var(--teal-clr) 0%, #8ff2df 45%, var(--blue-clr) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    z-index: 1;

    /*for text reveal animation*/
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    will-change: transform, opacity;
}
.hero-description {
    max-width: 540px;
    margin-top: 20px;
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-white-dim);

    /*for text reveal animation*/
    opacity: 0;
    transform: translate3d(0, 40px, 0);
    filter: blur(10px);
    will-change: transform, opacity, filter;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 45px;

    /*for text reveal animation*/
    opacity: 0;
    filter: blur(10px);
    transform: scale(.86) translate3d(0, 15px, 0);
    will-change: opacity, transform, filter;
}

.hero-indicators {
    position: absolute;
    z-index: 5;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: translateX(-50%);
}
.hero-indicator {
    width: 6px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    transition: width 0.5s ease, background-color 0.25s ease, border-color 0.25s ease;
}
.hero-indicator.is-active {
    background: var(--bg-gradient);
    width: 15px;
}




/* =========================================================
   ACTIVE ANIMATION STATES
========================================================= */

.hero-content.is-animating .hero-eyebrow {
    animation: heroAnimateFadeDown .85s cubic-bezier(.16, 1, .3, 1) .05s forwards;
}
.hero-content.is-animating .hero-heading-highlighted {
    animation: heroAnimateFadeUp 1s cubic-bezier(.16, 1, .3, 1) 1s forwards;
}
.hero-content.is-animating .hero-description {
    animation: heroAnimateFadeUp .9s cubic-bezier(.16, 1, .3, 1) 1.4s forwards;
}
.hero-content.is-animating .hero-actions {
    animation: heroAnimatePopUp .8s cubic-bezier(.16, 1, .3, 1) 1.8s forwards;
}

/* Heading becomes visible */
.hero-content.is-animating {
    display: flex;
}
.hero-content.is-animating .hero-heading {
    visibility: visible;
}
.hero-content.is-animating .hero-heading .char {
    animation: heroAnmimateChars .72s cubic-bezier(.16, 1, .3, 1) forwards;
}


/* =========================================================
   KEYFRAMES
========================================================= */

@keyframes heroAnmimateChars {
    0% {
        opacity: 0;
        transform: translate3d(-28px, 0, 0);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}
@keyframes heroAnimateFadeDown {
    0% {
        opacity: 0;
        transform: translate3d(0, -30px, 0);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes heroAnimateFadeUp {
    0% {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}
@keyframes heroAnimatePopUp {
    0% {
        opacity: 0;
        transform: scale(.86) translate3d(0, 15px, 0);
        filter: blur(10px);
    }
    70% {
        opacity: 1;
        transform: scale(1.035) translate3d(0, -2px, 0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translate3d(0, 0, 0);
        filter: blur(0);
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-heading,
    .hero-heading .char,
    .hero-eyebrow,
    .hero-description,
    .hero-actions {
        animation: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

}




@media (max-width: 1399px)
{
    .card-network {
        left: 70px;
    }
    .card-edit {
        top: 110px;
        right: 70px;
    }
    .card-admin {
        right: 70px;
    }
    .hero-heading, .hero-heading-highlighted {
        font-size: 60px;
    }
}
@media (max-width: 1199px)
{
    .card-network {
        left: 60px;
    }
    .card-edit {
        right: 60px;
    }
    .card-admin {
        right: 60px;
    }
    .hero-heading, .hero-heading-highlighted {
        font-size: 50px;
    }
}

@media (max-width: 991px)
{
    .glass-card{
        display: none;
    }
    .hero-heading, .hero-heading-highlighted {
        font-size: 60px;
    }
    .hero-description {
        font-size: 1rem;
    }
}
@media (max-width: 767px)
{
    .hero {
        height: 600px;
    }
    .hero-overlay {
        background:
            linear-gradient(
                90deg,
                rgba(var(--hero-overlay-rgb), 0.90),
                rgba(var(--hero-overlay-rgb), 0.52)
            );
    }
    .hero-container {
        align-items: center;
    }
    .hero-content {
        padding: 20px 15px 50px;
        text-align: center;
    }
    .hero-eyebrow {
        margin-bottom: 14px;
    }
    .hero-heading, .hero-heading-highlighted {
        font-size: 40px;
    }
    .hero-description {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 26px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .hero .btn {
        min-height: 35px;
        padding: 0 20px;
        font-size: 0.9rem;
    }
}
@media (max-width: 420px)
{
    :root{
        --text-base-size: 11px;
    }
    .hero {
        height: 500px;
    }
    .hero-content{
        padding-top: 70px;
    }
    .hero-eyebrow {
        display: none;
    }
    .hero-heading, .hero-heading-highlighted {
        font-size: 25px;
    }
    .hero-actions {
        width: 75%;
        margin: 0 auto;
    }
    .hero .btn {
        width: 100%;
        padding: 0 20px;
        height: 35px;
        min-height: 35px;
    }
}
/* ---------- END:: hero section ---------- */





/* ---------- BEGIN:: company information & track shipment ---------- */
.ci-n-ts{
    position: relative;
    padding: 100px 0;
    background: #f3f8fc;
    overflow: hidden;
}
.ci-n-ts::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    left: -250px;
    top: -200px;
    border-radius: 50%;
    background: rgba(0, 62, 149, 0.045);
    pointer-events: none;
}
.ci-n-ts::after {
    content: "";
    position: absolute;
    width: 400px;
    height: 400px;
    right: -220px;
    bottom: -200px;
    border-radius: 50%;
    background: rgba(0, 62, 149, 0.04);
    pointer-events: none;
}
.ci-n-ts .ci-wrap{}
.ci-n-ts .ci-wrap .ci-heading {
    margin: 0;
    color: var(--primary-dark-clr);
    font-size: clamp(2.25rem, 4vw, 3.75rem);
    line-height: 1.08;
    font-weight: 750;
    letter-spacing: -0.035em;
}
/* ----- SOLID 3D WORD CUBE ----- */
.ci-n-ts .ci-wrap .ci-heading .ci-cube {
    --cube-height: 1.08em;
    position: relative;
    display: inline-block;
    height: var(--cube-height);
    min-width: 105px;
    vertical-align: bottom;
    perspective: 1000px;
    color: var(--highlight-clr);
    margin-left: 5px;
}
/* ----- The rotating cube ----- */
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: block;
    transform-style: preserve-3d;
    transform-origin: center center;
    transition:
        transform 0.9s cubic-bezier(.65, .05, .36, 1);
    will-change: transform;
}
/* ----- Every face has exactly the same size ----- */
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track .ci-cube-face {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    white-space: nowrap;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    background: #f3f8fc;
    border-radius: 4px;
}
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track .ci-cube-face > span {
    background: linear-gradient( 100deg, var(--teal-clr) 0%, #20a289 5%, var(--blue-clr) 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-inline-end: 2px;
    padding-block-end: 2px;
}
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track .ci-cube-face:nth-child(1) {
    transform: rotateX(0deg) translateZ(calc(var(--cube-height) / 2)); /* FRONT */
}
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track .ci-cube-face:nth-child(2) {
    transform: rotateX(90deg) translateZ(calc(var(--cube-height) / 2)); /* TOP / NEXT FACE */
}
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track .ci-cube-face:nth-child(3) {
    transform: rotateX(180deg) translateZ(calc(var(--cube-height) / 2)); /* BACK */
}
.ci-n-ts .ci-wrap .ci-heading .ci-cube .ci-cube-track .ci-cube-face:nth-child(4) {
    transform: rotateX(270deg) translateZ(calc(var(--cube-height) / 2)); /* BOTTOM */
}

.ci-n-ts .ci-wrap .ci-description {
    max-width: 590px;
    margin: 28px 0 30px;
    font-size: 1rem;
    color: var(--text-dark-light);
    line-height: 1.6;
}

.ci-n-ts .ci-wrap .ci-features {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin-bottom: 32px;
}
.ci-n-ts .ci-wrap .ci-features .ci-feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    max-width: 250px;
}
.ci-n-ts .ci-wrap .ci-features .ci-feature .ci-feature-icon {
    flex: 0 0 30px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(var(--primary-rgb),0.1);
    color: var(--primary-clr);
    font-size: 14px;
    font-weight: 700;
    font-family: system-ui;
}
.ci-n-ts .ci-wrap .ci-features .ci-feature .ci-feature-heading {
    display: block;
    margin-bottom: 3px;
    color: var(--primary-dark-clr);
    font-size: 1.1rem;
    font-weight: 700;
}
.ci-n-ts .ci-wrap .ci-features .ci-feature .ci-feature-description {
    display: block;
    color: var(--text-dark-dim);
    font-size: 1rem;
    line-height: 1.5;
}


.ci-n-ts .ts-container {
    display: flex;
    justify-content: end;
}
.ci-n-ts .ts-wrap{
    width: 75%;
    position: relative;
    padding: 38px;
    border: 1px solid rgba(0, 62, 149, .08);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 20px 60px rgba(0, 27, 60, .09);
    z-index: 1;
}
.ci-n-ts .ts-wrap .ts-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}
.ci-n-ts .ts-wrap .ts-header .ts-icon {
    flex: 0 0 52px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--primary-clr);
    background: #eaf2fb;
}
.ci-n-ts .ts-wrap .ts-header .ts-icon i {
    font-size: 20px;
}
.ci-n-ts .ts-wrap .ts-header .ts-title {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-clr);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: .5px;
}
.ci-n-ts .ts-wrap .ts-header .ts-heading {
    margin: 0;
    color: var(--primary-dark-clr);
    font-size: 1.6rem;
    line-height: 1.2;
    font-weight: 700;
}
.ci-n-ts .ts-wrap .ts-description {
    margin: 0 0 15px;
    color: var(--text-dark-dim);
    font-size: 1rem;
    line-height: 1.5;
}

.ci-n-ts .ts-wrap .ts-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group label {
    display: block;
    margin-bottom: 5px;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 600;
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group input,
.ci-n-ts .ts-wrap .ts-form .ts-form-group select {
    width: 100%;
    height: 40px;
    padding: 0 15px;
    border: 1px solid #dbe3eb;
    border-radius: 5px;
    outline: none;
    color: var(--text-dark-light);
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group input::placeholder {
    color: #9aa7b5;
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group input:focus,
.ci-n-ts .ts-wrap .ts-form .ts-form-group select:focus {
    border-color: #003e95;
    box-shadow: 0 0 0 3px rgba(0, 62, 149, .08);
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group .ts-select-wrap {
    position: relative;
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group .ts-select-wrap select {
    appearance: none;
    padding-right: 40px;
    cursor: pointer;
}
.ci-n-ts .ts-wrap .ts-form .ts-form-group .ts-select-wrap .ts-select-arrow {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-62%);
    color: #637285;
    font-size: 16px;
    pointer-events: none;
}

.ci-n-ts .ts-wrap .ts-form .ts-track-btn {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 4px;
    border: 0;
    border-radius: 5px;
    color: #fff;
    background: var(--bg-gradient-primary);
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: letter-spacing .25s ease, box-shadow .25s ease;
}
.ci-n-ts .ts-wrap .ts-form .ts-track-btn:hover {
    letter-spacing: 0.5px;
    box-shadow: 0 8px 20px rgba(var(--primary-rgb), .2);
}
.ci-n-ts .ts-wrap .ts-form .ts-track-btn span {
    font-size: 1.2rem;
    line-height: 1;
}

.ci-n-ts .ts-wrap .ts-note {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    color: var(--text-dark-dim);
    font-size: 0.8rem;
    line-height: 1.5;
    align-items: center;
}
.ci-n-ts .ts-wrap .ts-note i {
    font-size: 0.9rem;
    line-height: 1.5;
}


/* ----- responsive settings ----- */
@media (max-width: 575px)
{
    .ci-n-ts::before {
        width: 400px;
        height: 440px;
    }
    .ci-n-ts::after {
        width: 350px;
        height: 350px;
    }
    .ci-n-ts .ts-wrap .ts-header .ts-title {
        font-size: 0.8rem;
    }
}
@media (max-width: 767px)
{
    .ci-n-ts::before {
        width: 450px;
        height: 450px;
    }
    .ci-n-ts::after {
        width: 440px;
        height: 410px;
    }
    .ci-n-ts .ts-wrap {
        width: 100%;
    }
}
@media (max-width: 991px)
{
    .ci-n-ts .ts-container {
        padding-top: 50px;
    }
    .ci-n-ts .ts-wrap {
        width: 100%;
    }
}
/* ---------- BEGIN:: company information & track shipment ---------- */





/* ---------- BEGIN:: our services ---------- */
.our-services {
    position: relative;
    padding-top: 70px;
}
.our-services .our-services-heading {
    display: block;
    width: 100%;
    text-align: center;
}
.our-services .our-services-heading > span {
    background: linear-gradient( 100deg, var(--teal-clr) 0%, #20a289 5%, var(--blue-clr) 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-inline-end: 2px;
    padding-block-end: 2px;
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-bigger);
}
.our-services .our-services-sub-heading {
    display: block;
    width: 100%;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 30px;
    color: var(--text-dark-light);
}
.our-services .row .col{}
.our-services .service-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    border-radius: 8px;
    text-align: center;
    padding: 30px 20px;
    height: 100%;
    color: var(--text-dark);
    border: 1px solid #eee;
    box-shadow: 0 0 11px 1px #ddd;
    transition: all 0.2s ease-in-out;
    overflow: hidden;
}
.our-services .service-card::before {
/*    content: '';*/
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: rgba(var(--primary-rgb),0.04);
    border-radius: 50%;
}
.our-services .service-card::after {
    content: '';
    position: absolute;
    bottom: -170px;
    right: -170px;
    background: rgba(var(--primary-rgb),0.04);
    width: 350px;
    height: 300px;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}
.our-services .service-card:hover {
    box-shadow: 0px 30px 11px -21px #ccc;
    transform: translateY(-10px);
}
.our-services .service-card:hover::after {
    bottom: -200px;
    right: -200px;
}
.our-services .service-card .service-card-icon {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 100px;
    margin: 0 auto 15px;
    background: rgba(var(--primary-rgb),0.1);
    justify-content: center;
    align-items: center;
}
.our-services .service-card .service-card-icon i {
    font-size: 25px;
    background: linear-gradient( 100deg, var(--teal-clr) 0%, #20a289 5%, var(--blue-clr) 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    padding-inline-end: 2px;
    padding-block-end: 2px;
}
.our-services .service-card .service-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-dark-clr);
}
.our-services .service-card .service-card-text {
    font-size: 0.9rem;
    max-width: 80%;
    margin: 0 auto;
    color: var(--text-dark-light);
}

.our-services-view-all {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-top: 30px;
}

/* ---------- BEGIN:: our services ---------- */





/* ---------- BEGIN:: temerature ---------- */
.temperature-section {
    position: relative;
    padding-top: 70px;
}
.temperature-wrap {
    display: grid;
    width: 100%;
    grid-template-columns: 1.25fr 0.75fr;
    background: #f3f6f9;
    overflow: hidden;
}
.temperature-banner {
    position: relative;
    height: 100%;
    overflow: hidden;
}
.temperature-image{
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.temperature-image::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100px;

    background: linear-gradient(
        to left,
        #f3f6f9 0%,
        #f3f6f9 20%,
        rgba(238, 238, 238, 0) 100%
    );
}

.temperature-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px 20px 30px 30px;
}
.temperature-details .temperature-details-heading {
    margin: 0 0 20px;
    font-size: 2.3rem;
    line-height: 1.1;
    font-weight: 700;
    color: var(--primary-dark-clr);
    font-family: var(--font-bigger);
}
.temperature-details .temperature-details-description {
    margin: 0 0 20px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--text-dark-light);
}

.temperature-features {
    display: grid;
    gap: 8px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}
.temperature-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-dark);
}
.temperature-features .check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 22px;
    color: var(--primary-clr);
    font-size: 1rem;
    font-weight: 800;
    font-family: system-ui;
}



@media (max-width: 575px){
    .temperature-wrap {
        grid-template-columns: 1fr;
    }
    .temperature-banner {
        height: 300px !important;
    }
    .temperature-image::after {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;

        width: auto;
        height: 100px;

        background: linear-gradient(
            to top,
            #f3f6f9 0%,
            #f3f6f9 20%,
            rgba(238, 238, 238, 0) 100%
        );
    }
}
/* ---------- BEGIN:: temerature ---------- */





/* ---------- BEGIN:: fleet slider ---------- */
.fleet-overview {
    position: relative;
    margin-top: 100px;
}
.fleet-overview .fo-wrap{
    background: #f5f9fc;
    padding: 25px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.fleet-overview .fo-wrap .fo-content {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}
.fleet-overview .fo-wrap .fo-content .fo-title {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--primary-clr);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.fleet-overview .fo-wrap .fo-content .fo-heading {
    max-width: 650px;
    margin: 0 0 10px;
    color: var(--primary-dark-clr);
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 700;
    font-family: var(--font-bigger);
}
.fleet-overview .fo-wrap .fo-content .fo-description {
    max-width: 700px;
    margin: 0;
    color: var(--text-dark-light);
    font-size: 1rem;
    line-height: 1.7;
}


.fleet-slider {
    width: 100%;
    overflow: hidden;
}
.fleet-slider-track {
    display: flex;
    gap: 16px;
    transform: translateX(0);
    will-change: transform;
    transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.fleet-slide {
    flex: 0 0 calc((100% - 80px) / 6);
    height: 220px;
    overflow: hidden;
    border-radius: 6px;
    background: #dce5ed;
    position: relative;
}
.fleet-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.90) 0%,
        rgba(0, 0, 0, 0.12) 40%,
        transparent 70%
    );
    pointer-events: none;
}

.fleet-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.fleet-slide:hover img {
    transform: scale(1.05);
}

.fleet-slide .fleet-slide-label {
    position: absolute;
    bottom: 7px;
    display: block;
    width: calc(100% - 20px);
    white-space: nowrap;
    color: #fff;
    z-index: 1;
    font-size: 0.9rem;
    overflow: hidden;
    left: 10px;
}

/* ==============================
   Tablet
================================= */

@media (max-width: 1100px) {

    .fleet-slide {
        flex-basis: calc((100% - 48px) / 4);
    }
}


/* ==============================
   Small Tablet
================================= */

@media (max-width: 768px) {

    .fleet-overview {
        padding: 60px 0;
    }

    .fleet-overview .fo-wrap .fo-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }

    .fleet-slide {
        flex-basis: calc((100% - 32px) / 3);
        height: 200px;
    }
}


/* ==============================
   Mobile
================================= */

@media (max-width: 576px) {

    .fleet-overview {
        padding: 50px 0;
    }

    .fleet-slide {
        flex-basis: calc((100% - 16px) / 2);
        height: 180px;
    }

    .fleet-slider-track {
        gap: 16px;
    }
}


/* ==============================
   Very Small Mobile
================================= */

@media (max-width: 400px)
{
    .fleet-slide {
        flex-basis: 100%;
        height: 200px;
    }
}
/* ---------- BEGIN:: fleet slider ---------- */





/* ---------- BEGIN:: features widgets ---------- */
.why-choose-us {
    position: relative;
    padding: 40px 50px 10px;
    margin-top: 100px;
    text-align: center;
    background-color: var(--dark-clr);
    overflow: hidden;
    /*background-image: radial-gradient(
        rgba(255, 255, 255, 0.10) 1.5px,
        transparent 1.5px
    );
    background-size: 20px 20px;
    animation: animateBackgroundPattern 2s linear infinite;
    transition: background-image 2s ease-in-out;*/
}
.why-choose-us::before {
    content: "";
    position: absolute;
    inset: -20px;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.18) 1.5px,
        transparent 1.5px
    );
    background-size: 20px 20px;
    animation:
            patternPulse 3s ease-in-out infinite,
            patternMove 12s linear infinite;
    pointer-events: none;
}

@keyframes patternPulse {
    0%, 100% { opacity: 0.45; }
    50% { opacity: 1; }
}
@keyframes patternMove {
    from {
        background-position: 0 0;
    }
    to {
        background-position: 20px 20px;
    }
}

.why-choose-us .wcu-heading {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    text-align: center;
    font-family: var(--font-bigger);
}
.why-choose-us .wcu-sub-heading {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-white-dim);
    margin-top: 5px;
}
.why-choose-us .col{
    position: relative;
}
.why-choose-us .col:not(:first-child)::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.05);
}
.why-choose-us .wcu-widget {
    color: var(--text-white);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
}
.why-choose-us .wcu-widget .wcu-widget-icon {
    font-size: 30px;
    background: linear-gradient( 180deg, var(--teal-clr) 0%, #20a289 5%, var(--blue-clr) 100% );
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: flex;
    width: fit-content;
    margin: 0 auto;
}
.why-choose-us .wcu-widget .wcu-widget-heading {
    font-size: 1.6rem;
    margin-top: 10px;
    font-weight: 700;
}
.why-choose-us .wcu-widget .wcu-widget-sub-heading {
    font-size: 1.1rem;
    font-weight: 500;
}
.why-choose-us .wcu-widget .wcu-widget-description {
    font-size: 1rem;
    line-height: 1.5rem;
    color: var(--text-white-dim);
    max-width: 80%;
    margin: 10px auto 0;
}


@media (max-width: 575px){
    .why-choose-us .col:not(:first-child)::before {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        height: 1px;
        width: 70%;
        background: rgba(255,255,255,0.05);
    }
}
@media (min-width: 361px) and (max-width: 991px){
    .why-choose-us .col:nth-child(odd)::before {
        display: none;
    }
    .why-choose-us .col:nth-child(3)::after,
    .why-choose-us .col:nth-child(4)::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 0;
        transform: translateX(-50%);
        height: 1px;
        width: 70%;
        background: rgba(255,255,255,0.05);
    }
}
/* ---------- BEGIN:: features widgets ---------- */




/* ---------- BEGIN:: request a quote & driver recruitment ---------- */
.rq-n-dc {
    position: relative;
    margin-top: 100px;
}
.rq-n-dc .rq-n-dc-wrap {
    background: #eff4fc;
    border-radius: 10px;
    padding: 25px;
    height: 100%;
}
.rq-n-dc .rq-n-dc-wrap > .row{
    height: 100%;
}
.rq-n-dc .rq-n-dc-wrap .rq-n-dc-details {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.rq-n-dc .rq-n-dc-wrap .rq-n-dc-details .rq-n-dc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-clr);
}
.rq-n-dc .rq-n-dc-wrap .rq-n-dc-details .rq-n-dc-heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-dark-clr);
    margin-top: 7px;
    font-family: var(--font-bigger);
}
.rq-n-dc .rq-n-dc-wrap .rq-n-dc-details .rq-n-dc-description {
    margin: 20px 0;
    font-size: 1rem;
    color: var(--text-dark-light);
}
.rq-n-dc .rq-n-dc-wrap .rq-n-dc-details .rq-n-dc-action {
    margin-top: auto;
}

.rq-n-dc .rq-n-dc-wrap .rq-n-dc-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    height: 100%;
    min-height: 250px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

@media (max-width: 991px){
    .rq-n-dc .container > .row{
        gap: 50px;
    }
    .rq-n-dc .rq-n-dc-wrap > .row > div:first-child {
        order: 2;
    }
    .rq-n-dc .rq-n-dc-wrap > .row > div:last-child {
        order: 1;
    }
    .rq-n-dc .rq-n-dc-wrap .rq-n-dc-details {
        margin-top: 20px;
    }
    .rq-n-dc .rq-n-dc-wrap .rq-n-dc-details .rq-n-dc-title{
        margin-top: 20px;
    }
}
/* ---------- BEGIN:: request a quote & driver recruitment ---------- */





/* ---------- :: crousal :: ---------- */
.advertisement{
    margin-block: 100px;
    position: relative;
}
.crousal-infinite {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.crousal-track {
    display: flex;
    width: max-content;
    animation: continuousScroll 20s linear infinite;
}

.crousal-infinite:hover .crousal-track {
    animation-play-state: paused;
}

.crousal-slide {
    width: fit-content;
    flex-shrink: 0;
    margin-right: 20px;
    overflow: hidden;
    border-radius: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
}
.crousal-slide .cslide-box {
    display: flex;
    align-items: center;
    gap: 20px;
}
.crousal-slide .cslide-box .cslide-box-img {
    display: flex;
    width: 50px;
    height: 50px;
    border-radius: 10px;
}
.crousal-slide .cslide-box .cslide-box-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}
.crousal-slide .cslide-box .cslide-box-text {
    font-size: 1.2rem;
    color: #222;
    font-weight: 600;
}

@keyframes continuousScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 10px));
    }
}
/* ---------- :: crousal :: ---------- */







/* ---------- << START:: useful links >> ---------- */
.get-started {
    background: var(--bg-gradient);
    position: relative;
}
.get-started .gs-wrap {
    display: flex;
    width: 100%;
    flex-direction: revert;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    padding-block: 30px;
}
.get-started .gs-wrap .gs-content {
    display: flex;
    align-items: center;
    gap: 20px;
}
.get-started .gs-wrap .gs-content .gsc-icon{}
.get-started .gs-wrap .gs-content .gsc-icon i {
    font-size: 40px;
    color: #fff;
}
.get-started .gs-wrap .gs-content .gsc-text{}
.get-started .gs-wrap .gs-content .gsc-text .gsc-heading {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-white);
}
.get-started .gs-wrap .gs-content .gsc-text .gsc-description {
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
}
.get-started .gs-wrap .gs-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-shrink: 0;
}
.get-started .gs-wrap .gs-links .gsl-link {
    display: flex;
    width: fit-content;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    background: #fff;
    color: #333;
    border: 1px solid #fff;
    position: relative;
    transition: transform .2s ease-in-out;
}
.get-started .gs-wrap .gs-links .gsl-link.gsl-link-outline{
    background: transparent;
    color: #fff;
}
.get-started .gs-wrap .gs-links .gsl-link:hover{
    transform: translateY(-4px);
}

@media (max-width: 575px)
{
    .get-started .gs-wrap .gs-links {
        gap: 10px;
        flex-direction: column;
    }
    .get-started .gs-wrap .gs-links .gsl-link {
        width: 100%;
    }
}

@media (max-width: 991px)
{
    .get-started .gs-wrap {
        flex-direction: column;
        gap: 30px;
    }
    .get-started .gs-wrap .gs-content {
        flex-direction: column;
    }
    .get-started .gs-wrap .gs-content .gsc-text {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .get-started .gs-wrap .gs-content .gsc-text .gsc-heading {
        text-align: center;
    }
    .get-started .gs-wrap .gs-content .gsc-text .gsc-description {
        text-align: center;
    }
}
@media (min-width: 992px) and (max-width: 1199px)
{
    .get-started .gs-wrap .gs-links {
        gap: 10px;
        flex-direction: column;
    }
    .get-started .gs-wrap .gs-links .gsl-link {
        width: 100%;
    }
}
/* ---------- << CLOSE:: useful links >> ---------- */