.welcome p {
    font-size: 18px;
}

#team-content p {
    font-size: 17px;
}



.new-careers {
    /* padding: 80px 20px; */
    color: #111827;
}

.new-careers-container {
    max-width: 1100px;
    margin: 0 auto;
}

.new-careers-header {
    text-align: center;
    margin-bottom: 60px;
}

.new-careers-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1f2937;
}

.new-careers-header p {
    color: #6b7280;
    font-size: 1.1rem;
}

/* === GRID UPDATED HERE === */
.new-careers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for desktop */
    gap: 25px;
    margin-bottom: 50px;
}

.new-careers-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.new-careers-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.new-careers-job-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.new-careers-location {
    font-size: 0.9rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 5px;
}

.new-careers-footer {
    background: #111827;
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-top: 40px;
}

.new-careers-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.new-careers-email {
    color: #60a5fa;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.2rem;
    transition: color 0.2s ease;
}

.new-careers-email:hover {
    color: #ffffff;
}

/* === MOBILE VIEW === */
@media (max-width: 768px) {
    .new-careers {
        padding: 50px 15px;
    }

    .new-careers-header h2 {
        font-size: 2rem;
    }

    .new-careers-grid {
        grid-template-columns: 1fr; /* 1 column in mobile */
    }

    .new-careers-footer {
        padding: 30px 20px;
    }
}





    .new-projects {
        
       
        color: #333;
    }

    .new-projects-container {
        max-width: 1200px;
        margin: 0 auto;
    }

    .new-projects-sponsor {
        text-transform: uppercase;
        letter-spacing: 2px;
        font-size: 2rem;
        font-weight: 700;
        color: #b8860b;
        margin-bottom: 40px;
        text-align: center;
        display: block;
    }

    .new-projects-item {
        margin-bottom: 80px;
    }

    .new-projects-header {
        margin-bottom: 30px;
        border-left: 5px solid #28a745;
        padding-left: 20px;
    }

    .new-projects-header h2 {
        font-size: 1.8rem;
        font-weight: 700;
        color: #1a1a1a;
        margin: 0 0 10px 0;
    }

    .new-projects-header p {
        font-size: 1.05rem;
        color: #666;
        margin: 0;
    }

    .new-projects-badge {
        display: inline-block;
        padding: 4px 12px;
        border-radius: 20px;
        font-size:1rem ;
        font-weight: 700;
        margin-top: 10px;
        background: #e8f5e9;
        color: #2e7d32;
    }

    .new-projects-grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    .new-projects-gallery-link {
        display: block;
        border-radius: 12px;
        overflow: hidden;
        aspect-ratio: 4 / 3;
        box-shadow: 0 4px 15px rgba(0,0,0,0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .new-projects-gallery-link:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    }

    .new-projects-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .phase-2-single {
        grid-template-columns: 1fr;
    }

    .phase-2-single .new-projects-gallery-link {
        aspect-ratio: 21 / 9;
    }

    @media (max-width: 992px) {
        .new-projects-grid {
            grid-template-columns: repeat(2, 1fr);
        }
    }

    @media (max-width: 576px) {
        .new-projects-grid {
            grid-template-columns: 1fr;
        }
        .new-projects-header h2 {
            font-size: 1.5rem;
        }
        .phase-2-single .new-projects-gallery-link {
            aspect-ratio: 16 / 9;
        }
    }