/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(120deg, #0d1117, #161b22);
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
}

/* Header */
header {
    background: #0d1117;
    padding: 20px 0;
}

header ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 30px;
}

header ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
}

header ul li a:hover {
    color: #ffcc00;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 100px 20px;
}

#hero .typewriter {
    font-family: 'Fira Code', monospace;
    font-size: 2.5rem;
    color: #ffcc00;
    margin-bottom: 20px;
}

#hero .subtitle {
    font-size: 1.2rem;
    color: #ffffff;
}

.cta-button {
    background: #ffcc00;
    color: #0d1117;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.cta-button:hover {
    background: #ffaa00;
}

/* Section Styles */
section {
    padding: 60px 20px;
    text-align: center;
}

section .section-content {
    max-width: 800px;
    margin: 0 auto;
}

/* Skills */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px;
}

.skill-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px;
    background: #222;
    border: 1px solid #444;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.skill-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 10px;
}

.skill-card h3 {
    color: #fff;
    font-size: 18px;
    font-family: 'Courier New', Courier, monospace;
}

.skill-card:hover {
    transform: scale(1.05);
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #0d1117;
    color: #ffffff;
}

/* Hero Section Styles */
#hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #121212, #1e1e1e);
    color: #fff;
}

#hero .typewriter {
    font-family: 'Courier New', Courier, monospace;
    font-size: 2rem;
    margin-bottom: 10px;
}

#hero .subtitle {
    font-size: 1.2rem;
    color: #aaa;
    margin-bottom: 20px;
}

.hero-image {
    margin: 20px auto;
    max-width: 150px;
    border-radius: 50%;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    border: 3px solid #4caf50;
    border-radius: 50%;
}

/* Button */
.cta-button {
    padding: 10px 20px;
    background-color: #4caf50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #45a049;
}

/* Contact Section */
#contact {
    text-align: center;
    padding: 50px 20px;
    background: #f9f9f9;
    color: #333;
}

.social-media {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    font-family: 'Courier New', Courier, monospace;
    font-size: 1rem;
    transition: color 0.3s;
}

.social-icon img {
    width: 24px;
    height: 24px;
    margin-right: 8px;
}

.social-icon:hover {
    color: #4caf50;
}


#education,
#interests {
    padding: 50px 20px;
    background: #1e1e2f;
    color: #fff;
    font-family: 'Courier New', Courier, monospace;
    margin: 20px auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.section-content h2 {
    text-align: center;
    font-size: 28px;
    color: #ff6f61;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.section-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.section-content ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.section-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ff6f61;
    font-size: 20px;
    line-height: 1;
}

.cta-button {
    display: inline-block;
    text-decoration: none;
    padding: 10px 20px;
    background: #ff6f61;
    color: #fff;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s;
    text-align: center;
}

.cta-button:hover {
    background: #ff3d34;
}