.orbit-container{
    perspective: 1000px;
    display: flex;
    flex-direction: column;
    /*overflow: hidden;*/
    overflow: visible;
    z-index: 3;
    box-sizing: border-box;
    width: 600px;
    height: 700px;
    background: var(--white);
    border: 3px solid var(--outline);
    /* box-shadow: inset 0px 0px 1px 1px var(--outline);  */
    flex: 0 0 auto;
    border-radius: 10px;
    /* box-shadow: 4px 3px 5px 1px var(--dark-green); */
}

.orbit-container p{
    text-align: left;
    padding-left: 10%;
    margin-top: auto;
}

.orbit-pic{
    
}

.orbit-img-container{
    position: absolute;
    top: 15%;
    left: 0%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-img-container img {
    width: 80px;
    height: auto;
    max-height: 100px;
    margin: 0 10px;
    position: absolute;
    top: 0;
    border: 1px solid transparent;
}

.orbit-img-container img:hover {
    
}

.welcomesection {
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 90%;
    box-sizing: border-box;
    gap: 50px; 
    margin-bottom: 50px;
}

#vsd{
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex: 1;
    max-width: 50%;
}

/* Carousel Styles */
.carousel-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 530px;
    width: 800px;
    position: relative;
    background-color: var(--white);
    border: 3px solid var(--outline);
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
    /* box-shadow: 4px 3px 5px 1px var(--dark-green); */
}

.carousel {
    display: flex;
    width: 100%;
    height: 100%;
}

.carousel img {
    position: absolute;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel iframe {
    position: absolute;
    left: 0;
    min-width: 100%;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-label {
    width: 415px;
    height: 82px;
    background-color: var(--white);
    border: 3px solid var(--outline);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-sizing: border-box;
    margin-top: -50px;
    z-index: 11;
    text-transform: capitalize;
    color: var(--outline);
    font-weight: bold;
}

#carousel-text {
    font-size: 2.4em;
    margin: 0;
    text-transform: uppercase;
}

/* 3-Column Flex Row Styles */
.vsd-info {
    display: flex;
    justify-content: space-between;
    margin-top: 40px; /* Space between carousel and columns */
    width: 100%;
}

.vsd-column {
    box-sizing: border-box;
}

.image-left, .image-right {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-left img, .image-right img {
    max-width: 100%;
}

.text-center {
    flex: 1;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2em;
}

@media all and (max-width: 1600px) {
    .carousel-container {
        width: 600px;
        height: 397px;
    }

    .orbit-container {
        width: 449px;
        height: 524px;
    }
}

@media all and (max-width: 1200px) {
    .welcomesection{ 
        gap: 50px;
    }
}

@media all and (max-width: 1000px) {
    .welcomesection {
        flex-direction: column;
        padding: 0 90px; 
        align-items: center;
    }
    .orbit-img-container img {
        
    }

    .vsd-info {
        
    }

    .image-left, .image-right, .text-center {
        
    }
}

@media all and (max-width: 630px) {
    .welcomesection{
        padding: 0 20px; 
    }

    #vsd {
        width: 90%;
    }

    .carousel-label {
        width: 180%;
    }

    .carousel-container {
        width: 400px;
        height: 265px;
    }

    .orbit-container {
        width: 90%;
        height: auto;
    }

    .orbit-container p {
        padding-left: 20px
    }

    .orbit-pic {
        width: 100%;
        height: auto;
    }

    #carousel-text {
        font-size: 1.6em;
    }

    .orbit-img-container img {
        width: 40px;
    }
}

@media all and (max-width: 500px) { 
    .carousel-container {
        width: 350px;
        height: 232px;
    }
}

@media all and (max-width: 380px) { 
    .carousel-container {
        width: 300px;
        height: 199px;
    }
}

/* 
@media all and (max-width: 1391px) {
    .vrD {
        display: none;
    }
}

@media all and (max-width: 972px) {
    .vrS {
        display: none;
    }
    .vrD {
        display:block;
    }
}
*/