/* ===================================
   PARALLEL LOGIX WEBSITE
=================================== */

:root{

    --primary:#081C3A;
    --secondary:#00B86B;
    --orange:#ff7a00;
    --white:#ffffff;
    --light:#f5f7fa;
    --text:#555;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Poppins',sans-serif;
    color:#333;
    background:#fff;
    overflow-x:hidden;

}

img{
    max-width:100%;
}

/*==========================
TOP BAR
==========================*/

.top-bar{

    background:var(--primary);
    color:white;

    padding:10px 0;

    font-size:14px;

}

.top-bar span{

    margin-right:25px;

}

.top-bar i{

    color:var(--secondary);

    margin-right:8px;

}

/*==========================
NAVBAR
==========================*/

.navbar{

    padding:15px 0;

    transition:.4s;

}

.navbar-brand img{

    height:60px;

}

.nav-link{

    font-weight:500;

    margin-left:25px;

    color:#222;

}

.nav-link:hover{

    color:var(--secondary);

}

.btn-success{

    background:var(--secondary);

    border:none;

    border-radius:30px;

    padding:12px 30px;

}

.btn-success:hover{

    background:#00a55f;

}

.btn-outline-light{

    border-radius:30px;

    padding:12px 30px;

}

/*==========================
HERO
==========================*/
.hero-products{
    display:flex;
    justify-content:center;
    align-items:center;
    
}

.hero-product{

    width:420px;
    max-width:100%;
     margin-left:320px;
    margin-top:-60px;

    filter:drop-shadow(0 25px 40px rgba(0,0,0,.45));

    animation:float 5s ease-in-out infinite;

    transition:.4s;

}

.hero-product:hover{

    transform:scale(1.03);

}

.lidar-img{

    position:absolute;

    right:120px;

    top:60px;

    width:380px;

    z-index:2;

    animation:float 5s ease-in-out infinite;

    filter:drop-shadow(0 20px 30px rgba(0,0,0,.35));

}

.wireless-img{

    position:absolute;

    right:0;

    top:170px;

    width:330px;

    opacity:.92;

    animation:float2 6s ease-in-out infinite;

    filter:drop-shadow(0 20px 30px rgba(0,0,0,.35));

}

.hero{

    background:url("../images/hero-bg.png") center center;

    background-size:cover;

    position:relative;

    min-height:750px;

    display:flex;

    align-items:center;

}

.hero::before{

    content:"";

    position:absolute;

    width:100%;
    height:100%;

    background:rgba(8,28,58,.82);

    left:0;
    top:0;

}

.hero .container{

    position:relative;
    z-index:2;

}

.hero h5{

    letter-spacing:3px;

    color:var(--secondary);

    font-weight:600;

}

.hero h1{

    color:white;

    font-size:58px;

    font-weight:700;

    line-height:1.2;

    margin:20px 0;

}

.hero p{

    color:#d7d7d7;

    font-size:18px;

    line-height:32px;

    margin-bottom:35px;

}



/* Floating animation */

@keyframes float{

0%{

transform:translateY(0);

}

50%{

transform:translateY(12px);

}

100%{

transform:translateY(0);

}

}

/*==========================
SECTION TITLE
==========================*/

section{

    padding:90px 0;

}

section h2{

    font-size:42px;

    font-weight:700;

    color:var(--primary);

}

section p{

    color:#666;

}

/*==========================
PRODUCTS
==========================*/
.products{
    background:#f5f7fa;
}

.product-card{

    background:#fff;

    border-radius:20px;

    padding:30px;

    height:100%;

    transition:.4s;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    overflow:hidden;

    position:relative;

}

.product-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.product-card::before{

    content:"";

    position:absolute;

    left:0;

    top:0;

    width:100%;

    height:5px;

    background:#00B86B;

}

.product-img{

    height:220px;

    width:100%;

    object-fit:contain;

    transition:.4s;

    margin-bottom:20px;

}

.product-card:hover .product-img{

    transform:scale(1.08);

}

.product-card h4{

    color:#081C3A;

    font-weight:700;

    margin-bottom:15px;

}

.product-card p{

    color:#666;

    line-height:28px;

}

.product-card ul{

    padding-left:18px;

    margin-top:20px;

}

.product-card li{

    margin-bottom:10px;

    color:#555;

}

.product-btn{

    display:inline-block;

    margin-top:20px;

    color:#00B86B;

    font-weight:600;

    text-decoration:none;

}

.product-btn:hover{

    color:#081C3A;

}

.product-btn i{

    margin-left:8px;

    transition:.3s;

}

.products{
    padding:100px 0;
}

.solutions{
    padding:100px 0;
}

.product-btn:hover i{

    margin-left:15px;

}


/*==========================
BUTTONS
==========================*/

.btn{

    transition:.3s;

}

.btn:hover{

    transform:translateY(-3px);

}

background:linear-gradient(
rgba(8,28,58,.88),
rgba(8,28,58,.88)),
url(images/factory.jpg);

/*==========================
RESPONSIVE
==========================*/

@media(max-width:992px){

.hero{
    background:url("../images/hero-bg.jpg");
    background-size:cover;
    background-position:center;
    min-height:750px;
}
.hero h1{

font-size:42px;

}

.hero-product{

margin-top:50px;

max-height:380px;

}

.hero-line{

width:90px;
height:4px;
background:#00B86B;
margin:20px 0;

}

.nav-link{

margin-left:0;

padding:10px 0;

}

}

@media(max-width:768px){

.hero h1{

font-size:34px;

}

section{

padding:70px 0;

}

section h2{

font-size:32px;

}

}


/*==========================
OUR SOLUTIONS
==========================*/

.solutions{

    background:#081C3A;

    padding:100px 0;

}

.solutions .section-title{

    color:white;

}

.solutions .section-text{

    color:#d8d8d8;

}

.solution-card{

    background:rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.1);

    border-radius:20px;

    padding:35px;

    transition:.4s;

    height:100%;

    backdrop-filter:blur(10px);

}

.solution-card:hover{

    transform:translateY(-10px);

    background:#00B86B;

}

.solution-card i{

    font-size:42px;

    color:#00B86B;

    margin-bottom:20px;

}

.solution-card:hover i{

    color:white;

}

.solution-card h4{

    color:white;

    margin-bottom:15px;

    font-weight:600;

}

.solution-card p{

    color:#dcdcdc;

    line-height:28px;

}


/*==========================
WHY PARALLEL LOGIX
==========================*/

.why{

padding:120px 0;

background:white;

}

.why-card{

background:#fff;

padding:35px;

border-radius:18px;

box-shadow:0 15px 40px rgba(0,0,0,.08);

transition:.35s;

height:100%;

border-top:5px solid transparent;

}

.why-card:hover{

transform:translateY(-12px);

border-top:5px solid #00B86B;

}

.why-card i{

font-size:42px;

color:#00B86B;

margin-bottom:20px;

}

.why-card h4{

font-weight:600;

margin-bottom:15px;

color:#081C3A;

}

.why-card p{

color:#666;

line-height:28px;

}



/*==========================
INDUSTRIES
==========================*/

.industries{

    padding:110px 0;

    background:#f5f7fb;

}

.industry-card{

    position:relative;

    display:block;

    overflow:hidden;

    border-radius:20px;

    height:300px;

    text-decoration:none;

}

.industry-card img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.5s;

}

.industry-overlay{

    position:absolute;

    inset:0;

    background:rgba(8,28,58,.60);

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:30px;

    transition:.4s;

}

.industry-overlay i{

    color:#00B86B;

    font-size:38px;

    margin-bottom:15px;

}

.industry-overlay h4{

    color:white;

    font-weight:700;

    margin:0;

}

.industry-card:hover img{

    transform:scale(1.12);

}

.industry-card:hover .industry-overlay{

    background:rgba(8,28,58,.35);

}

.industry-card{

    box-shadow:0 15px 40px rgba(0,0,0,.12);

}




/*==========================
DOWNLOADS
==========================*/

.downloads{

    padding:100px 0;

    background:#f7f9fc;

}

.download-card{

    background:#fff;

    border-radius:20px;

    padding:35px;

    text-align:center;

    box-shadow:0 15px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.download-card:hover{

    transform:translateY(-10px);

}

.download-card i{

    font-size:48px;

    color:#00B86B;

    margin-bottom:20px;

}

.download-card h5{

    color:#081C3A;

    font-weight:700;

    margin-bottom:15px;

}

.download-card p{

    color:#666;

}

.download-card a{

    color:#00B86B;

    font-weight:600;

    text-decoration:none;

}




/*==========================
CTA
==========================*/

.cta{

    background:#081C3A;

    color:white;

    padding:80px 0;

}

.cta h2{

    font-weight:700;

    margin-bottom:15px;

}

.cta p{

    color:#d7d7d7;

    margin:0;

}



/*==========================
FOOTER
==========================*/

.footer{

    background:#081C3A;

    color:#fff;

    padding:80px 0 20px;

}

.footer-logo{

    width:80px;

    margin-bottom:20px;

}

.footer-text{

    color:#cfd6e4;

    line-height:30px;

}

.footer h5{

    margin-bottom:25px;

    font-weight:700;

}

.footer ul{

    list-style:none;

    padding:0;

}

.footer ul li{

    margin-bottom:12px;

}

.footer ul li a{

    color:#cfd6e4;

    text-decoration:none;

    transition:.3s;

}

.footer ul li a:hover{

    color:#00B86B;

    padding-left:5px;

}

.footer p{

    color:#cfd6e4;

}

.footer p i{

    color:#00B86B;

    width:25px;

}

.social-links{

    margin-top:20px;

}

.social-links a{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    width:42px;

    height:42px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    color:#fff;

    margin-right:10px;

    text-decoration:none;

    transition:.3s;

}

.social-links a:hover{

    background:#00B86B;

    transform:translateY(-5px);

}

.footer hr{

    border-color:rgba(255,255,255,.12);

    margin:40px 0 20px;

}

.footer-bottom{

    text-align:center;

    color:#b8c0cf;

}


.back-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    background:#00B86B;

    color:white;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    text-decoration:none;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.back-top:hover{

    background:#081C3A;

    color:#fff;

}
