.top-banner {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.projects-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #b3d9f7, #a394cf, #c3b4e3);
    text-align: center;
    color: #1c1c2e;
}

.projects-section h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.projects-intro {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #5a5a5a;
}

.projects-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.project-item {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease;
}

.project-item:hover {
    transform: translateY(-10px);
}

.project-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.project-item h3 {
    font-size: 22px;
    margin: 15px;
    color: #333;
}

.project-item p {
    font-size: 16px;
    padding: 0 15px 15px;
    color: #555;
}

.video-item video {
    width: 100%;
    border-radius: 10px 10px 0 0;
    object-fit: cover;
}

.video-item h3, .video-item p {
    padding: 0 15px;
    color: #333;
}

