
            body {
                /* background-color: rgba(15, 243, 53, 0.358); */
                font-family: Arial, sans-serif;
            }
            h1 {
                color: #007bff;
                text-align: left;
            }
            img {
            
                border: #37269a solid 5px;
                border-radius: 50%;
                display: block;
                margin-left: 50%;
                
            }
            .about-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
}

/* About text */
.about-text {
    width: 60%;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

/* Profile image */
.about-image {
    width: 40%;
    text-align: center;
}

.about-image img {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #042bf2;
   
    
}
.about-image img {
    transition: all 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 5px 20px 100px rgba(246, 5, 5, 0.4);
}

/* 📱 Mobile responsive */
@media (max-width: 768px) {
    .about-section {
        flex-direction: column;
        text-align: center;
    }

    .about-text,
    .about-image {
        width: 100%;
    }
}
html {
    scroll-behavior: smooth;
}
.top-bar {
    background-color: #707680;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between; /* LEFT + RIGHT */
    align-items: center;
 
}
.social-links a {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    
}
.home-links a {
    margin-right: 15px;
    text-decoration: none;
    color: #333;
    font-weight: bold;
    
}     
.top-bar a {
    display: inline-block;
    padding: 8px 12px;
    border-radius: 6px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    color: rgb(5, 17, 11);
}

.top-bar a:hover {
    box-shadow: 0 8px 20px rgba(251, 1, 1, 0.94);
    transform: translateY(-3px);
    color:rgb(135, 36, 36);

}