body.projects-page {
    font-family: "Poppins", Arial, sans-serif;
    background: linear-gradient(180deg, #0320a3, #010a34);
    color: #fff;
    height: 100vh;
    margin: 0;
    overflow: hidden;
}

/* center everything */
.projects-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

/* icon animation */
.construction-icon {
    font-size: 70px;
    animation: bounce 1.8s infinite;
    margin-bottom: 20px;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* title */
.projects-container h1 {
    font-size: 34px;
    margin-bottom: 10px;
}

/* text */
.projects-container p {
    font-size: 16px;
    opacity: 0.85;
    max-width: 400px;
    margin-bottom: 25px;
}

/* nav */
.projects-nav {
    display: flex;
    gap: 20px;
}

.projects-nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 8px;
    transition: 0.3s;
}

.projects-nav a:hover {
    background: #fff;
    color: #010a34;
}