::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #121212;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 4px;
}

html.lenis,
html.lenis body {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}



.section {
    padding: 80px 60px
}

.small-title {
    letter-spacing: 4px;
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 20px;
}

.main-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    max-width: 800px;
}

.sub-text {
    margin-top: 20px;
    color: #9ca3af;
    max-width: 600px;
}

.grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 260px;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.card:hover img {
    transform: scale(1.05)
}

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.overlay h3 {
    font-size: 20px;
    margin-bottom: 6px
}

.overlay p {
    font-size: 14px;
    color: #cbd5f5
}

@media(max-width:768px) {
    .section {
        padding: 60px 20px
    }

    .main-title {
        font-size: 40px
    }
}