body {
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.company-logo{
    object-fit: contain;
    height: 100px;
    width: 300px;
    background: #FFFEF5;
    padding: 10px 14px;
    border-radius: 8px;
}
#company-div{
    display: grid;
    grid-template-columns: auto auto auto;
    flex-direction: row;
    row-gap: 75px;
    column-gap: 150px
}
.company{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    width: 300px;
    object-fit: contain;

}
.main-containers{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 30px;
    margin-bottom: 100px;
}

#cyf{
    display: flex;
    justify-content:left;
    align-items: center;
    flex-direction: column;
    padding-left: 30px;
    margin-bottom: 50px;
}
#cyf-p{
    text-align: left;
}
main h2{
    color: var(--page-icon-color);
}
main{
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.carousel {
    position: relative;
    max-width: 900px;
    margin: auto;
    overflow: hidden;
    padding: 30px 50px;
    background-color: var(--primary-color-transparent);
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.carousel-container {
    position: relative;
    height: 450px; /* adjust to your image height */
    overflow: hidden;
    background-color: azure;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    height: 450px;
    width: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;   
    object-fit: cover;
}

.slide.active {
    opacity: 1;
}

button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

/* Carousel background */
.carousel-container {
    background-color: #1a1a1b;
}
