
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 2.0;
    color:#180101;
    background-color: #f9f9f9;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.navbar {
    display: flex;
    flex-direction: row;
    align-items:center;
    background-color: #1f2937;
    color: white;
    padding: 10px;
    padding-left: 350px;

}

.logo-circle {
    background-color: #2563eb;
    color: white;
    border-radius: 50%;
    padding: 25px 50px;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    margin-left: 120px;
}

.image{
  height: 180px;
  width: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #333;
  box-shadow: 0 0 15px rgba(0, 216, 255, 0.3);
}

.navbar h1 {
    text-align: center;
    font-size: 24px;
    margin: 10px 0 5px;
    padding-left: 100px;
}

.navbar p {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: middle;
    max-width: 600px;
    padding-left: 100px;
    margin-top: 10px;
}

.nav-link {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: right;
    margin-top: 0px;
    margin-right: 0px;
    padding-inline: 50px;
    margin-top: 0px;
    background-color: #1f2937;
    padding-right: 100px;
}

.nav-link a {
    color: #facc15;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-link a:hover {
    color: #ffffff;
}

.hero {
    padding: 60px 20px;
    text-align: center;
    background-color: #e0f2fe;
}

.hero h2 {
    font-size: 36px;
    color: #1d4ed8;
    margin-bottom: 20px;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 30px;
}

.btn {
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}
.resume-button{
    background-color: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    display: inline-block;
}

.btn:hover {
    background-color: #2563eb;
}

section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
}

section h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e40af;
}

#about p {
    text-align: center;
    font-size: 18px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.skills-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.skills-list li {
    background-color: #dbeafe;
    color: #1e3a8a;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
}

.project {
    background-color: #f3f4f6;
    padding: 20px;
    margin-bottom: 20px;
    border-left: 5px solid #2563eb;
}

.project h3 {
    color: #1d4ed8;
    margin-bottom: 10px;
}

.project p {
    font-size: 16px;
}

#contact a {
    color: #2563eb;
    font-weight: bold;
}

#contact p {
    text-align: center;
    margin: 10px 0;
}

footer {
    background-color: #1f2937;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 14px;
}

@media (max-width: 768px) {
    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .skills-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-link {
        flex-direction: column;
        gap: 10px;
    }
}



