.slow-spin {
    animation: fa-spin 8s linear infinite;
    /* slower spin: 8 seconds per rotation */
}

.bg-custom-info {
    background-color: #CFF4FC;
}

.blink-shake {
    animation: blink-shake 1s infinite;
}

@keyframes blink-shake {
    0% {
        opacity: 1;
        transform: translateX(0);
    }
    25% {
        opacity: 0.4;
        transform: translateX(-5px);
    }
    50% {
        opacity: 1;
        transform: translateX(5px);
    }
    75% {
        opacity: 0.4;
        transform: translateX(-5px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.carousel-caption {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    width: auto;
    max-width: 500px;
}

/* Center on Mobile View */
@media (max-width: 576px) {
    .carousel-caption {
        top: 50%;
        bottom: auto;
        transform: translate(-50%, -50%);
        width: 90%;
    }

    .caption-box {
        width: 100%;
    }
}

/* Optional nice font and spacing */
.carousel-caption h2 {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
}

.carousel-caption p {
    font-family: 'Poppins', sans-serif;
}


.service-card {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
}

/* footer bottom */
.footer-bottom{
font-size: 12px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.4;
    color: #d6d6d6;
}