.ImageI1 {
    padding-left: 20%;
    padding-right: 20%;
    align-items: center;
    width: 100%;
    transition: transform 0.5s ease-in-out, box-shadow 0.5s ease-in-out;
}

.ImageI1 img {
    border-top-left-radius: 10%;
    border-top-right-radius: 10%;
    border-bottom-right-radius: 10%;
    border-bottom-left-radius: 10%;
    width: 100%;
    height: auto;
}

section {
    padding-left: 20%;
    padding-right: 20%;
}

.PlatformC {
    text-align: justify;
    padding-left: 20%;
    padding-right: 20%;
}

body {
    background-color: rgba(255, 242, 227, 0.737);
}

.carousel {
    position: relative;
    width: 100%;
    max-width: 800px;
    overflow: hidden;
    perspective: 1000px; /* Adds depth to the 3D effect */
}

.carousel-inner {
    display: flex;
    transition: transform 0.8s ease-in-out;
}

.carousel-item {
    min-width: 100%;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d; /* Enables 3D transformations */
    transition: transform 0.8s ease-in-out;
}

.carousel-item:nth-child(1) {
    transform: translateZ(0px) scale(1);
}

.carousel-item:nth-child(2) {
    transform: translateZ(-100px) scale(0.9);
}

.carousel-inner {
    transform: translateX(-${currentIndex * 100}%);
}

.carousel-item img {
    width: 100%;
    display: block;
    transition: transform 0.8s ease-in-out, box-shadow 0.8s ease-in-out;
}

.carousel-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.5); /* Futuristic glow effect */
}