
/* General Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #121212;
    color: #fff;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Hero Section */
#hero {
    background: #1a1a1a;
    text-align: center;
    padding: 50px 0;
}

#hero h1 {
    font-size: 3rem;
}

#hero p {
    font-size: 1.2rem;
    margin: 10px 0 20px;
}

#hero .btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
}

/* Section Styles */
section {
    padding: 50px 0;
    text-align: center;
}

/* Portfolio Section */
#portfolio .grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

#portfolio .card {
    background: #1a1a1a;
    padding: 20px;
    border-radius: 5px;
}

/* Contact Section */
.socials a {
    color: #007bff;
    margin: 0 10px;
    text-decoration: none;
}

/* Profile Picture */
.profile-picture {
    text-align: center;
    margin-bottom: 20px;
}

.profile-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 5px solid #007bff;
}

/* Project Images */
.project-img {
    width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 10px;
}

/* Hover Effects for Portfolio Cards */
#portfolio .card:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Contact Icons */
.socials a {
    display: inline-block;
    margin: 0 10px;
    font-size: 1.5rem;
    color: #007bff;
    transition: color 0.3s ease;
}

.socials a:hover {
    color: #0056b3;
}
