@font-face {
    font-family: "icomoon";
    src: url("fonts/icomoon.eot?w7c5i");
    src:
        url("fonts/icomoon.eot?w7c5i#iefix") format("embedded-opentype"),
        url("fonts/icomoon.ttf?w7c5i") format("truetype"),
        url("fonts/icomoon.woff?w7c5i") format("woff"),
        url("fonts/icomoon.svg?w7c5i#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* Prevent browser extensions from replacing the icon font */
    font-family: "icomoon" !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    display: inline-block;

    /* Better font rendering */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-cross-platform::before {
    content: "\e923";
}

.icon-effectiveness::before {
    content: "\e924";
}

.icon-people::before {
    content: "\e925";
}

.icon-technology::before {
    content: "\e926";
}

.icon-performance::before {
    content: "\e91b";
}

.icon-protection::before {
    content: "\e91c";
}

.icon-quote::before {
    content: "\e91a";
}

.icon-email-3::before {
    content: "\e917";
}

.icon-portfolio::before {
    content: "\e916";
}

.icon-check::before {
    content: "\e915";
}

.icon-user-2::before {
    content: "\e914";
}

.icon-right-arrow-2::before {
    content: "\e911";
}

.icon-left-arrow-2::before {
    content: "\e912";
}

.icon-phone-3::before {
    content: "\e910";
}

.icon-clock::before {
    content: "\e90d";
}

.icon-email-2::before {
    content: "\e90e";
}

.icon-location-2::before {
    content: "\e90f";
}

.icon-right-arrow::before {
    content: "\e90b";
}

.icon-left-arrow::before {
    content: "\e90c";
}

.icon-close::before {
    content: "\e900";
}

.icon-email::before {
    content: "\e901";
}

.icon-facebook::before {
    content: "\e902";
}

.icon-location::before {
    content: "\e903";
}

/* LinkedIn icon */
.icon-linkedin::before {
    content: "\eaca";
}

.icon-phone::before {
    content: "\e904";
}

.icon-phone-2::before {
    content: "\e905";
}

.icon-pinterest::before {
    content: "\e906";
}

.icon-search::before {
    content: "\e907";
}

.icon-twitter-x::before {
    content: "\e908";
}

.icon-user::before {
    content: "\e909";
}

.icon-youtube::before {
    content: "\e90a";
}

.icon-bubble-chat::before {
    content: "\e913";
}

.icon-cart::before {
    content: "\e92c";
}

.icon-eye::before {
    content: "\e939";
}

.icon-loop::before {
    content: "\e938";
}

.icon-heart::before {
    content: "\e93a";
}

.icon-user-3::before {
    content: "\e918";
}

.icon-light::before {
    content: "\e919";
}

.icon-apple-store::before {
    content: "\e91d";
}

.icon-google-play::before {
    content: "\e91e";
}

.icon-ai-chip::before {
    content: "\e91f";
}

.icon-ai-face::before {
    content: "\e920";
}

.icon-ai-connectivity::before {
    content: "\e921";
}

.icon-ai-network::before {
    content: "\e922";
}


/* Gradient background section */
.bgcolor {
    background: linear-gradient(
        90deg,
        #d930aa 0%,
        #3e5dff 100%
    );
    color: #ffffff;
    padding: 20px;
}

.bgcolor h3 {
    color: #ffffff;
    text-align: center;
    font-weight: bold;
}

.bgcolor div {
    text-align: justify;
}


/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    width: 65px;
    height: 65px;
    right: 25px;
    bottom: 25px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transition: transform 0.3s, box-shadow 0.3s;
    animation: whatsapp 2s infinite;
}

.whatsapp-float img {
    width: 38px;
    height: 38px;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@keyframes whatsapp {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 58px;
        height: 58px;
        right: 15px;
        bottom: 15px;
    }

    .whatsapp-float img {
        width: 32px;
        height: 32px;
    }
}