/*==========================================
    VANGUARD LOGISTICS LLC
    Premium Website Styles
==========================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root{

    --primary:#0B0F19;
    --secondary:#111827;
    --accent:#1E88FF;
    --accent2:#48A8FF;

    --white:#ffffff;
    --gray:#c7c7c7;
    --light:#f5f5f5;

    --shadow:0 10px 35px rgba(0,0,0,.25);

    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Poppins',sans-serif;

    background:var(--primary);

    color:white;

    overflow-x:hidden;

}

a{

    text-decoration:none;

}

ul{

    list-style:none;

}

img{

    max-width:100%;

    display:block;

}

.container{

    width:90%;

    max-width:1300px;

    margin:auto;

}

/*================ HEADER ================*/

header{

    position:fixed;

    width:100%;

    top:0;

    left:0;

    z-index:999;

    background:rgba(8,8,15,.75);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

}

header .container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    height:90px;

}

.logo img{

    height:60px;

}

nav ul{

    display:flex;

    gap:35px;
    
}

nav a{

    color:white;

    font-weight:500;

    transition:.3s;

}

nav a:hover,

nav a.active{

    color:var(--accent2);

}

.btn-primary{

    background:linear-gradient(135deg,#1E88FF,#43B0FF);

    color:white;

    padding:15px 35px;

    border-radius:50px;

    font-weight:600;

    transition:.4s;

    box-shadow:0 10px 25px rgba(30,136,255,.35);

}

.btn-primary:hover{

    transform:translateY(-4px);

    box-shadow:0 15px 35px rgba(30,136,255,.55);

}

/*================ HERO ================*/

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    position:relative;

    background:
        linear-gradient(rgba(5,10,20,.45), rgba(5,10,20,.65)),
        url("Hero.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:

    radial-gradient(circle at top right,

    rgba(30,136,255,.25),

    transparent 40%);

}

.hero-content{

    position:relative;

    max-width:700px;

}

.hero-tag{

    display:inline-block;

    background:rgba(30,136,255,.12);

    border:1px solid rgba(30,136,255,.45);

    color:#8CCBFF;

    padding:12px 25px;

    border-radius:30px;

    margin-bottom:25px;

}

.hero h1{

    font-size:64px;

    line-height:1.15;

    margin-bottom:25px;

}

.hero p{

    color:#d2d2d2;

    line-height:1.8;

    font-size:18px;

    margin-bottom:40px;

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.btn-secondary{

    border:2px solid var(--accent);

    color:white;

    padding:15px 35px;

    border-radius:50px;

    transition:.4s;

}

.btn-secondary:hover{

    background:var(--accent);

}


/*================ STATS ================*/

.stats{

    padding:80px 0;

    background:#0F172A;

}

.stats .container{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.stat-box{

    text-align:center;

    background:#162033;

    padding:45px;

    border-radius:18px;

    transition:.4s;

}

.stat-box:hover{

    transform:translateY(-8px);

}

.stat-box h2{

    color:#4DB4FF;

    font-size:48px;

}

.stat-box span{

    color:#ccc;

}

/*=========================================
    SECTION TITLES
=========================================*/

section{
    padding:100px 0;
}

.section-title{
    text-align:center;
    max-width:700px;
    margin:0 auto 70px;
}

.section-title span{
    color:var(--accent2);
    text-transform:uppercase;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
}

.section-title h2{
    font-size:42px;
    margin:20px 0;
    color:#fff;
}

.section-title p{
    color:#bdbdbd;
    line-height:1.8;
    font-size:17px;
}

/*=========================================
    SERVICES
=========================================*/

.services-preview{
    background:#08111f;
}

.service-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

.service-card{

    background:rgba(255,255,255,.04);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:45px 35px;

    transition:.4s;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.service-card::before{

    content:"";

    position:absolute;

    width:150px;

    height:150px;

    background:rgba(30,136,255,.12);

    border-radius:50%;

    top:-60px;

    right:-60px;

}

.service-card:hover{

    transform:translateY(-12px);

    border-color:#2B8DFF;

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.service-card i{

    font-size:55px;

    color:#45AAFF;

    margin-bottom:25px;

}

.service-card h3{

    font-size:24px;

    margin-bottom:15px;

}

.service-card p{

    color:#cfcfcf;

    line-height:1.8;

}

/*=========================================
    WHY CHOOSE US
=========================================*/

.why-us{

    background:#0d1526;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));

    gap:35px;

}

.why-card{

    padding:40px;

    border-radius:18px;

    background:#131f35;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-left:5px solid var(--accent);

}

.why-card i{

    font-size:45px;

    color:#4CB3FF;

    margin-bottom:20px;

}

.why-card h3{

    margin-bottom:15px;

    font-size:24px;

}

.why-card p{

    color:#cfcfcf;

    line-height:1.8;

}

/*=========================================
    PROCESS
=========================================*/

.process{

    background:#08111f;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

}

.process-card{

    background:#10192d;

    border-radius:20px;

    text-align:center;

    padding:45px 30px;

    transition:.4s;

    position:relative;

}

.process-card:hover{

    transform:translateY(-10px);

}

.number{

    width:75px;

    height:75px;

    background:linear-gradient(135deg,#1E88FF,#54C4FF);

    color:#fff;

    font-size:26px;

    font-weight:700;

    border-radius:50%;

    display:flex;

    justify-content:center;

    align-items:center;

    margin:0 auto 25px;

    box-shadow:0 10px 25px rgba(30,136,255,.45);

}

.process-card h3{

    margin-bottom:15px;

    font-size:23px;

}

.process-card p{

    color:#cfcfcf;

    line-height:1.8;

}

/*=========================================
    TESTIMONIALS
=========================================*/

.testimonials{

    background:#0B1324;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(330px,1fr));

    gap:35px;

}

.testimonial-card{

    position:relative;

    background:rgba(255,255,255,.04);

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border-radius:22px;

    padding:45px;

    transition:.35s;

}

.testimonial-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.35);

    border-color:#2B8DFF;

}

.quote{

    font-size:45px;

    color:#2B8DFF;

    margin-bottom:20px;

}

.testimonial-card p{

    color:#d0d0d0;

    line-height:1.9;

    margin-bottom:30px;

}

.testimonial-card h4{

    color:#fff;

    margin-bottom:6px;

}

.testimonial-card span{

    color:#8AA6C9;

}

/*=========================================
    PRICING
=========================================*/

.pricing{

    background:#08111F;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:40px;

}

.pricing-card{

    background:#10192D;

    border-radius:25px;

    padding:55px 40px;

    text-align:center;

    position:relative;

    transition:.4s;

    border:1px solid rgba(255,255,255,.08);

}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.pricing-card.featured{

    border:2px solid #2B8DFF;

    transform:scale(1.05);

}

.badge{

    position:absolute;

    top:-18px;

    left:50%;

    transform:translateX(-50%);

    background:linear-gradient(135deg,#1E88FF,#52C2FF);

    color:white;

    padding:10px 30px;

    border-radius:50px;

    font-size:14px;

    font-weight:600;

}

.plan{

    color:#6FBFFF;

    text-transform:uppercase;

    font-weight:700;

    letter-spacing:2px;

}

.pricing-card h2{

    font-size:60px;

    margin:25px 0 10px;

}

.subtitle{

    color:#c9c9c9;

    margin-bottom:35px;

}

.pricing-card ul{

    text-align:left;

    margin-bottom:40px;

}

.pricing-card ul li{

    margin:18px 0;

    color:#ddd;

}

.pricing-card ul li i{

    color:#2B8DFF;

    margin-right:10px;

}

/*=========================================
    CALL TO ACTION
=========================================*/

.cta{

    background:linear-gradient(135deg,#0E1629,#13233D);

    text-align:center;

}

.cta-content{

    max-width:850px;

    margin:auto;

}

.cta h2{

    font-size:48px;

    margin-bottom:25px;

}

.cta p{

    color:#d4d4d4;

    font-size:18px;

    line-height:1.9;

    margin-bottom:40px;

}
/*=========================================
    CARRIER SETUP FORM
=========================================*/

.carrier-form{

    background:#0B1324;

}

.carrier-form form{

    max-width:1100px;

    margin:auto;

    background:#10192D;

    padding:60px;

    border-radius:25px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 25px 50px rgba(0,0,0,.35);

}

.carrier-form h2{

    color:#48A8FF;

    margin:45px 0 25px;

    font-size:30px;

    border-left:5px solid #2B8DFF;

    padding-left:18px;

}

.form-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:25px;

}

.form-group{

    display:flex;

    flex-direction:column;

}

.form-group label{

    color:#fff;

    margin-bottom:10px;

    font-weight:600;

}

.form-group input,

.form-group select,

.form-group textarea{

    background:#16233B;

    border:1px solid rgba(255,255,255,.08);

    padding:18px;

    border-radius:12px;

    color:#fff;

    outline:none;

    transition:.3s;

    font-size:15px;

}

.form-group input:focus,

.form-group select:focus,

.form-group textarea:focus{

    border-color:#2B8DFF;

    box-shadow:0 0 20px rgba(43,141,255,.25);

}

.form-group textarea{

    resize:vertical;

    min-height:140px;

}

.form-group input::placeholder,

.form-group textarea::placeholder{

    color:#999;

}

/* Upload Inputs */

input[type=file]{

    padding:14px;

    background:#1B2A45;

    cursor:pointer;

}

.checkbox-group{

    display:flex;

    flex-wrap:wrap;

    gap:25px;

    margin:30px 0;

}

.checkbox-group label{

    display:flex;

    align-items:center;

    gap:10px;

    color:#ddd;

}

.checkbox-group input{

    width:18px;

    height:18px;

    accent-color:#2B8DFF;

}

.carrier-form button{

    margin-top:25px;

    width:100%;

    padding:18px;

    font-size:18px;

    cursor:pointer;

}

/*=========================================
    CONTACT PAGE
=========================================*/

.contact-info{

    background:#08111F;

}

.contact-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));

    gap:30px;

}

.contact-card p {
    font-size: 16px;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.6;
}

.contact-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.35);

}

.contact-card i{

    font-size:48px;

    color:#48A8FF;

    margin-bottom:20px;

}

.contact-card h3{

    margin-bottom:12px;

}

.contact-card p{

    color:#cfcfcf;

}

.contact-section{

    background:#0F172A;

}

.contact-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:start;

}

.contact-left h2{

    font-size:42px;

    margin-bottom:25px;

}

.contact-left p{

    color:#ccc;

    line-height:1.9;

    margin-bottom:30px;

}

.contact-left ul li{

    margin:18px 0;

    color:#ddd;

}

.contact-left ul li i{

    color:#48A8FF;

    margin-right:12px;

}

.contact-right{

    background:#131F35;

    padding:40px;

    border-radius:20px;

}

.contact-right form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-right button{

    width:100%;

    cursor:pointer;

}
/*=========================================
        FAQ SECTION
=========================================*/

.faq-section{

    background:#08111F;

}

.faq-container{

    max-width:900px;

    margin:auto;

}

.faq-item{

    background:#10192D;

    border-radius:18px;

    padding:30px;

    margin-bottom:25px;

    transition:.35s;

    border-left:5px solid transparent;

}

.faq-item:hover{

    border-left:5px solid #2B8DFF;

    transform:translateX(8px);

}

.faq-item h3{

    color:white;

    margin-bottom:15px;

    font-size:22px;

}

.faq-item p{

    color:#d0d0d0;

    line-height:1.8;

}

/*=========================================
        SUPPORT SECTION
=========================================*/

.support-section{

    background:#0F172A;

}

.support-card{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:#131F35;

    padding:70px;

    border-radius:25px;

}

.support-card i{

    font-size:70px;

    color:#2B8DFF;

    margin-bottom:25px;

}

.support-card h2{

    font-size:42px;

    margin-bottom:20px;

}

.support-card p{

    color:#ccc;

    line-height:1.8;

    margin-bottom:35px;

}

/*=========================================
        PAGE BANNER
=========================================*/

.page-banner{

    height:420px;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    background:

    linear-gradient(rgba(5,10,20,.82),rgba(5,10,20,.88)),

    url("Banner.png") center/cover;

}

.page-banner h1{

    font-size:58px;

    margin-bottom:20px;

}

.page-banner p{

    font-size:20px;

    color:#ddd;

}

/*=========================================
            FOOTER
=========================================*/

footer{

    background:#060B14;

    padding:80px 0 30px;

}

.footer-grid{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1fr;

    gap:50px;

}

.footer-grid h3{

    margin-bottom:25px;

    color:white;

}

.footer-grid p{

    color:#bcbcbc;

    line-height:1.8;

}

.footer-grid ul li{

    margin-bottom:15px;

}

.footer-grid ul li a{

    color:#bcbcbc;

    transition:.3s;

}

.footer-grid ul li a:hover{

    color:#48A8FF;

}

.footer-social a{

    width:48px;

    height:48px;

    display:inline-flex;

    justify-content:center;

    align-items:center;

    background:#111827;

    color:white;

    border-radius:50%;

    margin-right:12px;

    transition:.35s;

}

.footer-social a:hover{

    background:#2B8DFF;

    transform:translateY(-6px);

}

.copyright{

    border-top:1px solid rgba(255,255,255,.08);

    margin-top:50px;

    padding-top:25px;

    text-align:center;

    color:#999;

}

/*=========================================
        SCROLLBAR
=========================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#08111F;

}

::-webkit-scrollbar-thumb{

    background:#2B8DFF;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#53B7FF;

}

/*=========================================
      RESPONSIVE DESIGN
=========================================*/

@media(max-width:1100px){

.process-grid{

grid-template-columns:repeat(2,1fr);

}

.footer-grid{

grid-template-columns:repeat(2,1fr);

}

.contact-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:900px){

.hero h1{

font-size:48px;

}

.stats .container{

grid-template-columns:repeat(2,1fr);

}

.form-grid{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

header .container{

flex-direction:column;

height:auto;

padding:20px;

}

nav ul{

flex-direction:column;

text-align:center;

gap:18px;

margin-top:20px;

}

.hero{

text-align:center;

}

.hero-buttons{

justify-content:center;

flex-wrap:wrap;

}

.hero h1{

font-size:40px;

}

.section-title h2{

font-size:34px;

}

.process-grid{

grid-template-columns:1fr;

}

.footer-grid{

grid-template-columns:1fr;

text-align:center;

}

.stats .container{

grid-template-columns:1fr;

}

.contact-grid{

grid-template-columns:1fr;

}

.pricing-grid{

grid-template-columns:1fr;

}

.service-grid{

grid-template-columns:1fr;

}

.why-grid{

grid-template-columns:1fr;

}

}

@media(max-width:500px){

.hero h1{

font-size:32px;

}

.page-banner h1{

font-size:36px;

}

.btn-primary,

.btn-secondary{

width:100%;

text-align:center;

}

}
/* JavaScript Animation Classes */

.hidden{

opacity:0;

transform:translateY(40px);

transition:.8s ease;

}

.hidden.active{

opacity:1;

transform:translateY(0);

}

/* Sticky Header */

header.sticky{

background:#08111F;

box-shadow:0 10px 30px rgba(0,0,0,.35);

}

/* Scroll To Top */

.scrollTop{

position:fixed;

right:30px;

bottom:30px;

width:55px;

height:55px;

border:none;

border-radius:50%;

background:#2B8DFF;

color:#fff;

font-size:20px;

cursor:pointer;

opacity:0;

pointer-events:none;

transition:.35s;

z-index:999;

}

.scrollTop.show{

opacity:1;

pointer-events:auto;

}

.scrollTop:hover{

transform:translateY(-6px);

}
/* ================================
   HEADER
================================ */

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

nav {
    margin-left: auto;
    margin-right: 35px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
}

.header-cta {
    white-space: nowrap;
}


/* ================================
   MOBILE
================================ */

@media (max-width: 768px) {

    header .container {
        height: 72px;
        padding: 0 20px;
        flex-direction: row !important;
    }

    .logo img {
        height: 45px;
    }

    nav {
        margin: 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 15px;
        right: 15px;
        width: auto;

        flex-direction: column;
        align-items: stretch;
        gap: 0;

        background: #0b172b;
        border: 1px solid rgba(255,255,255,.1);
        border-radius: 14px;
        padding: 8px 0;

        box-shadow: 0 20px 40px rgba(0,0,0,.4);
        z-index: 9999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        box-sizing: border-box;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
        margin-right: 0;
    }

    .header-cta {
        display: none;
    }
}