/*=========================================
        ABHISHEKHUB PORTFOLIO
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#08111f;
    color:#ffffff;
    overflow-x:hidden;
}

/* Scrollbar */

::-webkit-scrollbar{
    width:8px;
}

::-webkit-scrollbar-track{
    background:#0d1526;
}

::-webkit-scrollbar-thumb{
    background:#00d4ff;
    border-radius:20px;
}

/* Loader */

#loader{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:#08111f;
    display:flex;
    justify-content:center;
    align-items:center;
    z-index:9999;
}

.spinner{
    width:70px;
    height:70px;
    border:6px solid rgba(255,255,255,.2);
    border-top:6px solid #00d4ff;
    border-radius:50%;
    animation:spin 1s linear infinite;
}

@keyframes spin{
    100%{
        transform:rotate(360deg);
    }
}

/* Navbar */

.glass-nav{

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(15px);

    transition:.4s;

}

.navbar-brand{

    font-size:28px;

    font-weight:bold;

}

.nav-link{

    color:#fff !important;

    margin-left:20px;

    transition:.3s;

}

.nav-link:hover{

    color:#00d4ff !important;

}

/* Hero */

.hero{

    min-height:100vh;

    display:flex;

    align-items:center;

    background:
    linear-gradient(135deg,#08111f,#102448);

}

.hero h1{

    font-size:60px;

    font-weight:700;

}

.hero h2{

    color:#00d4ff;

    margin:20px 0;

    min-height:50px;

}

.hero p{

    color:#d5d5d5;

    line-height:30px;

}

.hero-img{

    width:380px;

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

}

@keyframes float{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-18px);

}

}

/* Buttons */

.btn-info{

    background:#00d4ff;

    border:none;

    color:#000;

    font-weight:600;

}

.btn-info:hover{

    transform:translateY(-3px);

    transition:.3s;

}

.btn-outline-light:hover{

    background:#00d4ff;

    border-color:#00d4ff;

    color:#000;

}

/* Section */

section{

    padding:100px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

}

.section-title p{

    color:#bbb;

}

/* Cards */

.card{

    background:#13233f;

    border:none;

    border-radius:18px;

    color:white;

    transition:.4s;

}

.card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,212,255,.2);

}

/* Footer */

footer{

    background:#040b16;

    padding:40px;

    text-align:center;

}

/* Mobile */

@media(max-width:991px){

.hero{

text-align:center;

padding-top:100px;

}

.hero h1{

font-size:42px;

}

.hero-img{

width:250px;

margin-top:40px;

}

}