body, header, .card, input, textarea, nav ul li a {
    transition: all 0.3s ease;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
}

header {
    background: #000;
    color: #6ff;
    padding: 1rem 0;
}

nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.section {
    padding: 60px 20px;
    text-align: center;
}

.home {
    background: #f4f4f4;
}

.home span {
    color: #6FF;
}

button {
    padding: 10px 20px;
    border: none;
    background: #007BFF;
    color: white;
    cursor: pointer;
    margin-top: 10px;
}

button:hover {
    background: #0056b3;
}

.project-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.card {
    background: #eee;
    padding: 20px;
    width: 250px;
    border-radius: 10px;
}

form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
}

input, textarea {
    margin: 10px 0;
    padding: 10px;
}

footer {
    background: #373;
    color: white;
    padding: 10px;
    text-align: center;
}
/* */

body {
    background: white;
    color: black;
    transition: 0.3s;
}

.dark-mode {
    background: #121212;
    color: white;
}

.dark-mode header {
    background: #1e1e1e;
}

.dark-mode nav a {
    color: white;
}

.dark-mode .card {
    background: #222;
    color: white;
}

.dark-mode footer {
    background: #1e1e1e;
    color: white;
}

/* Home Section */
.home {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 60px 10%;
}

.home-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    max-width: 1100px;
}

.home-image img {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid #4CAF50;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.home-content {
    flex: 1;
}

.home-content h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.home-content h1 span {
    color: #4CAF50;
}

.home-content p {
    font-size: 1.3rem;
    color: #555;
}

/* Responsive Design */
@media (max-width: 768px) {
    .home-container {
        flex-direction: column;
        text-align: center;
    }

    .home-image img {
        width: 220px;
        height: 220px;
    }

    .home-content h1 {
        font-size: 2.2rem;
    }
}
/* Contact Section */
.social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-block;
    width: 250px;
    text-align: center;
    text-decoration: none;
    color: white;
    background: #4CAF50;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    background: #388E3C;
    transform: translateY(-3px);
}