.navbar .navbar-nav .nav-link {
    font-weight: 400 !important;
    font-size: 20px !important;
    text-transform: capitalize !important;
}

.elements-social ul li a {
    display: contents !important;
}

.text-justify {
    text-align: justify !important;
}

.tab-style-08 ul .nav-item .nav-link {
    color: black !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    font-family: var(--alt-font) !important;
}

/* Marqee text */
.scrolling-text {
    display: inline-block;
    white-space: nowrap;
    animation: scroll-left 40s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

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

/* Marqee text end */


footer .footer-logo img {
    max-height: 150px !important;
}


@media (max-width: 767px) {
    .slider-navigation-style-03 {
        left: -5px;
    }

    .slider-navigation-style-03.swiper-button-next {
        right: -5px !important;
    }
}

.tab-style-03 .nav-tabs .nav-link {
    border-radius: 20px !important;
    color: black !important;
    background-color: white !important;
    border: none !important;
}

.tab-style-03 .nav-tabs .nav-link.active,
.tab-style-03 .nav-tabs .nav-link.show,
.tab-style-03 .nav-tabs .nav-link:hover {
    color: white !important;
    background: var(--base-gradient) !important;
    border: none !important;
}

.tab-style-08 ul .nav-item .nav-link {
    font-size: 22px !important;
    padding: 15px !important;
}



.theme-demos .demo-button-wrapper {
    transform: rotate(360deg) translateY(-100%) !important;
}

.btn-gradient-pink-orange {
    background-image: linear-gradient(135deg, #A52630, #F73B4B);
    background-size: 200% auto;
    color: var(--white);
}


.text-decoration-line-bottom {
    border-bottom: 1px solid var(--base-color) !important;
}

/* Custom CSS for the loader animation */
@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loader-spinner {
    border: 4px solid #f3f3f3;
    /* Light grey */
    border-top: 4px solid #3498db;
    /* Blue */
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
}

/* Ensure the loader covers the entire screen */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    /* Semi-transparent white background */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    /* Ensure it's on top of other content */
    font-family: 'Inter', sans-serif;
    /* Using Inter font */
    transition: opacity 0.5s ease-out;
    /* Smooth fade out */
}

/* Hide the loader when content is loaded */
.loader-hidden {
    opacity: 0;
    pointer-events: none;
    /* Allows clicks through once hidden */
}

