.project-gallery-shuffle {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF; 
    overflow: hidden;
}

.card-carousel {
    position: relative;
    width: 800px;
    height: 100%;
}

.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.7);
    opacity: 0.5;
    transition: all 0.8s ease;
    z-index: 1;
}

.card img {
    width: 400px;
    height: 300px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.card.center {
    transform: translate(-50%, -60%) scale(1.1);
    opacity: 1;
    z-index: 3;
}

.card.left {
    transform: translate(-150%, -40%) scale(0.85);
    opacity: 0.7;
    z-index: 2;
}

.card.right {
    transform: translate(50%, -40%) scale(0.85);
    opacity: 0.7;
    z-index: 2;
}
        /* Hero Section */
        #home-new-head {
            position: relative;
            height: 15vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--text-light);
            overflow: hidden;
        }
        #home-new-head::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('image.png');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            z-index: -1;
            filter: blur(2px);
        }
        .hero h2 {
            font-size: 3.5em;
            margin-bottom: 20px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1s ease-out;
        }
        .hero p {
            font-size: 1.6em;
            margin-bottom: 30px;
            text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
            animation: fadeInUp 1.2s ease-out;
        }
        .cta-button {
            background: var(--primary-color);
            color: var(--text-light);
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 1.2em;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
            transition: transform 0.3s, background 0.3s;
            animation: fadeInUp 1.4s ease-out;
        }
        .cta-button:hover {
            background: var(--secondary-color);
            transform: translateY(-3px);
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
}.
