* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: url('/assets/img/bg.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #fff;
    line-height: 1.6;
}

header {
    background: rgba(25, 25, 25, 0.75);
    backdrop-filter: blur(10px);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #474346;
}

header h1 {
    font-size: 28px;
}

.list {
    margin-top: 15px;
    padding-left: 20px;
}

.list li {
    margin-bottom: 8px;
}

nav a {
    margin-left: 25px;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    max-width: 1200px;
    margin: 40px auto;
    flex: 1;
    padding: 0 20px;
}

.section {
    background: rgba(25, 25, 25, 0.55);
    backdrop-filter: blur(12px);
    border: 2px solid #474346;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

footer a {
    color: white;
}


ul li a {
    color: white;
}


p a {
    color: white;
}


.section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    border-bottom: 1px solid #555;
    padding-bottom: 5px;
}

.section p {
    font-size: 16px;
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 40px;
    background: #fff;
    color: #333;
    text-decoration: none;
    margin-top: 15px;
    transition: transform 0.2s, background 0.3s;
}

.btn:hover {
    transform: translateY(-2px);
    background: #f0f0f0;
}

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

.project-card {
    background: rgba(15, 15, 15, 0.75);
    border: 1px solid #474346;
    border-radius: 12px;
    padding: 20px;
}

.project-card h3 {
    margin-bottom: 10px;
}

footer {
    text-align: center;
    padding: 20px;
    background: rgba(25, 25, 25, 0.75);
    backdrop-filter: blur(10px);
    border-top: 2px solid #474346;
    font-size: 14px;
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        margin-top: 10px;
    }

    nav a {
        margin-left: 0;
        margin-right: 15px;
    }
}
