/* ===========================
   MOBILE NAVBAR
===========================*/

.menu-toggle{
    display:none;
    width:34px;
    cursor:pointer;
    z-index:2000;
}

.menu-toggle span{
    display:block;
    width:100%;
    height:3px;
    margin:7px 0;
    background:#fff;
    border-radius:50px;
    transition:.35s;
}

@media(max-width:768px){


/* ===== Smaller Mobile Navbar ===== */


.navbar{
    padding:12px 0 !important;
}

.navbar.scrolled{
    padding:8px 0 !important;
}








.menu-toggle{
    width:28px;
}

.menu-toggle span{
    height:2.5px;
    margin:5px 0;
}
.menu-toggle{
    display:block;
}

.nav-links{

    position:fixed;

    top:0;
    right:-100%;

    width:300px;
    height:100vh;

    background:rgba(8,17,31,.98);
-webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
    backdrop-filter:blur(20px);

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:30px;

    transition:.45s;

    z-index:1500;
}

.nav-links.active{
    right:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    font-size:20px;
}

.btn-primary-custom{
    display:none;
}

.logo img{
    width:55px;
    height:55px;
}

.logo-text h2{
    font-size:28px;
}

.logo-text p{
    font-size:11px;
    letter-spacing:2px;
}
  

    /* ==========================
   HERO SECTION - MOBILE
========================== */

#hero{
    min-height:100vh;
    overflow:hidden;
}

.hero-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:right center;
    transform:scale(1.12);
    animation:heroPan 18s ease-in-out infinite alternate;
}

@keyframes heroPan{
    0%{
        object-position:right center;
        transform:scale(1.12);
    }
    50%{
        object-position:center center;
        transform:scale(1.10);
    }
    100%{
        object-position:left center;
        transform:scale(1.12);
    }
}

/* Hero Content */

.hero-content{
    text-align:center;
     padding-top: 130px;
}

.hero-tag{
    font-size:12px;
    padding:8px 18px;
    margin-bottom:16px;
}

.hero-content h1{
    font-size:38px;
    line-height:1.1;
    margin-bottom:18px;
}

.hero-content p{
    font-size:15px;
    line-height:1.7;
     max-width:330px;
    margin:0 auto 25px;
}

/* Hero Buttons */

.hero-buttons{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:12px;
    margin-top:15px;
}

.hero-buttons .btn-primary-custom,
.hero-buttons .btn-outline-custom{
 width:min(230px,90%);
    height:50px;
    justify-content:center;
    padding:13px 0;
}

/* Hero Stats */


.hero-stats{
    width:min(95%,420px);
    padding:18px 15px;
    margin:0 auto;
}

.stat h3{
    font-size:28px;
}

.stat span{
    font-size:11px;
}


.stat{
    flex:1;
    text-align:center;
}

.divider{
    height:38px;
}


/* Mobile Navbar Get a Quote */
.navbar .btn-primary-custom{
    display:flex !important;
    background:transparent;
    color:#D4AF37;
    border:2px solid #D4AF37;
    box-shadow:none;
}

.navbar .btn-primary-custom:hover{
    background:#D4AF37;
    color:#08111F;
}
/* ===========================
   ABOUT SECTION - MOBILE
=========================== */

.about-right{
    display:flex;
    flex-direction:column;
}

.about-right img{
    width:100%;
    border-radius:20px;
    margin-bottom:25px;
}

/* Statistics Grid */
.services-grid{
    display:flex;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    gap:0;
    padding:0 15px;
}

.services-grid::-webkit-scrollbar{
    display:none;
}

.service-card{
    flex:0 0 100%;
    max-width:100%;
    scroll-snap-align:center;
    box-sizing:border-box;
    padding:20px;
}
    /* ===========================
   EQUIPMENT HERO - MOBILE*/


    .equipment-hero-section{
        min-height: 85vh;
    }

    .equipment-hero-container{
        padding: 120px 20px 40px; /* Push content below the navbar */
    }

    .equipment-title{
        font-size: 34px;
        line-height: 1.15;
        margin-bottom: 15px;
    }

    .equipment-description{
        font-size: 15px;
        line-height: 1.6;
        max-width: 100%;
        margin-bottom: 25px;
    }
.equipment-hero-image{
    object-fit:contain;
    object-position:center;
}


/* ===========================
   EQUIPMENT HERO BUTTONS - MOBILE
=========================== */
/* ===========================
   EQUIPMENT HERO - MOBILE BUTTONS
=========================== */

.equipment-buttons{
    gap:10px;
    flex-wrap:wrap;
}

.equipment-btn-primary,
.equipment-btn-secondary{
    font-size:12px;
    font-weight:600;
    padding:10px 18px;
    background:#D4A62A;
}
.equipment-tag{
    opacity:0.80;
}

.equipment-title{
    opacity:0.88;
}

.equipment-description{
    opacity:0.70;
}
    /* ==========================
   FLEET - MOBILE
========================== */

.fleet-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:12px;
}

.fleet-card{
    width:100%;
    min-height:280px;
}

.fleet-image{
    height:120px;
}

.fleet-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.fleet-content{
    padding:14px;
}

.fleet-category{
    font-size:11px;
}

.fleet-title{
    font-size:16px;
    margin:8px 0;
}

.fleet-description{
    font-size:12px;
    line-height:1.4;

    display:-webkit-box;
    line-clamp: 3;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.fleet-link{
    font-size:13px;
    margin-top:10px;
}
/* ==========================
   CLIENT LOGOS - MOBILE
========================== */



.clients-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(90px,1fr));
    gap:12px;
}

.client-card{
    padding:10px;
}

.client-card img{
    width:100%;
    max-width:75px;
    height:auto;
    margin:auto;
    display:block;
    object-fit:contain;
}

.footer-about .footer-logo{
    width:180px !important;
    max-width:none !important;
    height:auto !important;
}


.swipe-hint{
    display:none;
}



.swipe-hint{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:10px;
    margin-top:15px;
    color:#D4AF37;
    font-size:13px;
    font-weight:600;
    opacity:.85;
    animation:swipeHint 1.8s ease-in-out infinite;
}

@keyframes swipeHint{
    0%,100%{
        transform:translateX(0);
    }
    50%{
        transform:translateX(8px);
    }
}


/* ==========================
   TRANSPORTATION - MOBILE
========================== */

.tp-section{
    padding:50px 0;
}

.tp-wrapper{
    display:flex;
    flex-direction:column;
    gap:15px;
}

.tp-left,
.tp-right{
    width:100%;
}

.tp-image-box{
    height:260px;
    border-radius:18px;
    overflow:hidden;
}

.tp-image-box img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.tp-right{
    text-align:center;
}

.tp-right span{
    font-size:13px;
}

.tp-right h2{

    font-size:22px;
    margin:8px 0;

    line-height:1.2;
}

.tp-right p{
    display:none;
}.tp-specs{
    gap:10px;
    margin:12px 0;
}

.tp-spec{
    padding:10px 12px;
}

.tp-spec h3{
    font-size:18px;
    margin-bottom:2px;
}

.tp-spec span{
    font-size:10px;
    line-height:1.2;
}

/* Vehicle Selector */
/* ==========================
   TRANSPORT VEHICLE SWIPER
========================== */
.tp-vehicles{
    display:flex;
    overflow-x:auto;
    gap:15px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-bottom:10px;
}

.tp-vehicles::-webkit-scrollbar{
    display:none;
}

.tp-item{
    flex: 0 0 100%;
    max-width: 100%;

    height:115px;

    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;

    scroll-snap-align:center;
    border-radius:16px;
    padding:15px;
}

.tp-item i{
    font-size:24px;
    margin-bottom:8px;
}

.tp-item span{
    font-size:15px;
    font-weight:600;
}

/* ==========================
   FLEET SHOWCASE - MOBILE
========================== */

.showcase-section{
    padding:35px 0;
}

.showcase-container{
    gap:12px;
}

.showcase-image{
    height:130px;
    border-radius:14px;
}

.showcase-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.showcase-content h2{
    font-size:20px;
    margin:6px 0;
}

.showcase-content p{
    display:none;
}

.showcase-features{
    margin:10px 0;
    gap:6px;
}

.showcase-features li{
    font-size:12px;
    margin-bottom:4px;
}

.showcase-features i{
    font-size:12px;
    margin-right:6px;
}

.showcase-buttons{
    display:flex;
    gap:8px;
    justify-content:center;
    margin-top:12px;
}

.showcase-buttons .btn-primary-custom,
.showcase-buttons .btn-outline-custom{
    width:130px;
    height:36px;
    font-size:12px;
    border-radius:20px;
    padding:0 10px;
}


/* ==========================
   BUSINESS SECTION - MOBILE
========================== */

.business-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:18px;
    margin-top:40px;
}

.business-card,
.transport-card{
    width:100% !important;
    max-width:100%;
    height:320px;
}

.card-content{
    left:20px;
    right:20px;
    bottom:20px;
}

.card-content .icon{
    width:55px;
    height:55px;
    margin-bottom:12px;
}

.card-content .icon i{
    font-size:22px;
}

.card-content h3{
    font-size:26px;
    margin-bottom:10px;
}

.card-content p{
    width:100%;
    max-width:100%;
    font-size:14px;
    line-height:1.5;
    margin-bottom:12px;
}

.card-content a{
    font-size:14px;
}



html{
    scroll-behavior:smooth;
}

body{
    overflow-x:hidden;
}

img,
video{
    max-width:100%;
    height:auto;
}

}

/* ==========================
   TRADING / MATERIALS - MOBILE
========================== */

@media (max-width:768px){

.trading-grid{
    display:grid;
    grid-template-columns:1fr;
    gap:20px;
    width:100%;
}

.trading-card{
    width:100%;
    max-width:100%;
    overflow:hidden;
    box-sizing:border-box;
}

.trading-image{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:18px;
}

.trading-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.trading-list{
    width:100%;
}

.trading-link{
    width:100%;
    box-sizing:border-box;
}

}






   
