*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:var(--dark);

    color:white;

    overflow-x:hidden;

    padding-top:90px;

}

h1,h2,h3,h4,h5{

    font-family:'Poppins',sans-serif;

}

section{

    padding:100px 0;

}

img{

    max-width:100%;

}

/*==========================
NAVBAR
===========================*/

.custom-navbar{

    background:rgba(3,7,18,.92);

    backdrop-filter:blur(15px);

    border-bottom:1px solid rgba(255,255,255,.06);

}

.navbar-brand{

    font-size:32px;

}

.nav-link{

    color:white!important;

    margin-left:20px;

    transition:.3s;

}

.nav-link:hover{

    color:var(--primary)!important;

}

.btn-warning{

    background:var(--primary);

    border:none;

}

.btn-warning:hover{

    background:var(--primary-hover);

}

.btn-outline-warning{

    color:white;

    border-color:var(--primary);

}

.btn-outline-warning:hover{

    background:var(--primary);

}

/*====================================
HERO V2
====================================*/

.hero{

    position:relative;

    overflow:hidden;

    background:
    radial-gradient(circle at top right,#ff7a0018,transparent 35%),
    radial-gradient(circle at bottom left,#2962ff18,transparent 35%),
    #030712;

}

.hero-glow{

    position:absolute;

    width:420px;

    height:420px;

    background:#ff7a00;

    opacity:.12;

    filter:blur(120px);

    border-radius:50%;

    z-index:1;

}

.hero img{

    animation:heroFloat 6s ease-in-out infinite;

}

@keyframes heroFloat{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-12px);

}

}

.hero-image img:hover{

    transform:translateY(-55px) scale(1.02);

}

.hero-badge{

    display:inline-block;

    background:rgba(255,180,0,.12);

    color:#ffb400;

    border:1px solid rgba(255,180,0,.3);

    padding:10px 18px;

    border-radius:50px;

    font-size:15px;

    font-weight:600;

    margin-bottom:28px;

}

.hero h1{

    font-size:68px;

    font-weight:800;

    line-height:1.08;

    max-width:650px;

    color:#fff;

}

.hero h1 span{

    color:#ff7a00;

}

.hero p{

    max-width:610px;

    margin:28px 0;

    color:#b8c0cc;

    line-height:1.9;

    font-size:18px;

}

.hero-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

    margin-top:35px;

}
/*=========================================
HERO STATS
=========================================*/

.hero-stats{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin-top:55px;

    width:100%;

}

.stat-card{

    padding:22px 15px;

    border-radius:18px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    transition:.35s;

    text-align:center;

}

.stat-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.stat-card h3{

    color:#ff7a00;

    font-size:42px;

    font-weight:800;

    line-height:1;

    margin-bottom:10px;

}

.stat-card span{

    display:block;

    color:#cbd5e1;

    font-size:15px;

    line-height:1.5;

}

/*==========================
SECTION TITLE
===========================*/

.section-title{

    text-align:center;

    margin-bottom:70px;

}

.section-title span{

    color:var(--primary);

    text-transform:uppercase;

    letter-spacing:2px;

    font-weight:700;

}

.section-title h2{

    font-size:48px;

    margin-top:15px;

}

.section-title p{

    color:var(--text);

    max-width:700px;

    margin:25px auto;

}

/*==========================
CARDS
===========================*/

.card-dark{

    background:var(--card);

    border:1px solid var(--border);

    border-radius:var(--radius);

    transition:var(--transition);

}

.card-dark:hover{

    transform:translateY(-12px);

    border-color:var(--primary);

    box-shadow:var(--shadow);

}

/*==========================
FOOTER
===========================*/

.footer{

    background:#070b15;

    padding:70px 0;

    border-top:1px solid rgba(255,255,255,.05);

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer li{

    margin-bottom:10px;

}

.footer a{

    color:#ccc;

    text-decoration:none;

}

.footer a:hover{

    color:var(--primary);

}

.footer h3,
.footer h5{

    margin-bottom:20px;

}

.footer p{

    color:#aaa;

}

/*==========================
ANIMATION
===========================*/

@keyframes float{

0%{

transform:translateY(0px);

}

50%{

transform:translateY(-20px);

}

100%{

transform:translateY(0px);

}

}

/*====================================
TRUST SECTION
====================================*/

.trust-section{
    background:#0b1120;
    padding:80px 0;
}

.trust-card{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:35px 20px;
    transition:.35s;
    height:100%;
}

.trust-card:hover{
    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.trust-card i{
    font-size:42px;
    color:#ff7a00;
    margin-bottom:20px;
}

.trust-card h3{
    font-size:34px;
    font-weight:700;
    color:#ffffff;
    margin-bottom:10px;
}

.trust-card p{
    color:#b8c0cc;
    margin:0;
    line-height:1.6;
}

/*=========================================
WHY SECTION V2
=========================================*/

.why-section{

    background:#0b1120;

    padding:110px 0;

}

.why-section .section-heading{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.why-section .section-heading h2{

    font-size:48px;

    font-weight:800;

    margin:18px 0;

    color:#fff;

}

.why-section .section-heading p{

    color:#b8c0cc;

    max-width:700px;

    margin:auto;

    line-height:1.8;

}

.why-section .service-card{

    position:relative;

    overflow:hidden;

}

.why-section .service-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:0;

    height:4px;

    background:#ff7a00;

    transition:.4s;

}

.why-section .service-card:hover::before{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.why-section .service-icon{

    width:78px;

    height:78px;

    font-size:30px;

}


/*=========================================
EQUIPMENT V3
=========================================*/

.equipment-section{

    background:#030712;

    padding:110px 0;

}

/*=========================
Heading
=========================*/

.equipment-section .section-title{

    text-align:center;

    max-width:760px;

    margin:0 auto 70px;

}

.equipment-section .section-title span{

    display:inline-block;

    padding:8px 20px;

    background:rgba(255,122,0,.12);

    color:#ff7a00;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.equipment-section .section-title h2{

    color:#fff;

    font-size:48px;

    font-weight:800;

    margin:22px 0;

}

.equipment-section .section-title p{

    color:#b8c0cc;

    font-size:17px;

    line-height:1.9;

    max-width:700px;

    margin:auto;

}

/*=========================
Card
=========================*/

.equipment-card{

    position:relative;

    height:340px;

    overflow:hidden;

    border-radius:24px;

    border:1px solid rgba(255,255,255,.08);

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

    display:flex;

    align-items:flex-end;

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease,
        background-size .6s ease;

    background-size:100%;

}

/*=========================
Overlay
=========================*/

.overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(

        to top,

        rgba(3,7,18,.96) 10%,

        rgba(3,7,18,.55) 55%,

        rgba(3,7,18,.08) 100%

    );

    transition:.45s ease;

}

/*=========================
Content
=========================*/

.equipment-content{

    position:relative;

    z-index:2;

    width:100%;

    padding:30px;

}

.equipment-content h3{

    color:#fff;

    font-size:30px;

    font-weight:700;

    margin-bottom:12px;

    transition:.35s;

}

.equipment-content h3::after{

    content:"";

    display:block;

    width:55px;

    height:4px;

    background:#ff7a00;

    border-radius:50px;

    margin-top:12px;

    transition:.35s;

}

.equipment-content p{

    color:#e5e7eb;

    line-height:1.75;

    font-size:15px;

    margin:0;

    transition:.35s;

}

/*=========================
Hover
=========================*/

.equipment-card:hover{

    transform:translateY(-10px);

    border-color:#ff7a00;

    box-shadow:0 25px 60px rgba(0,0,0,.40);

    background-size:108%;

}

.equipment-card:hover .overlay{

    background:linear-gradient(

        to top,

        rgba(255,122,0,.45),

        rgba(3,7,18,.50),

        rgba(3,7,18,.12)

    );

}

.equipment-card:hover h3{

    color:#fff;

}

.equipment-card:hover h3::after{

    width:85px;

}

.equipment-card:hover p{

    color:#ffffff;

}

/*=========================
Images
=========================*/

.dryvan{

    background-image:url("../images/equipment/dryvan.jpeg");

}

.reefer{

    background-image:url("../images/equipment/reefer.jpeg");

}

.flatbed{

    background-image:url("../images/equipment/flatbed.jpeg");

}

.stepdeck{

    background-image:url("../images/equipment/stepdeck.jpeg");

}

.hotshot{

    background-image:url("../images/equipment/hotshot.jpeg");

}

.boxtruck{

    background-image:url("../images/equipment/boxtruck.jpeg");

}

/*=========================================
SERVICES
=========================================*/

.services-section{
    background:#0b1120;
    padding:110px 0;
}

/* Heading */

.services-section .section-heading{
    max-width:760px;
    margin:0 auto 75px;
    text-align:center;
}

.services-section .section-badge{
    display:inline-block;
    padding:8px 18px;
    border-radius:30px;
    background:rgba(255,122,0,.12);
    color:#ff7a00;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
    text-transform:uppercase;
    margin-bottom:22px;
}

.services-section .section-heading h2{

    font-size:48px;
    font-weight:800;
    color:#fff;
    line-height:1.2;
    margin-bottom:22px;

}

.services-section .section-heading p{

    max-width:700px;
    margin:auto;
    color:#b8c0cc;
    font-size:17px;
    line-height:1.9;

}

/* Grid */

.services-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:28px;

}

/* Card */

.service-card{

    position:relative;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:38px 28px;

    overflow:hidden;

    transition:.35s;

    text-align:center;

    height:100%;

}

/* Orange Glow */

.service-card::before{

    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#ff7a00;

    transform:scaleX(0);

    transform-origin:left;

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.service-card:hover::before{

    transform:scale(1.15) rotate(6deg);

}

/* Icon */

.service-icon{

    width:82px;

    height:82px;

    margin:0 auto 28px;

    border-radius:22px;

    background:#ff7a00;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#fff;

    font-size:30px;

    transition:.35s;

}

.service-card:hover .service-icon{

    transform:scale(1.15) rotate(6deg);

}

/* Title */

.service-card h3{

    color:#fff;

    font-size:22px;

    font-weight:700;

    line-height:1.35;

    margin-bottom:18px;

}

/* Description */

.service-card p{

    color:#b8c0cc;

    font-size:15px;

    line-height:1.8;

    margin:0 auto;

    max-width:250px;

}

/*=========================================
HOW IT WORKS V2
=========================================*/

.how-section{

    background:#030712;

    padding:110px 0;

}

.how-section .section-title{

    max-width:760px;

    margin:0 auto 70px;

    text-align:center;

}

.step-card{

    position:relative;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:22px;

    padding:45px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

    overflow:hidden;

}

.step-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.step-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:#ff7a00;

    transform:scaleX(0);

    transition:.4s;

}

.step-card:hover::before{

    transform:scale(1.15) rotate(6deg);

}

.step-number{

    position:absolute;

    top:18px;

    right:20px;

    font-size:48px;

    font-weight:800;

    color:rgba(255,255,255,.06);

}

.step-icon{

    width:85px;

    height:85px;

    margin:0 auto 28px;

    border-radius:22px;

    background:#ff7a00;

    display:flex;

    align-items:center;

    justify-content:center;

    color:#fff;

    font-size:32px;

    box-shadow:0 10px 30px rgba(255,122,0,.25);

}

.step-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:18px;

}

.step-card p{

    color:#b8c0cc;

    line-height:1.8;

    margin:0;

}


/*=========================================
COMPARISON SECTION
=========================================*/

.comparison-section{
    background:#030712;
}

.comparison-card{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:20px;
    padding:40px;
    height:100%;
}

.comparison-card ul{
    list-style:none;
    padding:0;
    margin:0;
}

.comparison-card li{
    margin-bottom:18px;
    font-size:17px;
    color:#d1d5db;
    display:flex;
    align-items:flex-start;
    gap:12px;
}

.comparison-card i{
    margin-top:3px;
}

.cta-strip{
    background:linear-gradient(135deg,#ff7a00,#ff9800);
    border-radius:24px;
    padding:50px;
    text-align:center;
    color:#fff;
}

.cta-strip h3{
    font-weight:700;
    margin-bottom:20px;
}

.cta-strip p{
    max-width:800px;
    margin:0 auto;
    opacity:.95;
}

.cta-strip .btn{
    background:#fff;
    color:#111827;
    font-weight:700;
    border:none;
}

.cta-strip .btn:hover{
    background:#f3f4f6;
}

/*=========================================
FREE OFFER V2
=========================================*/

.free-offer-section{

    background:#030712;

    padding:110px 0;

}

.offer-box{

    position:relative;

    overflow:hidden;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:70px 60px;

    text-align:center;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.offer-box::before{

    content:"";

    position:absolute;

    width:320px;

    height:320px;

    background:#ff7a00;

    filter:blur(150px);

    opacity:.12;

    top:-120px;

    right:-120px;

}

.offer-box::after{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    background:#2962ff;

    filter:blur(120px);

    opacity:.08;

    bottom:-100px;

    left:-100px;

}

.offer-box>*{

    position:relative;

    z-index:2;

}

.offer-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:rgba(255,180,0,.12);

    border:1px solid rgba(255,180,0,.25);

    color:#ffb400;

    font-weight:700;

    letter-spacing:.5px;

    margin-bottom:25px;

}

.offer-box h2{

    color:#fff;

    font-size:50px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:25px;

}

.offer-box h2 span{

    color:#ffb400;

}

.offer-box p{

    color:#cbd5e1;

    font-size:18px;

    line-height:1.9;

    max-width:850px;

    margin:0 auto;

}

.offer-features{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:18px;

    margin:50px 0;

}

.offer-feature{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px 18px;

    transition:.35s;

}

.offer-feature:hover{

    transform:translateY(-6px);

    border-color:#ff7a00;

}

.offer-feature i{

    display:block;

    font-size:28px;

    color:#ffb400;

    margin-bottom:14px;

}

.offer-feature span{

    color:#fff;

    font-weight:600;

    line-height:1.6;

}

.offer-footer{

    margin-bottom:45px;

}

.offer-footer strong{

    color:#ffb400;

}

.offer-box .btn{

    border-radius:50px;

    padding:16px 42px;

    font-size:18px;

    font-weight:700;

    transition:.3s;

}

.offer-box .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

/*====================================
ROLE SELECTION V2
====================================*/

.role-selection-section{

    background:#030712;

    padding:100px 0;

}

.role-box{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:25px;

    padding:45px;

    transition:.35s;

    height:100%;

}

.role-box:hover{

    transform:translateY(-10px);

    border-color:#ff7a00;

    box-shadow:0 25px 45px rgba(0,0,0,.35);

}

.role-icon{

    width:90px;

    height:90px;

    background:#ff7a00;

    color:white;

    border-radius:22px;

    display:flex;

    justify-content:center;

    align-items:center;

    font-size:35px;

    margin-bottom:30px;

}

.role-box h3{

    font-size:32px;

    margin-bottom:20px;

}

.role-box p{

    color:#c7c7c7;

    line-height:1.8;

    margin-bottom:25px;

}

.role-box ul{

    list-style:none;

    padding:0;

    margin-bottom:35px;

}

.role-box li{

    margin-bottom:14px;

    color:#ddd;

}

.role-box li i{

    color:#ff7a00;

    margin-right:10px;

}

/*=========================================
CARRIER FORM V2
=========================================*/

.carrier-form-section{

    background:#030712;

    padding:110px 0;

}

.carrier-form-wrapper{

    max-width:1100px;

    margin:0 auto;

    padding:50px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    box-shadow:0 30px 60px rgba(0,0,0,.30);

}

.carrier-form label{

    color:#fff;

    font-weight:600;

    margin-bottom:10px;

}

.carrier-form .form-control,
.carrier-form .form-select{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:14px;

    height:58px;

    padding:0 18px;

    transition:.3s;

}

.carrier-form textarea.form-control{

    height:auto;

    padding:16px 18px;

}

.carrier-form .form-control:focus,
.carrier-form .form-select:focus{

    background:#0f172a;

    border-color:#ff7a00;

    color:#fff;

    box-shadow:0 0 0 .2rem rgba(255,122,0,.15);

}

.carrier-form .form-control::placeholder{

    color:#94a3b8;

}

.carrier-form button{

    margin-top:35px;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    font-size:18px;

}

.carrier-form .btn i{

    font-size:16px;

    vertical-align:middle;

}

.expect-box{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    border-left:5px solid #ff7a00;

    border-radius:18px;

    padding:30px;

    text-align:left;

    margin-bottom:35px;

}

.expect-box h4{

    color:#fff;

    margin-bottom:20px;

}

.expect-box ul{

    list-style:none;

    padding:0;

    margin:0 0 20px;

}

.expect-box li{

    color:#cbd5e1;

    margin-bottom:12px;

    line-height:1.7;

}

.expect-box small{

    color:#94a3b8;

}

.form-section-title{

    color:#ff7a00;

    font-size:20px;

    font-weight:700;

    margin-bottom:5px;

    padding-bottom:10px;

    border-bottom:1px solid rgba(255,255,255,.08);

}

/*==================================
BROKER FORM
==================================*/

.broker-form-section{

    background:#030712;

    padding:110px 0;

}

.broker-form-section .carrier-form-wrapper{

    max-width:1100px;

    margin:0 auto;

    padding:50px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:28px;

    box-shadow:0 30px 60px rgba(0,0,0,.30);

}

.broker-form label{

    color:#fff;

    font-weight:600;

    margin-bottom:10px;

}

.broker-form .form-control,
.broker-form .form-select{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:14px;

    height:58px;

    padding:0 18px;

    transition:.3s;

}

.broker-form textarea.form-control{

    height:auto;

    padding:16px 18px;

}

.broker-form .form-control:focus,
.broker-form .form-select:focus{

    background:#0f172a;

    border-color:#ff7a00;

    color:#fff;

    box-shadow:0 0 0 .2rem rgba(255,122,0,.15);

}

.broker-form .form-control::placeholder{

    color:#94a3b8;

}

.broker-form button{

    margin-top:35px;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    font-size:18px;

}

.broker-form .btn i{

    font-size:16px;

    vertical-align:middle;

}

/*=========================================
CONTACT FORM V2
=========================================*/

.contact-section{

    background:#030712;

    padding:110px 0;

}

.contact-form label{

    color:#fff;

    font-weight:600;

    margin-bottom:10px;

}

.contact-form .form-control{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    border-radius:14px;

    height:58px;

    padding:0 18px;

    transition:.3s;

}

.contact-form textarea.form-control{

    height:auto;

    padding:16px 18px;

}

.contact-form .form-control:focus{

    background:#0f172a;

    color:#fff;

    border-color:#ff7a00;

    box-shadow:0 0 0 .2rem rgba(255,122,0,.15);

}

.contact-form .form-control::placeholder{

    color:#94a3b8;

}

.contact-form button{

    margin-top:15px;

    padding:16px 40px;

    border-radius:50px;

    font-weight:700;

    font-size:18px;

}

.contact-form .btn i{

    font-size:16px;

    vertical-align:middle;

}

/*==================================
TESTIMONIALS
==================================*/

.testimonials-section{

background:#0b1120;

padding:100px 0;

}

.testimonial-card{

background:#111827;

padding:40px;

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

height:100%;

transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.stars{

font-size:22px;

color:#ffb400;

margin-bottom:20px;

}

.testimonial-card p{

line-height:1.9;

color:#d1d5db;

margin-bottom:30px;

font-style:italic;

}

.client{

display:flex;

align-items:center;

gap:15px;

}

.avatar{

width:60px;

height:60px;

border-radius:50%;

background:#ff7a00;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

}

.client h5{

margin:0;

}

.client span{

color:#9ca3af;

font-size:14px;

}

/*==================================
FAQ
==================================*/

.faq-section{

    background:#030712;

    padding:100px 0;

}

.accordion-item{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    margin-bottom:15px;

    border-radius:15px !important;

    overflow:hidden;

}

.accordion-button{

    background:#111827;

    color:#fff;

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:#ff7a00;

    color:white;

    box-shadow:none;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    background:#111827;

    color:#d1d5db;

    line-height:1.8;

}

/*=========================
WHAT NEXT
=========================*/

.what-next-section{

background:#0b1120;

padding:90px 0;

}

.step-box{

background:#111827;

padding:35px;

border-radius:20px;

text-align:center;

height:100%;

border:1px solid rgba(255,255,255,.08);

transition:.3s;

}

.step-box:hover{

transform:translateY(-8px);

border-color:#ff7a00;

}

.step-box h1{

font-size:60px;

color:#ff7a00;

margin-bottom:15px;

}

.step-box p{

color:#bdbdbd;

}

/*=========================================
FINAL CTA V2
=========================================*/

.cta-section{

    padding:120px 0;

    background:#030712;

}

.cta-box{

    max-width:1100px;

    margin:auto;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:32px;

    padding:70px 60px;

    text-align:center;

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 60px rgba(0,0,0,.35);

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:#ff7a00;

    filter:blur(140px);

    opacity:.12;

    top:-120px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:280px;

    height:280px;

    background:#2962ff;

    filter:blur(120px);

    opacity:.10;

    bottom:-100px;

    left:-100px;

}

.cta-box>*{

    position:relative;

    z-index:2;

}

.cta-box h2{

    color:#fff;

    font-size:54px;

    font-weight:800;

    line-height:1.2;

    margin:20px 0;

}

.cta-box h2 span{

    color:#ffb400;

}

.cta-box p{

    color:#cbd5e1;

    font-size:18px;

    line-height:1.9;

    max-width:760px;

    margin:0 auto 45px;

}

.cta-features{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:18px;

    margin-bottom:50px;

}

.cta-feature{

    background:#0f172a;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:22px 18px;

    transition:.35s;

}

.cta-feature:hover{

    transform:translateY(-6px);

    border-color:#ff7a00;

}

.cta-feature i{

    color:#ffb400;

    font-size:28px;

    margin-bottom:12px;

    display:block;

}

.cta-feature span{

    color:#fff;

    font-weight:600;

    font-size:15px;

    line-height:1.5;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.cta-buttons .btn{

    min-width:280px;

    border-radius:50px;

    padding:16px 34px;

    font-weight:700;

    transition:.3s;

}

.cta-buttons .btn:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(0,0,0,.25);

}

/*==================================
FOOTER
==================================*/

.footer{

background:#030712;

padding:80px 0 30px;

border-top:1px solid rgba(255,255,255,.08);

}

.footer-logo{

font-size:32px;

font-weight:700;

margin-bottom:20px;

}

.footer-logo span{

color:#ff7a00;

}

.footer p{

color:#cbd5e1;

line-height:1.8;

}

.footer h5{

margin-bottom:25px;

font-weight:700;

}

.footer-links{

list-style:none;

padding:0;

}

.footer-links li{

margin-bottom:12px;

color:#cbd5e1;

}

.footer-links a{

color:#cbd5e1;

text-decoration:none;

transition:.3s;

}

.footer-links a:hover{

color:#ff7a00;

padding-left:5px;

}

.footer-divider{

margin:50px 0 30px;

border-color:rgba(255,255,255,.08);

}

.footer-bottom{

display:flex;

justify-content:space-between;

align-items:center;

flex-wrap:wrap;

gap:15px;

}

.footer-contact p{

margin-bottom:12px;

}

/* ================= FOOTER ================= */

.footer{

    background:#111;

    color:#ccc;

    padding:70px 0 25px;

}

.footer-logo{

    color:white;

    margin-bottom:20px;

}

.footer h5{

    color:white;

    margin-bottom:20px;

}

.footer-links{

    list-style:none;

    padding:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#ccc;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffc107;

}

.footer p{

    margin-bottom:15px;

}

.social-icons a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:42px;

    height:42px;

    background:#222;

    color:white;

    border-radius:50%;

    margin-right:10px;

    transition:.3s;

}

.social-icons a:hover{

    background:#ffc107;

    color:#111;

}

.footer hr{

    border-color:#333;

}

.footer a{

    color:#ccc;

}

.footer a:hover{

    color:#ffc107;

}

/* ===========================
   LOGO
=========================== */

.logo-img {
    height: 75px; /* Increased from 48px */
    width: auto;  /* Keeps the aspect ratio correct */
    display: block;
    transition: transform 0.3s ease; /* Makes the hover effect smooth */
}

.custom-navbar{
    padding:8px 0;
}

.logo-img:hover{

    transform:scale(1.05);

}

.navbar-brand{

    padding:0;

}

/* Better Navbar */

.custom-navbar{

    padding:12px 0;

}

/* ==========================
   Dark Section
========================== */

.dark-section{

    background:#070b17;

}

/* ===========================
   What Happens Next
=========================== */

.expect-box{

    background:#101827;

    border:1px solid rgba(255,193,7,.25);

    border-radius:12px;

    padding:25px;

    margin-top:30px;

    color:#fff;

}

.expect-box h4{

    color:#FFC107;

    margin-bottom:18px;

}

.expect-box ul{

    padding-left:18px;

    margin-bottom:15px;

}

.expect-box li{

    margin-bottom:10px;

    line-height:1.6;

}

.expect-box small{

    display:block;

    color:#bbb;

}

/* =========================
   ABOUT PAGE DARK THEME
=========================*/

.dark-section{
    background:#070b17;
}

.page-hero{
    background:#070b17;
    color:#fff;
}

.page-hero h1{
    color:#fff;
    font-weight:700;
}

.page-hero p{
    color:#c7d2e0;
}

.section-heading{
    color:#fff;
}

.section-text{
    color:#c7d2e0;
}

.section-badge{
    color:#f5b301;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.about-stat{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.about-stat:hover{
    transform:translateY(-5px);
    border-color:#f5b301;
}

.about-stat h3{
    color:#f5b301;
    font-weight:700;
}

.about-stat p{
    color:#d1d5db;
    margin:0;
}

.feature-card{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:35px;
    transition:.3s;
}

.feature-card:hover{
    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.feature-card h4{
    color:#fff;
    margin-top:15px;
}

.feature-card p{
    color:#c7d2e0;
}

.feature-icon{
    font-size:40px;
}

.process-box{
    background:#111827;
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:30px;
    height:100%;
    transition:.3s;
}

.process-box:hover{
    transform:translateY(-5px);
    border-color:#f5b301;
}

.process-number{
    width:55px;
    height:55px;
    background:#f5b301;
    color:#111;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:auto auto 20px;
    font-size:22px;
    font-weight:700;
}

.process-box h5{
    color:#fff;
}

.process-box p{
    color:#c7d2e0;
}

/*=====================================
        ABOUT HERO
======================================*/

.page-hero{

    padding:170px 0 120px;

    background:linear-gradient(135deg,#08111f,#0d1b2d);

}

.page-hero h1{

    color:#fff;

    font-size:54px;

    font-weight:800;

    line-height:1.2;

    margin:20px 0;

}

.page-hero p{

    color:#c8d3df;

    font-size:18px;

    line-height:1.8;

    max-width:620px;

}

.hero-badge{

    display:inline-block;

    background:rgba(255,193,7,.12);

    color:#ffc107;

    border:1px solid rgba(255,193,7,.35);

    padding:10px 22px;

    border-radius:50px;

    font-weight:700;

    letter-spacing:1px;

}

.hero-buttons .btn{

    padding:14px 30px;

    border-radius:12px;

    font-weight:600;

}


/*=====================================
        ABOUT COMPANY
======================================*/

.about-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:35px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.about-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);

}

.about-card h2{

    color:#ffc107;

    font-size:42px;

    font-weight:800;

    margin-bottom:10px;

}

.about-card p{

    color:#d0d7de;

    margin:0;

    font-size:17px;

}

/*=====================================
        ABOUT MISSION
======================================*/

.mission-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.mission-icon{

    width:80px;

    height:80px;

    background:#ffc107;

    color:#111;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin:0 auto 25px;

}

.mission-card h4{

    color:#fff;

    font-weight:700;

    margin-bottom:18px;

}

.mission-card p{

    color:#d0d7de;

    line-height:1.8;

    margin-bottom:0;

}

/*=====================================
        ABOUT PROCESS
======================================*/

.process-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:40px 25px;

    text-align:center;

    height:100%;

    transition:.35s;

}

.process-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.process-circle{

    width:70px;

    height:70px;

    background:#ffc107;

    color:#111;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    margin:0 auto 25px;

    font-size:28px;

    font-weight:700;

}

.process-card h4{

    color:#fff;

    margin-bottom:15px;

    font-weight:700;

}

.process-card p{

    color:#d0d7de;

    line-height:1.8;

    margin:0;

}

/*=====================================
        ABOUT PROMISE
======================================*/

.promise-card{

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

    border-radius:18px;

    padding:35px 30px;

    text-align:center;

    transition:.35s;

    height:100%;

}

.promise-card:hover{

    transform:translateY(-8px);

    border-color:#ff7a00;

    box-shadow:0 20px 45px rgba(0,0,0,.35);


}

.promise-card i{

    font-size:42px;

    color:#ffc107;

    margin-bottom:20px;

}

.promise-card h5{

    color:#fff;

    font-weight:700;

    margin-bottom:15px;

}

.promise-card p{

    color:#d0d7de;

    margin:0;

    line-height:1.8;

}

/*======================================
            FOOTER
======================================*/

.footer{

    background:#050914;

    color:#c9d1d9;

    padding:80px 0 30px;

    border-top:1px solid rgba(255,193,7,.12);

}

.footer-logo-img{

    width:240px;

    max-width:100%;

}

.footer h5{

    color:#fff;

    font-weight:700;

    margin-bottom:22px;

}

.footer p{

    color:#bfc8d4;

    line-height:1.9;

}

.footer-links{

    list-style:none;

    padding:0;

    margin:0;

}

.footer-links li{

    margin-bottom:12px;

}

.footer-links a{

    color:#c9d1d9;

    text-decoration:none;

    transition:.3s;

}

.footer-links a:hover{

    color:#ffc107;

    padding-left:6px;

}

.social-icons{

    display:flex;

    gap:14px;

}

.social-icons a{

    width:46px;

    height:46px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    background:#111827;

    color:#ffc107;

    transition:.35s;

    text-decoration:none;

}

.social-icons a:hover{

    background:#ffc107;

    color:#111827;

    transform:translateY(-5px);

}

.footer-divider{

    border-color:rgba(255,255,255,.08);

    margin:45px 0 30px;

}

.footer .fa-phone,
.footer .fa-envelope,
.footer .fa-map-marker-alt,
.footer .fa-clock{

    width:20px;

}

.footer a{

    color:#d7dee7;

    text-decoration:none;

}

.footer a:hover{

    color:#ffc107;

}

/*=========================================
        FLOATING BUTTONS
==========================================*/

.floating-call,
.floating-whatsapp,
.floating-top{

    position:fixed;

    width:60px;

    height:60px;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    right:25px;

    z-index:9999;

    color:#fff;

    font-size:24px;

    text-decoration:none;

    transition:.3s;

    box-shadow:0 10px 30px rgba(0,0,0,.3);

}

.floating-call{

    bottom:170px;

    background:#ffc107;

    color:#111;

}

.floating-whatsapp{

    bottom:95px;

    background:#25D366;

}

.floating-top{

    bottom:20px;

    background:#111827;

    border:none;

    display:none;

}

.floating-call:hover,
.floating-whatsapp:hover,
.floating-top:hover{

    transform:translateY(-6px) scale(1.08);

}

/* Tablet adjustment for Free Offer heading */
@media (max-width:992px){

    .offer-box h2{

        font-size:42px;

    }

}

/*=========================================
GLOBAL ANIMATIONS
=========================================*/

*{

    transition:
        background-color .3s ease,
        color .3s ease,
        border-color .3s ease,
        box-shadow .3s ease,
        transform .3s ease;

}

html{

    scroll-behavior:smooth;

}

/* Button Hover */

.btn{

    transition:.3s ease;

}

.btn:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(0,0,0,.25);

}

/* Images */

img{

    transition:.45s ease;

}

/* Icons */

.service-icon,
.offer-feature i,
.cta-feature i,
.contact-card i,
.equipment-overlay i{

    transition:.35s ease;

}

/*=========================================
GLOBAL PREMIUM CARD ANIMATIONS
=========================================*/

/* Cards */

.service-card,
.equipment-card,
.step-card,
.contact-card,
.stat-card,
.offer-feature,
.cta-feature{

    transition:
        transform .45s ease,
        box-shadow .45s ease,
        border-color .45s ease,
        background-color .45s ease;

    will-change:transform;

}

/* Hover */

.service-card:hover,
.equipment-card:hover,
.step-card:hover,
.contact-card:hover,
.stat-card:hover,
.offer-feature:hover,
.cta-feature:hover{

    transform:translateY(-10px);

    border-color:#ff7a00;

    box-shadow:0 25px 60px rgba(0,0,0,.35);

}

/*=========================
Icons
=========================*/

.service-icon,
.step-card i,
.contact-card i,
.offer-feature i,
.cta-feature i{

    transition:
        transform .35s ease,
        color .35s ease;

}

.service-card:hover .service-icon,
.step-card:hover i,
.contact-card:hover i,
.offer-feature:hover i,
.cta-feature:hover i{

    transform:scale(1.15) rotate(8deg);

    color:#ffb400;

}

/*=========================================
SCROLL REVEAL
=========================================*/

.reveal{

    opacity:0;

    transform:translateY(60px);

    transition:all .9s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*=========================================
PAGE HERO
=========================================*/

.page-hero{

    padding:140px 0 80px;

    background:#030712;

    position:relative;

    overflow:hidden;

}

.page-hero::before{

    content:"";

    position:absolute;

    width:520px;

    height:520px;

    background:#ff7a00;

    opacity:.08;

    filter:blur(180px);

    top:-220px;

    right:-120px;

}

.page-hero::after{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    background:#2962ff;

    opacity:.06;

    filter:blur(180px);

    bottom:-220px;

    left:-120px;

}

.page-hero .container{

    position:relative;

    z-index:2;

}

.page-hero-content{

    max-width:760px;

    margin:auto;

    text-align:center;

}

.page-hero .section-tag{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:9px 24px;

    border-radius:999px;

    background:rgba(255,122,0,.12);

    color:#ff7a00;

    font-size:13px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:28px;

}

.page-hero h1{

    font-size:56px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:24px;

    color:#ffffff;

}

.page-hero h1 span{

    display:inline-block;

    color:#ff7a00 !important;

    font-weight:800;

}
.page-hero p{

    max-width:700px;

    margin:auto;

    color:#b8c0cc;

    font-size:18px;

    line-height:1.9;

}

.service-map h2{

    font-size:52px;

    font-weight:800;

    line-height:1.15;

    margin-bottom:24px;

    color:#ffffff;

    text-align:center;

}

.service-map h2 span{

    display:inline-block;

    color:#ff7a00 !important;

    font-weight:800;

}

.service-map p{

    max-width:760px;

    margin:0 auto 50px;

    text-align:center;

    color:#b8c0cc;

    font-size:18px;

    line-height:1.9;

}