.marquee-container {
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
    border-top: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

.marquee {
    display: inline-block;
    animation: marquee 25s linear infinite;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Premium thin underline effect for links */
.hover-underline {
    position: relative;
}

.hover-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: #C5A059;
    transition: width 0.3s ease;
}

.hover-underline:hover::after {
    width: 100%;
}

/* Premium Image Filter */
.corporate-img {
    filter: grayscale(100%) contrast(1.1);
    transition: filter 0.5s ease;
}

.corporate-img:hover {
    filter: grayscale(0%) contrast(1);
}

/* Dropdown Animation */
.group:hover .group-hover\:opacity-100 {
    opacity: 1;
    visibility: visible;
}

/* Adjust body for fixed header with top bar */
body {
    padding-top: 8rem;
    /* Correctly accounts for Top Bar + Header height */
}

html {
    scroll-padding-top: 8.5rem;
    /* Ensures anchor links don't hide under header */
}

/* Luxury Dropdown Item */
.dropdown-item {
    position: relative;
    overflow: hidden;
}

.dropdown-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #C5A059;
    transition: width 0.3s ease;
}

.dropdown-item:hover::after {
    width: 100%;
}