h3 {
    color: #CCD6F6;
    margin-bottom: 1rem;
    font-size: 2rem;
}

p{
    transition: transform 0.3s ease;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin: 0.5rem 0;
}

#about {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.bold-text {
    color: #8892B0;
    font-weight: bold;
}

.highlight {
    color: #64FFDA;
    font-weight: bold;
}

.tech-list {
    list-style-type: none;
    padding-left: 0;
}

.tech-item {
    position: relative;
    font-size: 1rem;
    margin: 0.5rem 0;
    opacity: 0;
    transform: translateX(-100px);
    animation: slideIn 0.8s ease forwards;
    padding-left: 30px;
    transition: opacity 1s ease, transform 1s ease;
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.tech-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid #64FFDA;
    background-color: #0A192F;
}

#about {
    min-height: calc(100vh - 120px); /* accounts for header + scroll padding */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 3rem 5rem 2rem 5rem;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}


.about-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;

}

.about-text {
    flex: 1;
}

.about-image {
    width: 300px; /* You can adjust the size of the circle */
    height: 300px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 2rem; /* Space between the text and image */
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fits the circle container */
}