
/* General reset and body styling */
body, h1, h2, h3, p, ul, li, a {
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f5f8fa;
    color: #333;
    line-height: 1.6;
}

/* Container styling */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero section */
.hero-section {
    background: linear-gradient(135deg, #004e92, #000428);
    color: #fff;
    text-align: center;
    padding: 20px 20px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 600;
}

.hero-section p {
    font-size: 18px;
    margin-top: 10px;
}



/* Section titles */
section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}


/* Projects section */
.projects-section {
    background-color: #f0f4f8;
    padding: 50px 0;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.project-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
    max-width: 400px; /* Prevent cards from becoming too wide on large screens */
}

.project-card:hover {
    transform: translateY(-5px);
}

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

.project-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #004e92;
    color: #fff;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.project-link:hover {
    background-color: #ff9800;
}

/* Media Queries */

/* For tablets and smaller screens (up to 768px) */
@media (max-width: 768px) {
    .projects-section {
        padding: 30px 0;
    }

    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));  /* Adjust card size */
    }

    .project-card h3 {
        font-size: 20px;
    }

    .project-link {
        padding: 8px 16px;
    }
}

/* For mobile screens (up to 480px) */
@media (max-width: 480px) {
    .projects-section {
        padding: 20px 0;
    }

    .projects-grid {
        grid-template-columns: 1fr;  /* Single column for very small screens */
    }

    .project-card h3 {
        font-size: 18px;
    }

    .project-link {
        padding: 6px 12px;
    }
}

/* Footer */
footer {
    background: linear-gradient(135deg, #2a5298, #6e7f94);
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.footer-content {
    font-size: 14px;
    }
                                  
