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

body{
    /* background: linear-gradient(135deg,#060612,#0d0b23,#110d32,#13103b); */
    background-size: 200%;
    background-color: black;
    background-attachment: fixed;
    background-repeat: no-repeat;
    height: 100%;
    background-position: left;
    animation: bg-animation 12s ease-in-out infinite alternate;
    font-family: 'Poppins', sans-serif;
    z-index: 1;
    color: white;
}

@keyframes bg-animation {
    0% {background-position: left;}
    100%{ background-position: right;}
}

.sections-div{
    padding-left: 16px;
    padding-right: 16px;
}

/* BUTTON */

button{
    padding: 6px 12px;
    border: 1px solid rgba(139,92,246,0.6);
    color:#c084fc;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    transition: .3s;
}

button:hover{
    background: rgba(139,92,246,0.15);
    box-shadow: 0 0 14px rgba(139,92,246,0.6);
}

.button-2{
    border: none;
    background-color: transparent;
    color:#c084fc;
}

/* NAVBAR */

.nav-logo{
    width: 60px;
    padding: 10px 10px;
}

.nav-socials i{
    color:#e1d4ff;
    font-size:20px ;
    cursor: pointer;
    transition:.3s;
}

.nav-socials i:hover{
     color:#8b5cf6;
     text-shadow:0 0 12px #8b5cf6;
}

.nav-div{
    width: 100%;
    background: linear-gradient(170deg, transparent 40%, #320e41, #620786, #bc13fe 99%);
    color: #fff;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: fixed;
    z-index: 10000;
    top: 0%;
}

.nav-div::before{
    content:"";
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:2px;

    background: linear-gradient(
        to right,
        transparent 0%,
        transparent 50%,
        #a93bd4 85%,
        #d05aff 98%,
        white 100%
    );

    opacity:.9;
}

/* DROPDOWN */

.dropdown-menu{
    border: 1px solid rgba(139,92,246,0.4);
    background: rgba(31,31,46,0.75);
    backdrop-filter: blur(18px);
    border-radius: 10px;
    padding-top: 15px;
    overflow:hidden ;
}

.dropdown-item{
    padding-bottom: 8px;
    background: transparent !important;
    transition:.25s;
}

.dropdown-item:hover{
    background: rgba(139,92,246,0.12);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* LINE */
/* 
.line{
    height: 1px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.line-box{
    padding-left: 300px;
    padding-right: 300px;
} */

/* FONT */

p{
    font-size: 17px;
    color: rgb(190,180,220);
}

.big-font{
    font-size: 60px;
    color:#f3e8ff;
    font-weight: bold;
}

.mid-font{
    font-size: 40px;
    color:#f3e8ff;
    font-weight: 500;
    line-height: 45px;
}

.midl-font{
    font-size: 27px;
    color:#f1f1f1;
    font-weight: 500;
    line-height: 45px;
}

.para-l{
    font-size: 16px;
    color: #d6d6d6;
}

/* CODE */

.top-right-code-second p{
    font-size: 15px;
}

.top-right-code-second code{
    font-size: 15px;
}

.c-blue{
    color: #c084fc;
}

.w-code{
    color: rgba(255, 255, 255, 0.55);
}

.wl-code{
    color: rgba(255, 255, 255, 0.30);
}

.o-code{
    color: rgba(139,92,246,0.7);
}

.lo-code{
    color: #a78bfa;
}

.g-code{
    color: #8b5cf6;
}

.wd-code{
    color: rgba(255, 255, 255, 0.8);
}

.code-back{
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(14px);
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    position: relative;
}

.box-mains{
    padding-left: 25px;
    padding-right: 25px;
}

/* FOOTER */

.foot i{
    font-size: 30px;
    color:#c084fc;
    transition:.3s;
}

.foot i:hover{
    color:#8b5cf6 ;
    text-shadow:0 0 14px #8b5cf6;
    cursor: pointer;
}

/* RESPONSIVE */

@media (max-width:610px) {
    .box-mains{
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0 ;
    }
    body{
        animation: none;
    }
    .big-font{
        font-size: 40px;
    }
    .dropdown-menu{
        width: 100%;
    }
    .line-box{
        padding-left: 50px;
        padding-right: 50px;
    }
    .top-heading{
        background-image: none;
    }
}