.hide-scroll::-webkit-scrollbar {
    background-color: transparent;
    width: 0;
}
/* body overflow */
body{
    overflow-x:hidden;
    margin : 0%;
    padding: 0%;
}

 /* Two component distribution */
.side-panel{
    position: fixed;
}

.main-screen{
    position: inherit;
    z-index:1;
    margin-right: 0;
    margin-left: auto;
    height: 100vh;
}

/* first Section Intro */
.first_section{
    background-image: url('../assets/cover.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding-top: 15vh;
    padding-bottom: 15vh;

}

.first_header{
    font-size: 3rem;
    font-family: "Raleway", sans-serif;
}

.dynamic_text{
    color: rgb(111, 58, 196)
}

.download_btn{
    font-size: 1.5rem
}

/* Second and Third Section project */
.bg_for_rest{
    background-image: url('../assets/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
}
.common_section{
    padding-top: 5vh;
    padding-left: 13vw;
    padding-right: 13vw;
    font-family: "Kode Mono", monospace;
}

.common_section .card{
    transition: transform 0.3s ease; /* Smooth transition for the tilt effect */
    font-family: "Raleway", sans-serif;
}
.common_section .card:hover{
    transform: scale(0.95) rotate(0.1deg); /* Scale down and rotate the card when hovered */
}

/* card-width */
.card_width{
    width: 70vw;
}

/* Fourth Section Timeline */
.fourth_section{
    padding-top: 5vh;
    font-family: "Kode Mono", monospace;
}

/* timeline css vertical line*/
ul.timeline {
    list-style-type: none;
    position: relative;
    font-family: "Raleway", sans-serif;
}
ul.timeline:before {
    content: ' ';
    background: #d4d9df;
    display: inline-block;
    position: absolute;
    left: 29px;
    width: 2px;
    height: 100%;
    z-index: 400;
}
ul.timeline > li {
    margin: 20px 0;
    padding-left: 20px;
}
ul.timeline > li:before {
    content: ' ';
    background: white;
    display: inline-block;
    position: absolute;
    border-radius: 50%;
    border: 3px solid #22c0e8;
    left: 20px;
    width: 20px;
    height: 20px;
    z-index: 400;
}

.timeline-content{
    font-size: medium;
    font-weight: 400;
}

.timeline-head{
    font-size: large;
    font-weight: 600;
}

.timeline-content .float-end{
    font-size: medium;
    font-weight: 700;
}
/* fifth section */
.fifth_section{
    font-family: "Kode Mono", monospace;
}

.fifth_section .card{
    font-family: "Raleway", sans-serif;
}

/* On scroll */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease;
}

.fade-in.show {
    opacity: 1;
}

/* Sidepanel Icons */
.side_panel_icons{
    height: 50px;
    width: 50px;
}

/* Link Icon */
.link_icons{
        height: 40px;
        width: 40px;
}

/* @media screen and (max-width: 768px) {
    .common_section {
    padding-top: 5vh;
    padding-left: 13vw;
    }
} */