/* Global Styles */
body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background-color: #EFEFEF;
}

/* Background Utility Classes */
.image-bg {
    background-image: url('assets/img/bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.bg-contact {
    background-image: url('assets/img/bgContact.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-chart {
    background-image: url('assets/img/bgContact.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* Infinity Logo Slider Animation */
@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-250px * 7)); }
}

.slider {
    background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    width: 100%;
    max-width: 960px;
}

.slider::before,
.slider::after {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    content: "";
    height: 100px;
    position: absolute;
    width: 150px;
    z-index: 2;
}

.slider::after {
    right: 0;
    top: 0;
    transform: rotate(180deg);
}

.slider::before {
    left: 0;
    top: 0;
}

.slider .slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 14);
}

.slider .slide {
    height: 100px;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

/* Custom speed-dial hover trigger */
.speed-dial-group:hover .speed-dial-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}
