/*=====================================================
    Binarylogin
    style.css
======================================================*/


/*==========================================
    Local Poppins Font
==========================================*/

@font-face{
    font-family:'Poppins';
    src:url('../fonts/poppins-light-webfont.woff2') format('woff2');
    font-weight:300;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('../fonts/poppins-regular-webfont.woff2') format('woff2');
    font-weight:400;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('../fonts/poppins-medium-webfont.woff2') format('woff2');
    font-weight:500;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('../fonts/poppins-semibold-webfont.woff2') format('woff2');
    font-weight:600;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('../fonts/poppins-bold-webfont.woff2') format('woff2');
    font-weight:700;
    font-style:normal;
    font-display:swap;
}

@font-face{
    font-family:'Poppins';
    src:url('../fonts/Poppins-ExtraBold.woff2') format('woff2');
    font-weight:800;
    font-style:normal;
    font-display:swap;
}


:root{

    --primary:#0d6efd;
    --secondary:#00bcd4;
    --dark:#071426;
    --light:#f8f9fa;
    --white:#ffffff;
    --gray:#6c757d;
    --border:#e6e9ef;

    --gradient:linear-gradient(135deg,#0d6efd,#00bcd4);

    --shadow:0 10px 30px rgba(0,0,0,.12);

    --radius:16px;

    --transition:.35s ease;

}

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}


html{

    -webkit-font-smoothing:antialiased;

    -moz-osx-font-smoothing:grayscale;

    text-rendering:optimizeLegibility;

    scroll-behavior:smooth;

}


body{

    font-family:'Poppins',sans-serif;

    font-size:16px;

    font-weight:400;

    color:#212529;

    line-height:1.7;

}

h1,
h2,
h3{
    font-weight:800;
}

h4,
h5,
h6{
    font-weight:700;
}

.navbar-brand{
    font-weight:700;
}

.nav-link{
    font-weight:500;
}

.btn{
    font-weight:600;
}

.hero-tag{
    font-weight:500;
}

.section-subtitle{
    font-weight:600;
}

.section-title{
    font-weight:800;
}

.feature-card h5{
    font-weight:700;
}

.service-card h4{
    font-weight:700;
}

.product-card h4{
    font-weight:700;
}

.footer h3,
.footer h5{
    font-weight:700;
}

img{

    max-width:100%;

    display:block;

}

a{

    text-decoration:none;

    transition:.3s;

}

ul{

    list-style:none;

}

/*==========================
Navbar
===========================*/

.navbar{

    background:transparent;

    transition:.4s;

    padding:18px 0;

    z-index:999;

}

.navbar-scrolled{

    background:#081c36;

    box-shadow:var(--shadow);

    padding:10px 0;

}

.navbar-brand{

    color:#fff!important;

    font-size:30px;

    font-weight:700;

}

.nav-link{

    color:#fff!important;

    margin-left:18px;

    font-weight:500;

}

.nav-link:hover{

    color:#00d4ff!important;

}

.nav-link.active{

    color:#00d4ff!important;

}

.navbar .btn{

    border-radius:40px;

    padding:10px 28px;

    font-weight:600;

}

/*==========================
Hero
===========================*/

.hero{

    background:var(--gradient);

    min-height:100vh;

    display:flex;

    align-items:center;

    color:#fff;

    position:relative;

    overflow:hidden;

}

.hero::before{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-180px;

    right:-180px;

}

.hero::after{

    content:"";

    position:absolute;

    width:300px;

    height:300px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    left:-120px;

    bottom:-120px;

}

.hero-tag{

    display:inline-block;

    background:rgba(255,255,255,.15);

    padding:8px 18px;

    border-radius:30px;

    margin-bottom:20px;

    font-weight:500;

}

.hero h1{

    font-size:58px;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.hero h1 span{

    color:#ffe600;

}

.hero p{

    font-size:18px;

    opacity:.95;

    margin-bottom:35px;

}

.hero .btn{

    border-radius:50px;

    padding:14px 34px;

    font-weight:600;

}

.hero-img{

    animation:float 5s ease-in-out infinite;

}

/*==========================
Section Title
===========================*/

.section-subtitle{

    color:var(--primary);

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

}

.section-title{

    font-size:40px;

    font-weight:700;

    margin-top:10px;

    margin-bottom:25px;

}

/*==========================
Feature Cards
===========================*/

.feature-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-10px);

}

.feature-card i{

    width:75px;

    height:75px;

    line-height:75px;

    background:var(--gradient);

    color:#fff;

    border-radius:50%;

    font-size:30px;

    margin-bottom:20px;

}

.feature-card h5{

    font-weight:700;

    margin-bottom:15px;

}

/*==========================
About
===========================*/

.about{

    background:#f7faff;

}

.about img{

    border-radius:20px;

    box-shadow:var(--shadow);

}

.about ul li{

    margin-bottom:12px;

    font-weight:500;

}

.about .btn{

    border-radius:50px;

    padding:12px 28px;

}

/*==========================
Service Cards
===========================*/

.service-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:var(--shadow);

    transition:.35s;

    border:1px solid transparent;

}

.service-card:hover{

    border-color:#0d6efd;

    transform:translateY(-8px);

}

.service-card i{

    font-size:48px;

    color:var(--primary);

    margin-bottom:20px;

}

.service-card h4{

    font-weight:700;

    margin-bottom:15px;

}

/*==========================
Technology
===========================*/

.tech-box{

    background:#fff;

    border-radius:15px;

    padding:25px;

    box-shadow:var(--shadow);

    font-weight:700;

    transition:.35s;

}

.tech-box:hover{

    background:var(--gradient);

    color:#fff;

    transform:translateY(-6px);

}

/*==========================
Counter
===========================*/

.counter-section{

    background:var(--gradient);

}

.counter{

    font-size:54px;

    font-weight:700;

}

.counter-section p{

    font-size:18px;

}

/*=====================================================
    Products
======================================================*/

.products{

    background:#ffffff;

}

.product-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.product-card img{

    width:100%;

    height:240px;

    object-fit:cover;

}

.product-card:hover{

    transform:translateY(-10px);

}

.product-card h4{

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.product-card p{

    color:var(--gray);

}

/*=====================================================
    Process
======================================================*/

.process{

    background:#f7faff;

}

.process-box{

    background:#fff;

    border-radius:18px;

    padding:40px 20px;

    box-shadow:var(--shadow);

    transition:.35s;

    position:relative;

}

.process-box:hover{

    transform:translateY(-10px);

}

.process-box i{

    width:90px;

    height:90px;

    line-height:90px;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    font-size:34px;

    margin-bottom:20px;

}

.process-box h4{

    font-weight:700;

}

/*=====================================================
    Testimonials
======================================================*/

.testimonial{

    background:#fff;

}

.testimonial-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:.3s;

    height:100%;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card p{

    font-style:italic;

    color:#666;

}

.testimonial-card h5{

    margin-top:20px;

    color:var(--primary);

    font-weight:600;

}

/*=====================================================
    CTA
======================================================*/

.cta{

    background:var(--gradient);

    color:#fff;

}

.cta h2{

    font-size:46px;

    font-weight:700;

}

.cta p{

    font-size:20px;

    margin:20px 0 35px;

}

.cta .btn{

    border-radius:40px;

    padding:14px 40px;

    font-size:18px;

}

/*=====================================================
    Footer
======================================================*/

.footer{

    background:#081423;

    padding:80px 0 30px;

}

.footer h3,

.footer h5{

    margin-bottom:25px;

    font-weight:700;

}

.footer p,

.footer li{

    color:#c7d2dc;

    margin-bottom:12px;

}

.footer a{

    color:#c7d2dc;

}

.footer a:hover{

    color:#00d4ff;

}

.footer hr{

    border-color:rgba(255,255,255,.12);

    margin:35px 0;

}

/*=====================================================
    Buttons
======================================================*/

.btn-info{

    background:var(--gradient);

    border:none;

    color:#fff;

}

.btn-info:hover{

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(13,110,253,.35);

}

.btn-light:hover{

    transform:translateY(-3px);

}

/*=====================================================
    Back To Top
======================================================*/

.back-to-top{

    position:fixed;

    right:25px;

    bottom:25px;

    width:50px;

    height:50px;

    border-radius:50%;

    background:var(--gradient);

    color:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    opacity:0;

    visibility:hidden;

    transition:.35s;

    z-index:999;

}

.back-to-top.show{

    opacity:1;

    visibility:visible;

}

.back-to-top:hover{

    color:#fff;

    transform:translateY(-5px);

}

/*=====================================================
    Preloader
======================================================*/

.preloader{

    position:fixed;

    inset:0;

    background:#fff;

    display:flex;

    justify-content:center;

    align-items:center;

    z-index:99999;

}

.preloader.hide{

    opacity:0;

    visibility:hidden;

    transition:.5s;

}

/*=====================================================
    Animations
======================================================*/

@keyframes float{

    0%{

        transform:translateY(0px);

    }

    50%{

        transform:translateY(-20px);

    }

    100%{

        transform:translateY(0px);

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(40px);

    }

    to{

        opacity:1;

        transform:translateY(0);

    }

}

/*=====================================================
    Scrollbar
======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-thumb{

    background:var(--primary);

    border-radius:20px;

}

::-webkit-scrollbar-track{

    background:#eef3f8;

}

/*=====================================================
    Utilities
======================================================*/

.shadow-custom{

    box-shadow:var(--shadow);

}

.rounded-xl{

    border-radius:20px;

}

.text-gradient{

    background:var(--gradient);

    -webkit-background-clip:text;

    -webkit-text-fill-color:transparent;

}

.bg-gradient{

    background:var(--gradient);

}

/*=====================================================
    Responsive
======================================================*/

@media(max-width:991px){

    .hero{

        text-align:center;

        padding-top:120px;

        min-height:auto;

    }

    .hero h1{

        font-size:42px;

    }

    .hero img{

        margin-top:50px;

    }

    .section-title{

        font-size:34px;

    }

    .navbar{

        background:#081c36;

    }

}

@media(max-width:768px){

    .hero h1{

        font-size:34px;

    }

    .section-title{

        font-size:28px;

    }

    .counter{

        font-size:38px;

    }

    .cta h2{

        font-size:30px;

    }

    .footer{

        text-align:center;

    }

    .navbar-brand{

        font-size:24px;

    }

    .feature-card,

    .service-card,

    .product-card,

    .testimonial-card,

    .process-box{

        margin-bottom:20px;

    }

}

@media(max-width:576px){

    .hero{

        padding:120px 0 60px;

    }

    .hero h1{

        font-size:28px;

    }

    .hero p{

        font-size:16px;

    }

    .btn{

        width:100%;

        margin-bottom:15px;

    }

}