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

body{
    min-height:100vh;
    font-family: 'Segoe UI', sans-serif;
    background:#000;
    overflow-x:hidden;
    color:white;
}

.main-section{
    padding:80px 0;
}

.title{
    text-align:center;
    font-weight:700;
    letter-spacing:1px;
    text-shadow:0 10px 30px rgba(0,0,0,.6);
    z-index: 1;
    position: relative;

}

.project-sec{
    margin-top:50px;
    padding:40px;
    border-radius:20px;
    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(15px);
    box-shadow:0 30px 70px rgba(0,0,0,.5);
}

.pro-btn{
    position:relative;
    display:block;
    padding:18px;
    margin:20px 0;
    border-radius:14px;
    color:white;
    text-decoration:none;
    font-size:1.3rem;
    background: #6182ee;
    /* background: linear-gradient(nulldeg, rgba(63, 94, 251, 1) 0%, rgba(252, 70, 107, 1) 100%); */
    box-shadow:0 15px 30px rgba(0,0,0,.5);
    overflow:hidden;
    transition:.35s ease;
}


.pro-btn:hover{
    color:#000;
    transform:translateY(-5px) scale(1.01) rotateX(8deg);
    background-image:linear-gradient(to top,#1767e0,#0091f9,#00b4f6,#00d2e0,#12ebc5);
    box-shadow:
        0 0 20px #00f0ff,
        0 25px 50px rgba(0,0,0,.6);
}

/* ---- particles.js container ---- */
 #particles-js{ 
    position:absolute; 
    width: 100%; 
    height: 100%; 
    background-color: #2c2e43; 
    background-image: url(""); 
    background-repeat: no-repeat; 
    background-size: cover; 
    background-position: 50% 50%; 
}