﻿/**********Layout**********/

.language-switch a {
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s;
}

    .language-switch a:hover {
        opacity: 0.8;
    }

.footer-area-with-black-color .single-footer-widget .social li a.fb:hover {
    color: white;
    border: 1px solid #1877f2;
    background-color: #1877f2;
}

.footer-area-with-black-color .single-footer-widget .social li a.x:hover {
    color: white;
    border: 1px solid #14171a;
    background-color: #14171a;
}

.footer-area-with-black-color .single-footer-widget .social li a.linkedIn:hover {
    color: white;
    border: 1px solid #0a66c2;
    background-color: #0a66c2;
}

.footer-area-with-black-color .single-footer-widget .social li a.snap:hover {
    color: white;
    border: 1px solid #FFD43B;
    background-color: #FFD43B;
}

.footer-area-with-black-color .single-footer-widget .social li a.whatsApp:hover {
    color: white;
    border: 1px solid #25d366;
    background-color: #25d366;
}


@media(max-width: 991px) {
    .top-bar-info {
        align-items: center;
        display: block;
    }
}

@media(min-width: 992px) {
    .top-bar-info {
        align-items: center;
        display: flex;
    }
}

/**********Home**********/

.is-banner-item {
    background-size:cover;
    overflow:hidden;
}
    .is-banner-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.is-banner-item > * {
    position: relative;
    z-index: 2;
}



.is-services-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 550px;
}

    .is-services-card .is-services-image {
        flex-shrink: 0;
    }

    .is-services-card h3 {
        min-height: 60px;
    }

    .is-services-card p {
        flex-grow: 1;
        margin-bottom: 20px;
    }

/**********Contact**********/

.contact-info .contact-info-content .social li a.fb:hover {
    color: white;
    border-color: #1877f2;
    background-color: #1877f2;
}

.contact-info .contact-info-content .social li a.x:hover {
    color: white;
    border-color: #14171a;
    background-color: #14171a;
}

.contact-info .contact-info-content .social li a.linkedIn:hover {
    color: white;
    border-color: #0a66c2;
    background-color: #0a66c2;
}

.contact-info .contact-info-content .social li a.snap:hover {
    color: white;
    border-color: #FFD43B;
    background-color: #FFD43B;
}

.contact-info .contact-info-content .social li a.whatsApp:hover {
    color: white;
    border-color: #25d366;
    background-color: #25d366;
}


/**********Blog**********/

.single-blog-post {
    display: flex;
    flex-direction: column;
    height: 100%;
}

    .single-blog-post .post-content {
        flex-grow: 1;
    }

.col-lg-4.col-md-6 {
    display: flex;
}

.single-blog-post {
    width: 100%;
}

/**********Services**********/

.features-box-one {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    width: 100%;
}

    .features-box-one .read-more {
        margin-top: auto;
    }

/**********Compliance Management System Service**********/

.challenge-with-banner {
    gap: 20px;
    flex-wrap: wrap;
}

.mini-banner-cta {
    position: relative;
    display: inline-block;
    width: 320px;
    margin-top: 15px;
    border-radius: 12px;
    overflow: hidden;
    animation: miniPulse 2.5s infinite;
    cursor: pointer;
}

    .mini-banner-cta img {
        width: 100%;
        display: block;
        transition: transform 0.5s ease;
    }

    .mini-banner-cta:hover img {
        transform: scale(1.05);
    }

    .mini-banner-cta .overlay-text {
        position: absolute;
        top: 0px;
        right: 0px;
        background: #13c4a1;
        color: white;
        padding: 4px 10px;
        font-size: 0.8rem;
        border-radius: 8px;
        font-weight: bold;
        z-index: 10;
        white-space: nowrap;
    }


@keyframes strongPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(19, 196, 161, 0.6);
    }

    50% {
        box-shadow: 0 0 25px 8px rgba(19, 196, 161, 0.85);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(19, 196, 161, 0.6);
    }
}

.mini-banner-cta {
    animation: strongPulse 2s infinite ease-in-out;
}

@media (max-width: 768px) {
    .mini-banner-cta {
        width: 100%;
        margin-top: 20px;
    }
}
