body{
    background:rgb(16, 3, 30);
    overflow-x: hidden;
}
html {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: transparent;       /* transparent background */
}
::-webkit-scrollbar-thumb {
  background: rgba(111, 94, 115, 0.444); /* semi-transparent white */
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.378);  /* a bit more visible on hover */
}
.logo{
    width:50vw;
    color:rgb(166, 64, 166);
    font-family:"Quintessential", serif;
    font-weight:bold;
    padding-left:10px;
}
nav{
    width:100vw;
    position:fixed;
    background:rgba(30, 16, 52, 0.866);
    border:1px solid rgb(66, 66, 66);
    z-index:20;
}
.rem-nav{
    width:50vw;
    justify-content:flex-end;
    gap: 15px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding-right:10px;    
}
.nav-right-same{
    color:rgb(166, 166, 166);
    transition-duration:500ms;
    font-weight:600;
    cursor:pointer;
}
.nav-right-same:hover{
    color:rgb(224, 224, 224);
    transform: scale(1.1); 
    transition-duration:500ms;
}
.nav-3-bar{
    color:grey;
    cursor: pointer;
}
.blur-applied{
    height:100vh;
    background: rgba(18, 15, 50, 0.399);
    backdrop-filter: blur(10px);
    display:flex;
    justify-content: center;
    align-items: center;
}
.round{
    position:absolute;
    z-index:0;
    background-color: rgb(128, 48, 152);
    border-radius:50%;
    box-shadow: 0 0 7px 7px rgb(116, 48, 152);
    box-shadow: 0 0 17px 17px rgb(90, 48, 152);
    animation:size_animation;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes size_animation{
    0%{
        transform: scale(1);
        background-color: rgb(128, 48, 152);
    }
    50%{
        transform: scale(0.7);
        background: rgba(50, 49, 89, 0.399);
        box-shadow: 0 0 10px 10px rgba(50, 49, 89, 0.399);
    }
    100%{
        transform: scale(1);
        background-color: rgb(128, 48, 152);
    }
}
.round1{
    position: absolute;
    /* left:100px;
    top:100px; */

}
.round2{
    position: absolute;
    animation:size_round2;
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}
@keyframes size_round2{
     0%{
         transform: scale(0.7);
         background: rgba(50, 49, 89, 0.399);
         box-shadow: 0 0 10px 10px rgba(50, 49, 89, 0.399);
        }
        50%{
            transform: scale(1);
            background-color: rgb(128, 48, 152);
            box-shadow: 0 0 10px 10px rgb(116, 48, 152);
            box-shadow: 0 0 20px 20px rgb(90, 48, 152);
        }
        100%{
        transform: scale(0.7);
        background: rgba(50, 49, 89, 0.399);
        box-shadow: 0 0 10px 10px rgba(50, 49, 89, 0.399);
 }
}
.container1{
    height: 500px;
    width:700px;
}
.hello{
    text-align: center;
    color:rgb(166, 166, 166);
}
.dipankar_paul{
    text-align: center;
    color:rgb(89, 45, 194);
    font-weight: bolder;
    font-family: "Faculty Glyphic";
}
.gradient_text{
     background: linear-gradient(270deg, #ff7eb3, #6a82fb, #ff6a00);
}
.fullstack{
    text-align: center;
    margin-top:3px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    color:white;

}
.short_intro{
    text-align: center;
    color:rgb(188, 188, 188);
    margin-top:30px;
}
.btn1, .btn2 {
    background-image: linear-gradient(to right, #b105d3 0%, #9733EE  51%, #DA22FF  100%);
    border:1px solid black;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    transition: 0.5s;
    background-size: 200% auto;
    color: white;            
    border-radius: 10px;
    display: block;
    /* font-size:15px; */
}
.btn1:hover , .btn2:hover {
    background-position: right center; 
    color: #fff;
    text-decoration: none;
    box-shadow: 0 0 2px #eee;
    box-shadow: 0 0 5px #eee;
    box-shadow: 0 0 10px #eee;
    cursor:pointer;
    transform: scale(1.05); 
    z-index: 10; 
}
.github , .linkedin , .mail{
    align-items: center;
    border-radius:50%;
    border:2px solid black;
    background:transparent;
    cursor:pointer;
    transition-duration: 500ms;
}
.github:hover , .mail:hover , .linkedin:hover{
    box-shadow:  0 0 4px 4px rgb(57, 43, 102);
    box-shadow:  0 0 8px 8px rgb(79, 54, 123);
    box-shadow:  0 0 12px 12px rgb(94, 76, 144);
    transform: scale(1.2); 
    z-index: 10; 
    transition-duration: 500ms;
}

.abt_me{
    color:white;
    text-align: center;
    margin-top:20px;
    font-family: "Faculty Glyphic", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.underline_1{
    border-radius: 50%;
    border-top: 4px solid grey;
    align-items: center;
}
.abt_info{
    text-align: center;
    color: rgb(194, 194, 194);
    margin-top: 15px;
    font-family: "Quantico", sans-serif;
}
.container2{
    display:flex;
    align-items:center;
    justify-content:center;
    width: 99vw;
}
.left1{
    display:flex;
    align-items: center;
    font-family: "Faculty Glyphic", sans-serif;
    color:rgb(210, 210, 210);
}
.right1{
    display: flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

.clean_code{
display:flex;
align-items: center;
justify-content: space-around;
border-radius:15px;
}
.design_focused{
display:flex;
align-items: center;
justify-content: space-around;
border-radius:15px;
}
.fast_delivery{
display:flex;
align-items: center;
justify-content: space-around;
border-radius:15px;
}
.r_heading{
    color: white;
    font-family: "Faculty Glyphic", sans-serif;
    /* font-size:24px */
}
.r_text{
    font-family: "Arvo", serif;
    color: rgb(190, 190, 190);
}
.clean_code , .fast_delivery , .design_focused{
    background: rgb(218, 205, 205,0.05);
    backdrop-filter: blur(10px);
    transition-duration: 500ms;
}
.clean_code:hover , .fast_delivery:hover , .design_focused:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px 7px rgba(137, 137, 137, 0.16);
    transform:scale(1.1) rotate3d(3,3,0, 20deg); 
    z-index: 10;  
transition-duration: 500ms;
}
.explain-project{
    display:flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:space-around;
}
.project1{
    border:2px solid white;
    border-radius:15px;
    color:white;
    font-family: "Faculty Glyphic", sans-serif;
    display:flex;
    transition-duration:500ms;
}
.p1-img{
    border-radius:15px 0px 0px 15px;
}
.project1:hover{
    transform:scale(1.05);
    transition-duration:500ms;
    box-shadow: 0 0 20px 4px rgba(255, 255, 255, 0.24);
}
.tech_i_use{
    text-align:center;
    color:white;
    font-family: "Faculty Glyphic", sans-serif;
    display:flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.tech_explain{
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction: column;
}
.tech_row1, .tech_row2{
    display:flex;
    align-items: center;
    justify-content: space-around;
    width:99vw;
}
.my_tech{
    border:2px solid white;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(61, 21, 73, 0.227);
    backdrop-filter: blur(10px);
    transition-duration: 500ms;
}
.my_tech_logo{
    margin-top:5px;
}
.my_tech:hover{
    background: rgba(36, 20, 69, 0.247);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 3px 8px rgba(80, 24, 95, 0.258);
    box-shadow: 0 0 8px 12px rgba(80, 24, 95, 0.258);
    transform:scale(1.1) rotate3d(2,4,0, 20deg); 
    z-index: 10;  
transition-duration: 500ms
}

.left2{
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    font-family: "Faculty Glyphic", sans-serif;
    color:rgb(210, 210, 210);
    /* border: 2px solid white;
    border-radius: 10px;
    background: rgba(61, 21, 73, 0.227); */
}
.lets_connect{
    font-weight:300;
    
}
.lets_connect_info{
    color:rgb(170, 170, 170);
    margin-top:5px;
    margin-bottom:15px;
    margin-right:10px
}
.card{
    border:1px solid grey;
    border-radius:15px;
    display:flex;
    align-items: center;
    flex-direction: row;
    background-image: linear-gradient(to right, rgb(15, 15, 72) ,rgb(63, 16, 83), rgb(39, 15, 73));
    background-size: 200% auto;
    transition-duration:500ms;
    cursor:pointer;
}
.card_logo{
    border:1px solid white;
    border-radius:15px;
    background:transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left:10px;
    margin-right:10px;
}
.card_heading{
    font-family: "Arvo", serif;
    font-weight: 500;
}
.middle_card{
    margin-top:15px;
    margin-bottom:15px;
}
.card:hover{
    background-position:right center;
    color: #fff;
    transform: scale(1.1); 
    z-index: 10; 
    transition-duration: 500ms;
}
footer{
    border-top: 2px solid black;
    background-color: rgba(0, 0, 0, 0.515);
}
.nav-box{
    z-index:20;
    height:160px;
    width:150px;
    border:2px solid white;
    border-radius:10px;
    box-shadow: 0 0 20px 1px rgba(255, 255, 255, 0.247);
    position:fixed;
    background: rgba(61, 21, 73, 0.227);
    backdrop-filter: blur(10px);
    right:25px;
    top:60px;
    

}