#floating-nav {
    transition: transform 0.4s ease-in-out, opacity 0.3s ease;
    will-change: transform;
}

/* Move it down 150% so the shadow also disappears */
.hide-nav {
    transform: translateY(150%);
    opacity: 0;
}

.trendy-carousel .carousel-item {
    min-height: 80vh; /* Full screen impact */
    background: #fff;
}

/* Immersive Image Half */
.img-split {
    height: 80vh;
    background-size: cover !important;
    background-position: center !important;
    transition: transform 6s ease; /* Subtle zoom effect */
}
.carousel-item.active .img-split {
    transform: scale(1.05);
}

/* Minimalist Typography Half */
.content-split {
    padding: 5% 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.slide-number {
    font-size: 8rem;
    font-weight: 900;
    color: rgba(23, 162, 184, 0.05); /* Very faint background number */
    position: absolute;
    top: -20px;
    right: 10%;
    line-height: 1;
}

.next-cta {
    margin-top: 3rem;
    padding: 1.5rem 0;
    border-top: 1px solid #eee;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-decoration: none !important;
}

.next-cta:hover {
    padding-left: 10px;
    color: #17a2b8 !important;
}

.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
    transform: none;
}
.carousel-fade .carousel-item.active {
    opacity: 1;
}


@media only screen and (max-width:767px) {
    .img-split {
        height: 30vh;
    }
}
