.whatsapp-chat-icon {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background-color: #20bb5a;
    color: white;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    font-size: 16px;
    display: flex;
    align-items: center;
}

.whatsapp-chat-icon:hover {
    background-color: #1da650;
    color: #eae8e8 !important;
}

a {
    cursor: pointer;
}

.static-content {
    padding: 60px 80px;
    margin: 0 100px;
    background-color: #ffffff;
    box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.07);
}

.pc-ellipsis {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

/* Pulse animation */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 1.5s infinite;
}

@media (max-width: 576px) {
    .static-content {
        padding: 20px;
        margin: 0;
    }

    .blog-details .post-img {
        margin: -20px -35px 0;
    }

    .features .features-item .image-stack {
        display: block;
    }

    .features .features-item .image-stack .stack-back {
        width: 100%;
    }
}
