* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f4f4f4;
    color: #222;
    line-height: 1.6;
}

header.hero {
    text-align: center;
    padding: 50px 20px;
    background: #0a0a0a;
    color: white;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 4px solid #ffffffbb;
}

.hero h1 {
    font-size: 2.5rem;
}

.role {
    font-size: 1.1rem;
    margin: 10px 0 20px;
    opacity: 0.8;
}

.hero-buttons .btn,
.hero-buttons .btn-outline {
    display: inline-block;
    margin: 5px;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
}

.btn {
    background: #ff914d;
    color: white;
}

.btn-outline {
    border: 2px solid #ff914d;
    color: #ff914d;
}

.section {
    padding: 50px 20px;
    max-width: 900px;
    margin: auto;
}

.section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.skills-grid,
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
}

.skill-card,
.project-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0001;
    text-align: center;
    transition: 0.3s;
}

.skill-card:hover,
.project-card:hover {
    transform: translateY(-5px);
}

.exp-item {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px #0001;
    margin-bottom: 20px;
}

.exp-date {
    font-size: 0.9rem;
    color: #ff914d;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border-radius: 10px;
    border: 1px solid #ccc;
}

.contact-form button {
    width: 100%;
    border: none;
    padding: 12px;
    background: #ff914d;
    color: white;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.1rem;
}

footer {
    text-align: center;
    padding: 20px;
    background: #0a0a0a;
    color: white;
    margin-top: 40px;
}
