/* General Styles */
* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", sans-serif;
    box-sizing: border-box;
}

body {
    background-color: black;
    color: white;
}

section {
    width: 100%;
    padding: 40px 20px;
    position: relative;
}

.aboutme {
    overflow: hidden;
    color: white;
    font-size: 2.0rem;
    text-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;
    text-align: center;
    margin: 30px 0;
}

/* Skills Section */
.skills {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0;
}

.skill {
    text-align: center;
    position: relative;
}

.circle {
    position: relative;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #4db8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.circle-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip: rect(0, 100px, 100px, 50px);
    background: white;
}

.circle-mask {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    clip: rect(0, 100px, 100px, 50px);
    background: #4db8ff;
    transform: rotate(0deg);
    transform-origin: center;
}

.circle-text {
    position: relative;
    font-size: 1.2em;
    color: #333;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-around;
    height: 100px;
    align-items: center;
}

ul {
    display: flex;
    justify-content: center;
}

ul li {
    list-style: none;
    margin: 0 40px;
    transition: 0.3s;
}

ul li a {
    text-decoration: none;
    color: white;
    font-size: 1.3rem;
    transition: 0.3s;
}

ul li a:hover,
ul li:hover {
    color: white;
    text-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;
    transform: scale(1.5);
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    padding: 3.5px 3px;
    border: 2px solid #2ca4bf;
    border-radius: 90%;
    box-shadow: 0 0 10px #2ca4bf;
    margin-top: 120px;
}

/* Buttons */
.button1,
.button2 {
    color: white;
    font-size: 1.2rem;
    border-radius: 2px;
    transition: 0.3s;
}

.button1 {
    padding: 10px 20px;
    background-color: #111111;
    border: 1px solid #2ca4bf;
    box-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;
}

.button1:hover {
    transform: scale(1.1);
    border-color: white;
}

.button2 {
    background: transparent;
    padding: 10px 30px;
    margin: 20px 0;
    border: 2px solid #2ca4bf;
    border-radius: 20px;
}

.button2:hover {
    transform: scale(1.1);
    border-color: white;
    box-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;
}

/* Social Icons */
.social a {
    width: 35px;
    height: 35px;
    color: white;
    font-size: 30px;
    text-decoration: none;
    display: inline-flex;
    cursor: pointer;
    align-items: center;
    margin-top: 20px;
    margin-right: 30px;
}

.social a:hover {
    text-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;
}

/* Left Section */
.left {
    margin: 10%;
    display: inline-block;
}

.text3 {
    width: 40%;
    font-weight: 300;
}

h5 {
    font-weight: 300;
}

.text2 {
    font-size: 1.5rem;
    font-weight: 700;
}

.about-text {
    font-size: 1.4rem;
    font-weight: 400;
}

.typer {
    overflow: hidden;
    color: white;
    font-size: 2.6rem;
    text-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;
}

h6 {
    margin-top: 10px;
}

/* Media Queries */
@media(max-width:760px) {
    nav {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    ul {
        flex-direction: column;
        align-items: center;
        margin: 50px 0;
    }

    nav ul li {
        margin: 10px 0;
    }

    .left {
        width: 100%;
        margin: 0 10%;
        margin-top: 10px;
    }

    .logo {
        margin-top: 10px;
    }

    .text2 {
        font-size: 0.7rem;
    }

    .text3 {
        width: 70%;
    }

    .typer {
        font-size: 1rem;
    }

    .button1,
    .button2 {
        font-size: 0.9rem;
        padding: 5px 15px;
    }

    .social {
        font-size: 10px;
    }
}

/* Timeline Section */
#timeline {
    padding: 20px;
}

.timeline {
    position: relative;
    padding: 20px 0;
    list-style: none;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    width: 30px;
    height: 30px;
    background-color: #4dff74;
    color: rgb(226, 21, 21);
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-size: 16px;
    transform: translateX(-50%);
}

.timeline-content {
    margin-left: 60px;
    padding: 10px 20px;
    border-left: 3px solid #63aada;
    position: relative;
    background: black;
    border-radius: 5px;
}

.timeline-content:before {
    content: '';
    position: absolute;
    left: -7px;
    top: 15px;
    width: 14px;
    height: 14px;
    background: #4db8ff;
    border-radius: 50%;
}

.timeline-date {
    display: block;
    margin-top: 10px;
    font-size: 20px;
    color: #666;
}

/* Projects Section */
#projects {
    padding: 40px 20px;
    background-color: black;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
}

.project-box {
    background: #4db8ff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    transition: transform 0.3s ease;
}

.project-box:hover {
    transform: scale(1.05);
}

.project-box img {
    width: 100%;
    height: 300px;
    display: block;
}

.project-info {
    padding: 15px;
    text-align: center;
}

.project-info h3 {
    margin: 10px 0;
    font-size: 1.25rem;
    color: #111111;
}

.project-info p {
    color: #111111;
}

.project-button {
    background: transparent;
    padding: 10px 30px;
    margin: 20px 0;
    border: 2px solid #121213;
    border-radius: 20px;
    font-size: 1rem;
    color: #121213;
    text-decoration: none;

}

.project-button:hover {
    background-color: #121213;
    color: #ffffff;
    border: 2px solid #ffffff;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.7);
}

/* Sidebar Icons */
.sidebar-icons {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 10px;
}

.sidebar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    color: white;
    text-decoration: none;
    border: 2px solid #2ca4bf;
    /* Border color */
    border-radius: 50%;
    /* Round border */
    background-color: #121213;
    /* Background color */
    transition: all 0.3s ease;
    margin-bottom: 5px;
}

.sidebar-icon:hover {
    padding: 10px 20px;
    background: transparent;
    border: 1px solid #2ca4bf;
    box-shadow: 0 0 10px #2ca4bf, 0 0 20px #2ca4bf, 0 0 30px #2ca4bf;

}

.start {
    background-image: url("Background.jpg");
    /* Path to your image */
    background-repeat: no-repeat;
    /* Prevent repeating the image */
    background-size: cover;
    /* Ensure the image covers the entire element */

}