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

body {
    font-family: 'Segoe UI', sans-serif;
    background-color: #f5f5f5;
    color: #222;
}

/* Hero Section */
.hero {
    display: flex;
    height: 100vh;
}
.hero-left img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
.hero-left {
    flex: 1;
}
.hero-right {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-right h1 {
    font-size: 2.5rem;
}
.hero-right span {
    color: #ff5722;
}
.role {
    font-size: 1.2rem;
    margin: 0.5rem 0;
    color: #666;
}
.btn {
    background: #ff5722;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    margin-top: 1rem;
}
.btn:hover {
    background: #e64a19;
}

/* Sections */
section {
    padding: 4rem 2rem;
    text-align: center;
}
section h2 {
    margin-bottom: 1rem;
    font-size: 2rem;
    color: #ff5722;
}
section p {
    max-width: 800px;
    margin: auto;
}

/* Projects */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 2rem;
}
.project-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}
.project-card:hover {
    transform: translateY(-5px);
}

/* Contact */
form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
}
form input, form textarea {
    margin: 10px 0;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
form button {
    border: none;
    cursor: pointer;
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 1rem;
    text-align: center;
    margin-top: 2rem;
}

/* Animation Fade-in */
section, .hero-right {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}
section.show, .hero-right.show {
    opacity: 1;
    transform: translateY(0);
}

