/* Reset & base styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
.about-container {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-photo {
    flex: 0 0 150px;
}

.about-photo img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 30%;
    border: 3px solid #0077b6;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.about-text {
    flex: 1;
    min-width: 250px;
}

@media (max-width: 600px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-photo {
        margin-bottom: 15px;
    }

    .about-text {
        text-align: center;
    }
}


body {
   background-image: url();
    background-repeat: no-repeat; 
    background-size: cover;
    background-blend-mode: darken;
    color: #333;
    line-height: 1.6;
    padding: 20px;
    align-items: right;
}

/* Header styling */
header.about {
    background-color: #ddf6f9;
    padding: 40px 20px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: center;
    
}

.name {
    font-size: 2.5rem;
    color: #0077b6;
    margin-bottom: 15px;
}

 .education{
    
   padding-right: 500px;

    margin-bottom: 30px;
    border-radius: 50px;
}
 .interest{
    
   padding-left: 540px;
    margin-bottom: 30px;
    border-radius: 50px;
}

 .Projects{
    
   padding-right: 1000px;
   padding-left: 50px;
    margin-bottom: 30px;
    border-radius: 50px;
    
    
}

/* Section headings */
h1 {
    color: #023e8a;
    margin-bottom: 10px;
    
}

h2 {
    color: #0096c7;
    margin-bottom: 15px;
}

/* Ordered list styling */
ol {
    list-style-position: inside;
    margin-top: 10px;
}

li {
    font-weight: bold;
    margin: 15px 0 5px 0;
}

/* Links */
a {
    color: #0077b6;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #023e8a;
    text-decoration: underline;
}

/* Responsive typography */
@media (max-width: 768px) {
    .name {
        font-size: 2rem;
    }

    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.2rem;
    }
}
.contact {
    background-color: #f0f4f8;
    padding: 40px 25px;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact h1 {
    color: #023e8a;
    margin-bottom: 10px;
}

.contact h2 {
    color: #0096c7;
    margin-bottom: 25px;
}

.contact form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.contact label {
    font-weight: bold;
    color: #333;
}

.contact input,
.contact textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #fff;
    transition: border 0.3s;
}

.contact input:focus,
.contact textarea:focus {
    border-color: #0077b6;
    outline: none;
}

.contact button {
    background-color: #0077b6;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact button:hover {
    background-color: #023e8a;
}

.last-text p{
    width: 100%;
    text-align: center;
    padding: 25px 0;
    background: #ddf6f9;
    font-weight: 300;
    margin-top:70px ;
}