body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #1e1e2f;
    color: #e0e0e0;
    overflow-x: hidden;
}

header {
    background: #2b2d42;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    margin: 0;
    padding-left: 30px;  /* Adjust this value as needed */
    text-align: left;
}

nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

nav h1 {
    margin: 0;
    color: #ffcc00;
}

nav h2 {
    padding-left: 30px;
    color: #e0e0e0;
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 20px 15px;
}

nav ul li a {
    color: #ffcc00;
    text-decoration: none;
    font-weight: 600;
}

nav ul li a:hover {
    text-decoration: underline;
}

.content-container {
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 50px;
    text-align: center;
}

.text-content {
    max-width: 50%;
}

.profile-img {
    width: 200px;
    border-radius: 50%;
    border: 3px solid #ffcc00;
}

.section-title {
    text-align: center;
    color: #ffcc00;
    margin-top: 50px;
}

.project-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 20px;
    padding: 20px;
}

.project {
    background: #2b2d42;
    border-radius: 10px;
    padding: 20px;
    text-align: left;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    margin: 50px;
}

.project:hover {
    transform: scale(1.03);
    transform-origin: center;
}

.project h2 {
    color: #ffcc00;
}

.project h3 {
    font-size: 90%;
    color: #fdf6f6;
}

.project p {
    line-height: 1.6;
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    background: #ffcc00;
    color: #1e1e2f;
    padding: 10px 15px;
    margin-top: 10px;
    font-weight: bold;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s;
}

.btn:hover {
    background: #e6b800;
}

h3 {
    padding: 20px;
}

a {
    color: #00aaff;
    text-decoration: none;
}

a:hover {
    color: #0488bc;
    text-decoration: underline;
}

a:active {
    color: #005577;
}

footer {
    text-align: center;
    padding: 20px;
    margin-top: 50px;
    background: #2b2d42;
}
