.projects-heading {
    text-align: center;
    margin-bottom: 30px;
    padding-top:40px;
}

.projects-heading h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.projects-heading p {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.projects-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; margin-top: 60px; }
.project-card { position: relative; overflow: hidden; height: 350px; cursor: pointer; border-top: 3px solid var(--accent-color); }
.project-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.project-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(to top, rgba(11,22,44,0.95), rgba(11,22,44,0.2)); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; opacity: 0.9; transition: var(--transition); }
.project-info { transform: translateY(20px); transition: var(--transition); }
.project-card:hover img { transform: scale(1.05); }
.project-card:hover .project-info { transform: translateY(0); }