body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #333;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding: 20px 0;
}

header {
    background-color: #004466;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header .btn-link {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 15px;
    background-color: #0099cc;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

.projects h2 {
    text-align: center;
    margin-top: 20px;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.project-item {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
}

.project-item:hover {
    transform: translateY(-5px);
}

.project-item h3 {
    margin-top: 0;
    font-size: 1.3rem;
}

.project-item p {
    font-size: 1rem;
    line-height: 1.5;
}

.project-item .btn-link {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #006699;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.project-item .btn-link:hover {
    background-color: #005580;
}

footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px 0;
    margin-top: 40px;
}

footer a {
    color: #00ccff;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* === Design Deploy Defend Styling === */
.trio-text {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 10px;
}

.design {
    color: #004aad !important; /* Blue */
}

.deploy {
    color: #ff7f00 !important; /* Orange */
    margin-left: 10px;
}

.defend {
    color: #666666 !important; /* Grey */
    margin-left: 10px;
}
