.speech-bubble {
    position: absolute;
    bottom: 120%;
    right: 40%;
    background-color: white;
    color: black;
    padding: 10px 20px;
    border: 2px solid rgb(57, 14, 167);
    border-radius: 10px;
    font-weight: bold;
    text-align: center;
    width: 200px;
    box-shadow: 0px 4px 10px rgba(50, 4, 189, 0.1);
}

.speech-bubble::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    width: 0;
    height: 20px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid rgb(51, 10, 186);
}

.speech-bubble::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 90%;
    transform: translateX(-50%);
    width: 0;
    height: 20px;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid white;
}
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    border: none; /* Remove border for a cleaner look */
    border-radius: 8px; /* Slight rounding of corners */
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.card-body i {
    transition: transform 0.3s ease-in-out;
}

.card:hover i {
    transform: scale(1.2);
}

.text-decoration-none:hover {
    text-decoration: none;
}

/* Container for the scrolling effect */
.logo-marquee {
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

/* Animation for the scrolling effect */
.animate-scroll {
    display: inline-block;
    padding-left: 100%; /* Adjust this based on the width of your logos */
    animation: scroll 20s linear infinite;
}

/* Define the scrolling animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* Additional CSS for chat message */
#chatMessage {
    padding: 8px;
    background-color: #f0f0f0;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
}

/* Ensure the logos are aligned in a row */
.logo-marquee img {
    display: inline-block;
    margin-right: 1rem; /* Adjust as needed for spacing between logos */
}

    .bg-services {
        background-color: rgb(55, 19, 198);
    }

    .bg-blogs {
        background-color: rgba(40, 167, 69, 1);
    }

    .bg-users {
        background-color: rgb(30, 12, 121); /* Users */
    }

    .bg-developers {
        background-color: rgb(239, 51, 14); /* Developers */
    }

    .bg-projects {
        background-color: rgb(3, 82, 8); /* Projects */
    }

    .bg-partnerships {
        background-color: rgb(54, 9, 232); /* Partnerships */
    }

    .bg-feedback {
        background-color: rgb(2, 164, 5);
    }

    .bg-testimonies {
        background-color: rgba(40, 167, 69, 1); /* Testimonies */
    }

    .hover-effect {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .hover-effect:hover {
        transform: scale(1.05);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .card-custom {
        height: 200px;
        width: 100%;
    }

    .card-body {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

    .icon-custom {
        color: #ffffff;
    }
