body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
}

.projects-section {
    padding: 50px 20px;
    background-color: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
    margin-bottom: 30px;
}

h2 {
    font-size: 24px;
    font-weight: bold;
}

.projects-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    -webkit-overflow-scrolling: touch;
}

.projects-grid::-webkit-scrollbar {
    display: none;
}

.project-card {
    flex: 0 0 500px; 
    scroll-snap-align: start;
}

.project-card:hover {
    scale: 1.05;
}

.project-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.project-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.project-content {
    padding: 15px;
}

.project-title {
    font-size: 18px;
    font-weight: bold;
}

.project-description {
    font-size: 14px;
    color: #555;
}

.project-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-top: 10px;
}

.project-tag {
    background: #e3f2fd;
    color: #007bff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.project-links {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.project-links a {
    text-decoration: none;
    color: #007bff;
    font-size: 14px;
}