.projects-section {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    /* min-height: 100vh; */
}

.projects-scroll {
    flex: 2.3;
    height: 80vh;
    overflow-y: auto;
    padding-right: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.projects-scroll::-webkit-scrollbar {
    display: none;
}

.project-card {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    transform: translateY(20px);
    opacity: 0.7;
    position: relative;
}

.project-card.active {
    transform: translateY(0);
    opacity: 1;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.project-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px;
    color: white;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.project-card:hover .project-overlay {
    transform: translateY(0);
}

.project-info {
    flex: 1;
    backdrop-filter: blur(20px);
    padding: 40px;
    color: white;
    height: 80vh;
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #7ba6ecdc 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.project-title.animate {
    opacity: 1;
    transform: translateY(0);
}

.project-description {
    font-size: 0.9rem;
    font-weight: bold;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.1s;
}

.project-description.animate {
    opacity: 1;
    transform: translateY(0);
}

.tech-stack {
    margin-bottom: 10px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s;
}

.tech-stack.animate {
    opacity: 1;
    transform: translateY(0);
}

.tech-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(4, 224, 235);
    margin-bottom: 15px;
}

.tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tech-tag {
    background: rgba(104, 104, 104, 0.2);
    border: 1px solid rgba(240, 236, 236, 0);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.tech-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.project-features {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
}

.project-features.animate {
    opacity: 1;
    transform: translateY(0);
}

.features-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgb(0, 255, 234);
    margin-bottom: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    color: #64ffda;
}



@media (max-width: 1024px) {
    .projects-section {
        flex-direction: column;
        gap: 40px;
    }

    .project-info {
        display: none;
        /* position: static;
        order: -1; */
    }

    .projects-scroll {
        height: auto;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 40px 15px;
    }

    .project-info {
        display: none;
        /* padding: 30px; */
    }

    .project-title {
        /* font-size: 2rem; */
        display: none;
    }

    .project-description {
        /* font-size: 1rem; */
        display: none;
    }
}