/* Projects Section */
.projects {
    padding: 80px 0;
    text-align: center;
    background-color: #fff;
}

.projects h2 {
    font-size: 2.5em;
    margin-bottom: 40px;
    font-weight: bold;
	background: linear-gradient(to right, #5214f4, #63c8f9);
		  -webkit-background-clip: text; /* For Safari */
		  background-clip: text; /* For modern browsers */
		  color: transparent; /* Makes the text color transparent */
}

/* Grid Layout */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.project-card {
    /*background-color: #fff;*/
	background: linear-gradient(180deg, #ffffff, #e5e5e6);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
	border:1px solid #d4d3d5;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	background: linear-gradient(45deg, #b6e8fc, #bda7fd);
}

.project-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 20px;
}

.project-card h3 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.project-card p {
    color: #777;
    font-size: 1em;
}


/* Responsive Layout for smaller screens */
@media (max-width: 900px) {
    .projects-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}