/* =========================================================
   GLOBAL
========================================================= */

:root {
    --primary: #ff5a1f;
    --primary-dark: #e94b14;
    --dark: #101820;
    --dark-2: #17212b;
    --text: #5f6b76;
    --light: #f7f9fb;
    --white: #ffffff;
    --border: #e8edf1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    color: var(--text);
    overflow-x: hidden;
}

a {
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.section-padding {
    padding: 100px 0;
}


/* =========================================================
   TOP BAR
========================================================= */

.top-bar {
    background: var(--dark);
    color: rgba(255, 255, 255, .8);
    font-size: 13px;
    padding: 10px 0;
}

.top-info,
.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.top-right {
    justify-content: flex-end;
}

.top-info span,
.top-right span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.top-bar i {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    color: #fff;
    transition: .3s;
}

.social-links a:hover {
    color: var(--primary);
}


/* =========================================================
   NAVBAR
========================================================= */

.main-navbar {
    background: var(--white);
    padding: 11px 0;
    transition: .4s;
    z-index: 999;
}

.main-navbar.scrolled {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 12px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
    font-size: 25px;
    font-weight: 800;
}

.navbar-brand span:last-child span,
.footer-logo span:last-child {
    color: var(--primary);
}

.navbar-logo {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 480px) {
    .navbar-logo {
        width: 140px;
    }
}

.navbar-nav {
    gap: 5px;
}

.nav-link {
    color: var(--dark) !important;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 14px !important;
    transition: .3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary) !important;
}

.dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .1);
}

.dropdown-item {
    padding: 10px 15px;
    border-radius: 7px;
    font-size: 14px;
}

.dropdown-item:hover {
    background: #fff1eb;
    color: var(--primary);
}

.quote-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #fff;
    padding: 13px 20px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.quote-btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}


/* =========================================================
   HERO
========================================================= */

.hero-section {
    min-height: 680px;
    position: relative;
    display: flex;
    align-items: center;
    background: url("../images/hero.jpg") center/cover no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgb(70 91 110 / 96%) 0%, rgb(8 31 51 / 82%) 50%, rgb(3 6 9 / 35%) 100%);
}

.hero-row {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
}

.hero-tag,
.section-tag {
    display: inline-block;
    color: var(--primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 18px;
}

.hero-tag {
    color: #ff8a61;
}

.hero-tag i {
    margin-right: 6px;
}

.hero-content h1 {
    color: #fff;
    font-size: clamp(42px, 5vw, 70px);
    line-height: 1.08;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero-content h1 span {
    color: var(--primary);
    display: block;
}

.hero-content p {
    max-width: 580px;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-primary-custom,
.btn-outline-custom {
    padding: 15px 24px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.btn-primary-custom {
    background: var(--primary);
    color: #fff;
}

.btn-primary-custom:hover {
    background: #fff;
    color: var(--dark);
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, .5);
    color: #fff;
}

.btn-outline-custom:hover {
    background: #fff;
    color: var(--dark);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 30px;
}

.hero-features div {
    color: rgba(255, 255, 255, .85);
    font-size: 13px;
}

.hero-features i {
    color: var(--primary);
    margin-right: 5px;
}


/* =========================================================
   TRACKING CARD
========================================================= */

.tracking-card {
    background: rgba(255, 255, 255, .97);
    border-radius: 18px;
    padding: 35px;
    max-width: 430px;
    margin-left: auto;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .25);
}

.tracking-icon {
    width: 55px;
    height: 55px;
    background: #fff0ea;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 22px;
    margin-bottom: 20px;
}

.tracking-card h3 {
    color: var(--dark);
    font-size: 23px;
    margin-bottom: 10px;
    font-weight: 800;
}

.tracking-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 22px;
}

.tracking-input {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0 15px;
    height: 54px;
    margin-bottom: 12px;
}

.tracking-input i {
    color: var(--primary);
}

.tracking-input input {
    width: 100%;
    height: 100%;
    border: none;
    outline: none;
    font-size: 14px;
}

.tracking-btn {
    width: 100%;
    height: 54px;
    border: none;
    border-radius: 8px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    transition: .3s;
}

.tracking-btn:hover {
    background: var(--primary-dark);
}

#trackingMessage {
    display: block;
    margin-top: 12px;
    font-size: 13px;
    color: var(--primary);
}


/* =========================================================
   TRUST
========================================================= */

.trust-section {
    background: #fff;
    padding: 28px 0;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .06);
    position: relative;
    z-index: 3;
}

.trust-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.trust-item i {
    color: var(--primary);
    font-size: 24px;
}

.trust-item strong {
    color: var(--dark);
    font-size: 22px;
}

.trust-item span {
    font-size: 12px;
}


/* =========================================================
   SECTION HEADING
========================================================= */

.section-heading {
    max-width: 650px;
}

.section-heading h2 {
    color: var(--dark);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.15;
    font-weight: 800;
    margin-bottom: 20px;
}

.section-heading h2 span {
    color: var(--primary);
}

.section-heading p {
    line-height: 1.8;
    font-size: 15px;
}


/* =========================================================
   ABOUT
========================================================= */

.about-image-wrapper {
    position: relative;
    padding-right: 30px;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 18px;
}

.experience-box {
    position: absolute;
    bottom: 25px;
    right: 0;
    background: var(--primary);
    color: #fff;
    padding: 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 15px 35px rgba(255, 90, 31, .3);
}

.experience-box strong {
    font-size: 38px;
    line-height: 1;
}

.experience-box span {
    font-size: 13px;
    max-width: 90px;
}

.about-points {
    margin: 30px 0;
}

.about-point {
    display: flex;
    gap: 15px;
    margin-bottom: 22px;
}

.point-icon {
    min-width: 48px;
    height: 48px;
    background: #fff0ea;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

.about-point h5 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 5px;
}

.about-point p {
    font-size: 13px;
    margin: 0;
}

.dark-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--dark);
    color: #fff;
    padding: 14px 22px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
}

.dark-btn:hover {
    background: var(--primary);
    color: #fff;
}


/* =========================================================
   SERVICES
========================================================= */

.services-section {
    background: var(--light);
}

.service-card {
    height: 100%;
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: .4s;
    border: 1px solid var(--border);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .09);
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
}

.service-content {
    position: relative;
    padding: 35px 25px 25px;
}

.service-icon {
    position: absolute;
    top: -28px;
    left: 25px;
    width: 55px;
    height: 55px;
    background: var(--primary);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 20px rgba(255, 90, 31, .25);
}

.service-content h4 {
    color: var(--dark);
    font-size: 19px;
    font-weight: 800;
    margin-bottom: 12px;
}

.service-content p {
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.service-content a {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   WHY CHOOSE US
========================================================= */

.why-section {
    background: #fff;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.why-card {
    padding: 22px;
    background: var(--light);
    border-radius: 12px;
    transition: .3s;
}

.why-card:hover {
    background: var(--dark);
    transform: translateY(-4px);
}

.why-card i {
    color: var(--primary);
    font-size: 23px;
    margin-bottom: 15px;
}

.why-card h5 {
    color: var(--dark);
    font-size: 15px;
    font-weight: 800;
}

.why-card:hover h5 {
    color: #fff;
}

.why-card p {
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
}
.why-card:hover p{
    color: #fff;
}
.why-image {
    position: relative;
}

.why-image img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    border-radius: 18px;
}

.floating-stat {
    position: absolute;
    bottom: 25px;
    left: -30px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 13px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .12);
}

.floating-icon {
    width: 45px;
    height: 45px;
    background: #fff0ea;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.floating-stat strong {
    display: block;
    color: var(--dark);
    font-size: 20px;
}

.floating-stat span {
    font-size: 11px;
}


/* =========================================================
   PROCESS
========================================================= */

.process-section {
    background: var(--light);
}

.process-card {
    text-align: center;
    position: relative;
    padding: 30px 20px;
}

.process-number {
    position: absolute;
    top: 0;
    right: 20px;
    color: #e4e9ed;
    font-size: 48px;
    font-weight: 800;
}

.process-icon {
    width: 70px;
    height: 70px;
    background: #fff;
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 25px;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    position: relative;
}

.process-card h4 {
    color: var(--dark);
    font-size: 17px;
    font-weight: 800;
}

.process-card p {
    font-size: 13px;
    line-height: 1.7;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    padding: 70px 0;
    background: var(--primary);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-content .section-tag {
    color: rgba(255, 255, 255, .8);
    margin-bottom: 8px;
}

.cta-content h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 45px);
    font-weight: 800;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, .85);
    margin: 0;
}

.cta-btn {
    flex-shrink: 0;
    background: #fff;
    color: var(--dark);
    padding: 15px 24px;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 800;
    transition: .3s;
}

.cta-btn:hover {
    background: var(--dark);
    color: #fff;
}


/* =========================================================
   FOOTER
========================================================= */

.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .65);
    padding: 75px 0 0;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 20px;
}
.footer-logo img {
    width: 170px;
    height: auto;
    display: block;
    object-fit: contain;
}

@media (max-width: 480px) {
    .footer-logo img {
        width: 145px;
    }
}
.footer-description {
    font-size: 13px;
    line-height: 1.8;
    max-width: 340px;
}

.footer h5 {
    color: #fff;
    font-size: 15px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    transition: .3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 35px;
    height: 35px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: .3s;
}

.footer-social a:hover {
    background: var(--primary);
}

.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 13px;
    line-height: 1.6;
}

.contact-list i {
    color: var(--primary);
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 50px;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    gap: 20px;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .6);
    font-size: 12px;
}

.footer-bottom a:hover {
    color: var(--primary);
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

    .top-right {
        justify-content: flex-start;
        margin-top: 8px;
    }

    .main-navbar {
        padding: 14px 0;
    }

    .navbar-collapse {
        margin-top: 15px;
        padding: 15px;
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    }

    .quote-btn {
        display: inline-flex;
    }

    .hero-section {
        padding: 90px 0;
    }

    .tracking-card {
        margin: 50px auto 0;
    }

    .about-image-wrapper {
        padding-right: 0;
    }

    .floating-stat {
        left: 20px;
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}


@media (max-width: 767px) {

    .section-padding {
        padding: 70px 0;
    }

    .top-bar {
        display: none;
    }

    .hero-section {
        min-height: auto;
        padding: 80px 0;
    }

    .hero-content h1 {
        font-size: 43px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-features {
        gap: 12px;
        flex-direction: column;
    }

    .tracking-card {
        padding: 25px;
    }

    .trust-section {
        padding: 20px 0;
    }

    .trust-item {
        margin: 10px 0;
        flex-direction: column;
        gap: 4px;
    }

    .trust-item strong {
        font-size: 20px;
    }

    .about-image-wrapper img {
        height: 380px;
    }

    .experience-box {
        bottom: 15px;
        right: 10px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-image img {
        height: 400px;
    }

    .floating-stat {
        left: 10px;
        bottom: 15px;
    }

    .process-card {
        padding-bottom: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

}


@media (max-width: 480px) {

    .navbar-brand {
        font-size: 21px;
    }

    .logo-icon {
        width: 37px;
        height: 37px;
    }

    .hero-content h1 {
        font-size: 37px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary-custom,
    .btn-outline-custom {
        text-align: center;
    }

    .hero-features {
        margin-top: 25px;
    }

    .section-heading h2 {
        font-size: 32px;
    }

    .about-image-wrapper img {
        height: 300px;
    }

    .experience-box strong {
        font-size: 28px;
    }

    .experience-box {
        padding: 15px;
    }

    .cta-section {
        padding: 55px 0;
    }

    .cta-btn {
        width: 100%;
        text-align: center;
    }

    .footer-bottom div {
        flex-direction: column;
        gap: 8px;
    }
}

/* ================= FLOATING BUTTONS ================= */

.floating-buttons {
    position: fixed;
    right: 25px;
    bottom: 25px;

    display: flex;
    flex-direction: column;
    gap: 12px;

    z-index: 999;
}

.floating-buttons a {
    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    font-size: 20px;

    box-shadow: 0 8px 20px rgba(0,0,0,0.2);

    transition: 0.3s;
}

.floating-buttons a:hover {
    transform: translateY(-5px);
}

.call-btn {
    background: #1677ff;
}

.whatsapp-btn {
    background: #25d366;
}

.top-btn {
    background: var(--primary);
}
@media (max-width: 576px) {
       .floating-buttons {
        right: 15px;
        bottom: 15px;
    }

    .floating-buttons a {
        width: 46px;
        height: 46px;
        font-size: 17px;
    }
}


/* =========================================================
   PAGE LOADER
========================================================= */

#pageLoader {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    background: #101820;

    display: flex;
    align-items: center;
    justify-content: center;

    z-index: 99999;

    transition:
        opacity .6s ease,
        visibility .6s ease;
}

#pageLoader.loader-hidden {
    opacity: 0;
    visibility: hidden;
}
.loader-content {
    width: min(420px, 85%);
    text-align: center;
}

.loader-logo {
    margin-bottom: 45px;
}

.loader-logo img {
    width: 170px;
    max-width: 100%;
    height: auto;
}

.truck-loader {
    position: relative;

    width: 100%;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    overflow: hidden;
}

.truck-loader i {
    color: var(--primary);

    font-size: 43px;

    position: absolute;
    left: -60px;

    animation: truckMove 2.5s linear infinite;
}


@keyframes truckMove {

    0% {
        left: -60px;
        transform: scaleX(1);
    }

    45% {
        transform: scaleX(1);
    }

    50% {
        transform: scaleX(-1);
    }

    95% {
        transform: scaleX(-1);
    }

    100% {
        left: 100%;
        transform: scaleX(-1);
    }

}

.loading-track {
    position: relative;

    width: 100%;
    height: 4px;

    background: rgba(255, 255, 255, .15);

    border-radius: 10px;

    overflow: hidden;

    margin-top: 5px;
}

.loading-track span {
    display: block;

    width: 0%;
    height: 100%;

    background: var(--primary);

    border-radius: 10px;

    animation: loadingBar 2.5s ease-in-out forwards;
}


@keyframes loadingBar {

    0% {
        width: 0%;
    }

    50% {
        width: 55%;
    }

    80% {
        width: 82%;
    }

    100% {
        width: 100%;
    }

}

.loading-text {
    color: rgba(255, 255, 255, .7);

    font-size: 13px;

    margin-top: 18px;

    letter-spacing: 1px;
}

.loading-text span {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 480px) {

    .loader-logo img {
        width: 145px;
    }

    .truck-loader i {
        font-size: 35px;
    }

}