
/* styles.css */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    color: #fff;
    text-align: center;
}
.hero-section {
    padding: 50px 20px;
    animation: fadeIn 1.5s ease-in-out;
}
.highlight {
    color: #ffcc00;
}
.subtitle {
    font-size: 1.2em;
    margin-top: 10px;
    opacity: 0.9;
}
.cta-buttons {
    margin-top: 20px;
}
.btn {
    background: #ffcc00;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    color: #222;
    font-weight: bold;
    transition: 0.3s;
}
.btn.secondary {
    background: #0073e6;
    color: #fff;
}
.btn:hover {
    transform: scale(1.1);
}
.container {
    padding: 40px 20px;
}
.section-title {
    font-size: 2em;
    margin-bottom: 20px;
}
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}
.project-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    transition: 0.3s;
}
.project-card:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.2);
}
footer {
    margin-top: 50px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
}
footer a {
    color: #ffcc00;
    text-decoration: none;
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}