.image-container {
            margin-bottom: 15px; /* Add margin between images */
        }
        .image-container img {
            width: 100%;
            height: auto;
            object-fit: cover; /* You can use 'contain' or other values depending on your preference */
        }
        .scrolling-container {
            overflow-x: hidden;
            white-space: nowrap;
            position: relative;
            color:white;
        }

        .scrolling-content {
            display: inline-block;
            /* Add your content styling here */
            margin-right: 10px; /* Add margin between content items if needed */
            margin-left: 50px;
        }
        .scroll-arrow {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%);
            cursor: pointer;
            font-size: 24px;
            color: #007bff; /* Change color as needed */
        }
        .shadow-button {
            display: inline-block;
            padding: 10px 20px;
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            border: none;
            border-radius: 5px;
            background-color: #007bff;
            color: #fff;
            box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Adjust the shadow properties */
            transition: box-shadow 0.3s ease; /* Optional: Add transition effect */
        }

        .shadow-button:hover {
            box-shadow: 0px 8px 12px rgba(0, 0, 0, 0.2); /* Adjust the shadow properties on hover */
        }

        .slideshow-container {
            position: relative;
            max-width: 100%;
            margin: auto;
        }

        .slide {
            display: none;
            position: absolute;
            width: 100%;
        }

        .prev, .next {
            position: absolute;
            top: 50%;
            width: auto;
            padding: 16px;
            margin-top: -22px;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            color: white;
            background-color: rgba(0, 0, 0, 0.5);
            border: none;
            border-radius: 5px;
        }

        .prev {
            left: 10px;
        }

        .next {
            right: 10px;
        }

        .overlap-container {
            position: relative;
            width:100%;
        }
        .box1{
            padding:50px;
            height:auto;
            background-color:rgb(240,240,240);
            width:100%;
            padding-bottom:200px;
        }
        .box2{
            background-color:#17C48E;
            height:300px;
            width:100%;
        }
        .overlap-box {
            position: absolute;
            z-index: 1;
            width:70%;
            background-color:white;

            top: 85%;
            left: 50%;
            transform: translate(-50%, -50%);
            padding:30px;
            height:300;
            border-radius:5px;
            box-shadow: 5px 5px 10px 10px rgba(0, 0, 0, 0.1);
        }


.work {
    position: relative;
    overflow: hidden;
    height: 600px; /* Set the height of your container */
    padding-top:50px;
}

.card-stack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
     margin-top:50px;
}

.cards {
    flex: 0 0 400; /* Set the width of your cards */
    background-color: #17C45E; /* Set the background color of your cards */
    color:#ffffff;
    border-radius: 10px;
    padding:15px;
    margin-right: -200px; /* Negative margin to overlap cards */
}

/* Make the second and third cards partially visible */
.card2, .card1, .card3 {
    margin-right: -70px; /* Adjust the margin to control visibility */
}

/* Hover effect to reveal the hidden cards */
 .card2:hover {
    margin-right: 0; /* Adjust the margin to fully reveal the card */
}

.card1:hover {
    margin-right: 0; /* Adjust the margin to fully reveal the card */
}
