/* --- Projects Page Styles --- */
.projects-sec {
    text-align: center;
    padding: 80px 0;
    background-color: #ffffff;
}

.projects-sec h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.projects-intro {
    max-width: 700px;
    margin: 0 auto 50px auto;
    line-height: 1.8;
    font-size: 17px;
    color: #555;
}

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

.project-card {
    background-color: #fdfdff;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #f0f0f0; /* Placeholder color */
}

.project-info {
    padding: 25px;
}

.project-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.project-description {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #666;
}

.technologies {
    margin-bottom: 20px;
}

.technologies span {
    display: inline-block;
    background-color: #f0f0f0;
    color: #555;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    margin-right: 8px;
    margin-bottom: 8px;
}

.project-links a {
    text-decoration: none;
    color: #e63946;
    font-weight: bold;
    margin-right: 15px;
    transition: color 0.3s;
}

.project-links a:hover {
    color: #333;
}