/*General Styles*/
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f4f4f9;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
h2, h3 {
    color: #004080;
    margin-bottom: 20px;
}
h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-top: 40px;
    font-weight: 700;
    animation: fadeIn 1.5s ease-in-out;
}
h3 {
    font-size: 1.8rem;
    margin-top: 30px;
    font-weight: 600;
    animation: fadeIn 1.5s ease-in-out;
}
p {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
    animation: slideIn 1s ease-in-out;
}
.card .intro-text {
    font-size: 1.2rem;
    text-align: left;
    margin: 1vh 10vw;
    margin-bottom: 40px;
    animation: slideIn 1s ease-in-out;
}
.projects-list {
    list-style-type: disc;
    margin-left: 20px;
}
.projects-list li {
    margin-bottom: 10px;
    color: #555;
}
/* Grid Layout */
.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}
.card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideIn 1s ease-in-out;
}
.card p{
    margin: 0 1vw;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.full-width {
    grid-column: 1 / -1;
}
/* Special Cards */
.mission-card {
    background: linear-gradient(135deg, #004080, #0066cc);
    color: white;
    text-align: center;
}
.mission-card h3, .mission-card p {
    color: white;
}
.join-us-card {
    background: linear-gradient(135deg, #ff6f61, #ff3b2f);
    color: white;
    text-align: center;
}
.contact-us-card {
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
    text-align: center;
}
.join-us-card h3, .join-us-card p , .contact-us-card h3, .contact-us-card p {
    color: white;
}
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 30px;
    background: white;
    color: #ff3b2f;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}
.cta-button:hover {
    border: 1px solid white;
    background: linear-gradient(135deg, #ff6f61, #ff3b2f);
    color: white;
}
.mission-card .cta-button{
    color: #0066cc;
}
.mission-card .cta-button:hover{
    background: linear-gradient(135deg, #004080, #0066cc);
    color: white;
}
.contact-us-card .cta-button{
    color: #9b59b6;
}
.contact-us-card .cta-button:hover{
    background: linear-gradient(90deg, #3498db, #9b59b6);
    color: white;
}
strong:hover{
    color: #004080;
}
.signature-projects h3{
    color: #f3a30b;
}
.signature-projects strong:hover{
    color: #f3a30b;
}
.signature-projects{
    color: white;
    background: linear-gradient(90deg, #555, #7a6b50);
}
.signature-projects li, .signature-projects p{
    color: white;
}
/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
   }
    to {
        opacity: 1;
   }
}
@keyframes slideIn {
    from {
        transform: translateY(20px);
        opacity: 0;
   }
    to {
        transform: translateY(0);
        opacity: 1;
   }
}
/* Responsive Design */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
   }
    h3 {
        font-size: 1.5rem;
   }
    p {
        font-size: 1rem;
   }
    .container {
        padding: 10px;
   }
    .grid-container {
        grid-template-columns: 1fr;
   }
   .full-width p{
    margin: 1vh 1vw;
    text-align: left;
    }
    .full-width h2{
        text-align: left;
        margin-bottom: 2px;
    }
}
