body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: white;
    color:white;
    text-align: center;
    
}

header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
background: white;
color: black;
}

.logo {
display: flex;
align-items: center;
}

.logo img {
width: 70px;
height: 70px;
border-radius: 50%;
margin-right: 10px;
}

nav ul {
list-style: none;
display: flex;
}

nav ul li {
margin: 0 15px;
}

nav ul li a {
text-decoration: none;
color: black;
font-weight: bold;
}

.hero {
padding: 100px 20px;
background: linear-gradient(to right, #1d74b8, #1263a1);
}

.hero h2 {
font-size: 36px;
color:white;
}

.hero p {
font-size: 18px;
max-width: 600px;
margin: 0 auto;
}

.button {
display: inline-block;
background: white;
color: black;
padding: 10px 20px;
margin-top: 20px;
font-size: 16px;
text-decoration: none;
font-weight: bold;
border-radius: 5px;
}

.social-icons {
position: absolute;
left: 10px;
top: 50%;
transform: translateY(-50%);
width: 30px;
}

.social-icons a {
display: block;
margin: 10px 0;

}

.social-icons img {
width: 30px;
height: 30px;
}
.container{
color:black;
}


.logo {
font-weight: bold;
font-size: 24px;
}

nav ul {
list-style: none;
display: flex;
gap: 20px;
margin: 0;
padding: 0;
}

nav a {
text-decoration: none;
color: black;
font-weight: bold;
}

.projects {
padding: 50px;
color:black;
}

.projects h2 {
font-size: 28px;
margin-bottom: 10px;
}

.project {
display: flex;
align-items: center;
justify-content: center;
margin: 30px 0;
gap: 20px;
}

.project img {
width: 300px;
height: auto;
}

.project-info {
text-align: left;
max-width: 400px;
}

.project-info h3 {
margin-bottom: 10px;
}

button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-weight: bold;
}
.about {
padding: 50px;
color:black;
}

.about h2 {
font-size: 28px;
margin-bottom: 10px;
}

.about-content {
display: flex;
justify-content: center;
align-items: flex-start;
gap: 50px;
max-width: 900px;
margin: auto;
text-align: left;
}

.about-text {
max-width: 400px;
}

.skills {
max-width: 300px;
}

.skill-tags {
display: flex;
flex-wrap: wrap;
gap: 10px;
}

.skill-tags span {
background-color: #e0e0e0;
padding: 5px 10px;
border-radius: 5px;
font-size: 14px;
}

button {
background-color: #007bff;
color: white;
border: none;
padding: 10px 15px;
cursor: pointer;
font-weight: bold;
margin-top: 10px;
}
.contain{
background-color: #007bff;
}
    .contact-container {
        
        background: lightgrey;
        padding: 20px;
        width: 600px;
        border-radius: 10px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
        justify-content: center;
        margin: auto;
        
        
        

    }

    /* Title */
    h2 {
        text-align: center;
        color: #222;
        margin-bottom: 15px;
    }

    /* Input fields */
    .form-group {
        margin-bottom: 15px;
        padding: 20px;
        color:black;
    }

    label {
        font-weight: bold;
        display: block;
        margin-bottom: 5px;
    }

    input, textarea {
        width: 100%;
        padding: 10px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
    }

    textarea {
        height: 100px;
        resize: none;
        
    }

    .submit-btn {
        width: 100%;
        padding: 10px;
        background: #0052D4;
        color: white;
        border: none;
        border-radius: 5px;
        cursor: pointer;
        font-size: 18px;
        transition: 0.3s;
    }

    .submit-btn:hover {
        background: #003C99;
    }