.projects-section {
    /*background: #0C97E8;*/
    background: #f3f6f7;
    padding: 80px 0;
   
}

.projects-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    padding: 0 20px;
}

projects-title {
    color: #000000;
    font-size: 36px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

projects-line {
    display: block;
    width: 50px;
    height: 2px;
    background: #212529;
    margin: 0 auto 50px;
}

/* Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-bottom: 50px;
}

/* Card */
.project-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.project-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.project-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    text-align: center;
    padding: 20px;
}

.project-overlay h4 {
    font-size: 18px;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.project-overlay p {
    font-size: 14px;
    opacity: 0.85;
}

/* Hover Effects */
.project-card:hover img {
    transform: scale(1.1);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

/* Button */
.projects-btn {
    display: inline-block;
    padding: 12px 34px;
    background: #006CCC;
    color: #fff;
    
    border-radius: 30px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

    .projects-btn:hover {
        background: #0C97E8;
        transform: translateY(-2px);
    }

/* Responsive */
@media (max-width: 768px) {
    .projects-title {
        font-size: 28px;
    }
}
