/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212;
    color: #ffffff;
}

/* Header */
header {
    background: #1e1e1e;
    padding: 20px;
    text-align: center;
}

header h1 {
    margin: 0;
    font-size: 2em;
    color: #00aaff;
}

/* Navigation */
nav {
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline-block;
    margin: 0 15px;
}

nav ul li a {
    color: #00aaff;
    text-decoration: none;
    font-weight: bold;
}

/* Responsive Navigation */
.menu-toggle {
    display: none;
    background-color: #00aaff;
    color: #121212;
    border: none;
    padding: 10px;
    font-size: 18px;
    cursor: pointer;
    width: 100%;
}

/* Mobile View */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #1e1e1e;
        text-align: center;
        padding: 10px 0;
    }

    nav ul li {
        display: block;
        padding: 10px;
        border-bottom: 1px solid #00aaff;
    }

    nav.active ul {
        display: flex;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 15px;
    background: #1e1e1e;
    color: #888888;
    margin-top: 20px;
}

footer p {
    margin: 0;
}

/* Sections */
section {
    padding: 10px;
    max-width: 950px;
    margin: auto;
    text-align: justify;
}

h2 {
    color: #00aaff;
    border-bottom: 2px solid #00aaff;
    padding-bottom: 5px;
}

/* Project Grid */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-card {
    background: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 170, 255, 0.2);
    transition: transform 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
}






/* About Section Styling */
.about-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    max-width: 950px;
    margin: auto;
    padding: 30px 20px;
    min-height: 180px;
}

/* Profile Photo Styling */
.profile-photo-container {
    flex: 0 0 200px; /* Set fixed width */
    margin-right: 30px; /* Add space between image and text */
    margin-top:70px;
}

.profile-photo {
    width: 150px;
    height: 150px;
    border-radius: 10px; /* Slightly rounded corners */
    object-fit: cover;
    border: 3px solid #007bff;
}

/* About Me Text */
.about-content {
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .profile-photo-container {
        margin-bottom: 20px;
    }

    .about-content {
        padding-left: 0;
        text-align: justify;
    }
}
a {
    color: #00aaff;
}
