
* {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    background: #f4f4f4;
    color: #333;
    padding: 20px;
}

.navbar {
    background-color: #1f1f1f;
    color: white;
    padding: 15px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #444;
    border-radius: 10px;
}

.navbar-logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.navbar-links {
    list-style: none;
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.navbar-links li a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar-links li a:hover {
    color: #00bcd4;
}

header {
    background: #282c34;
    color: white;
    padding: 40px;
    border-radius: 10px;
    margin-top: 30px;
    
}

.header-container {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 10px;
    
}

.profile-img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.header-text {
    flex: 1;
}

.header-text h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.header-text p {
    font-size: 1.3rem;
    color: #ccc;
}


header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

#about {
    padding: 40px;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

#about h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.about-content p {
    font-size: 1.2rem;
    max-width: 1000px;
    margin: auto;
    line-height: 1.6;
}

#skills {
    padding: 40px;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

#skills h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.skills-list {
    list-style: none;
    padding: 0;
}

.skills-list li {
    font-size: 1.2rem;
    margin: 10px 0;
}

#experience {
    padding: 40px;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

#experience h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.experience-list p {
    font-size: 1.2rem;
    margin: 10px 0;
}

#contact {
    padding: 60px 40px;
    background: #1e1e1e;
    color: white;
    border-radius: 10px;
    margin-top: 40px;
   
}

#contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: whitesmoke;
}

.contact-form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    background: #2c2c2c;
    color: white;
    resize: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #eed7d7;
}

.contact-form button {
    padding: 12px;
    font-size: 1.1rem;
    background-color: #00bcd4;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-form button:hover {
    background-color: #0097a7;
}

#social {
    padding: 40px;
    background-color: #1e1e1e;
    color: white;
    text-align: center;
    border-radius: 10px;
    margin-top: 40px;
}

#social h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: whitesmoke;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.social-links a {
    color: #00bcd4;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0097a7;
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 14px;
    color: #777;
}
h2{
    color: rgb(0, 229, 255);
}
h1{
    color: rgb(0, 229, 255);
}