body{
    margin: 0;
    padding: 0;
    display: block;
    justify-content: center;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}
.slide_1, .aboutMe_slide, .slide_2, .slide_3, .slide_4 {
    width: 100vw; /* Ensure sections take full viewport width */
    overflow: hidden; /* Prevent overflow */
    
}
/* navigation bar container */
.navbar{
    margin: 0px;
    display: flex;
    padding-left: 10px;
    padding-top: 10px;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: fixed;
    z-index: 2;
    background: rgba(255, 255, 255, 0.15); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blurred glass effect */
    -webkit-backdrop-filter: blur(10px); /* Safari support */
}

/* topic name styles */
.topic_name{
    color: #66fcf1;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    margin-top: 10px;
    font-family: "Montserrat";
    padding-left: 10px;
}
.close-btn{
    display: none;
    margin: 0;
    padding-right: 5px;
    height: 30px;
}
.list {
    list-style-type: none;
    margin: 0;
    padding: 0 20px 0 0;
    display: flex;
    align-items: right;
    justify-content: right;
}

.list li {
    margin-top: -10px;
    margin-right: 30px;
}

.list li:last-child {
    margin-right: 10px;
}

.list li a {
    color: aliceblue;
    text-decoration: none;
    font-size: 20px;
    font-weight: bolder;
    font-family: "Montserrat";
}

.list li a:hover {
    color: #66fcf1;
    padding: 8px;
    border-radius: 10px;
}

.menu-icon{
    margin: 0;
    padding-right: 25px;
    height: 30px;
    display: none;
}

/* ------------------------------------------------------------------------ navigation bar css*/

/* home page  */
.slide_1{
    height: 100vh;
    align-items: flex-start;
    display: flex;
    /* background-color: #021122; */
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), url(../images/background1.jpg);
    background-size: cover;
}

/* home page left side */
.homepage-leftside{
    display: flex;
    width: 65%;
    align-items: center;
    justify-content: center;
    height: 90vh;
}
.leftside-content {
    display: flex;
    align-items: left;
    justify-content: center;
    text-align: left;
    color: aliceblue;
    font-family: "Quicksand";
    flex-direction: column;
    margin: 0;
    padding-left: 0;
}
.leftside-content h4{
    margin: 0;
    padding: 0;
    font-size: 40px;
    color: aliceblue;
    font-family: "Josefin Sans", sans-serif;
    line-height: 1.2;
    margin-bottom: 10px;
}

#intro {
    margin: 0;
    padding: 0;
    font-size: 70px;
    line-height: 1.2;
    color: aliceblue;
    margin-bottom: 10px;
    font-family: "Josefin Sans", sans-serif;
    width: 650px;
}

.typing::after {
    content: "|"; 
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% {
        opacity: 0;
    }
}

.leftside-links{
    padding-left: 10px;
}

.about_me-container{
    margin: 0px;
    padding-top: 10px;
}

.about_me-container i{
    font-size: 15px;
    padding-left: 10px;
}
.about_me-button{
    background-color: transparent;
    color: #66fcf1;
    padding: 10px 20px 10px 20px;
    font-family: "Quicksand", sans-serif;
    border: 3px solid #66fcf1;
    border-radius: 10px;
    font-size: 20px;
    text-decoration: none;
    
}

.about_me-button:hover{
    color: #ffffff;
}

.github{
    margin-bottom: 5px;
    display: flex;
}
.github p {
    margin: 0; 
    color: aliceblue; /* Text color */
    font-size: 3cqb; /* Adjust font size if needed */
    padding-left: 10px;
    font-family: "Quicksand", sans-serif;

}
.github i{
    padding: 0;
    margin: 0;
}

.linkdin{
    margin-bottom: 10px;
    display: flex;
}
.linkdin p {
    font-family: "Quicksand", sans-serif;
    margin: 0; 
    color: aliceblue; /* Text color */
    font-size: 3cqb; /* Adjust font size if needed */
    padding-left: 10px;
}

/* home page right side area */

.profile-picture-area{
    display: flex;
    width: 50%;
    align-items: center;
    justify-content: center;
    height: 100vh;
}
.image-box {
    position: relative;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;;
    overflow: hidden;
    width: 500px; 
    height: 500px; 
    border-radius: 50%;
    max-width: 100%;
    padding: 5px;
    /* box-shadow:  0 0 10px 10px rgba(255, 255, 255, 0.5); */
}

.rotating-border {
    position: absolute;
    width: 900%;
    height: 80%;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        #00fffc,
        #1f1d1f,
        #1f1d1f,
        #00fffc
    );
    animation: rotateBorder 6s linear infinite;
    z-index: 1;
}

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

.image-item{
    position: relative;
    width: 95%;
    height: 95%;
    border-radius: 50%;
    overflow: hidden;
    background: black;
    z-index: 1;
}


.image-item img{
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    max-width: 100%;
    z-index: 1;
}

.list li a.active {
    color: #66fcf1; 
    text-decoration: underline;
}