body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    scroll-behavior: smooth;
}

.navbar {
    background: #1e1e2f;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.navbar ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar li {
    margin: 0 15px;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.navbar a:hover {
    color: #ffd700;
}

.hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to right, #667eea, #764ba2);
    color: white;
}

.hero img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-links a {
    margin: 0 10px;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    border: 1px solid white;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.3s;
}

.social-links a:hover {
    background: white;
    color: #764ba2;
}

.section {
    padding: 60px 20px;
    text-align: center;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #444;
}

.skills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.skill {
    background-color: #ffd700;
    color: #1e1e2f;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: transform 0.3s;
}

.skill:hover {
    transform: scale(1.1);
}

.project-card {
    background-color: white;
    padding: 20px;
    margin: 15px auto;
    max-width: 500px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}

.project-card a {
    display: inline-block;
    margin-top: 10px;
    background: #764ba2;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s;
}

.project-card a:hover {
    background: #5a3e91;
}

/* Contact Section with Icons */
.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.contact-info img.icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.contact-info p {
    margin: 0;
}

.contact-info a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #764ba2;
}

.section_text_p1 {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 10px;
}

footer {
    background-color: #1e1e2f;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

footer nav {
    margin-bottom: 15px;
}

.links-container {
    display: flex;
    justify-content: center;
}

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

.nav-links li a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    transition: color 0.3s;
}

.nav-links li a:hover {
    color: #ffd700;
}