/* ----------------------------------

Template Name: Digalu - Digital Marketing Agency Template
Author: validtheme
Description:
Version: 1.0

Main Font    : Roboto
Main Color   : #8A6552

-------------------------------------

[Typography]

Body copy:    15px 'Roboto', sans-serif
Header:     36px 'Roboto', sans-serif
Input, textarea:  15px 'Roboto', sans-serif
Sidebar heading:  20px 'Roboto', sans-serif

>>> TABLE OF CONTENTS:
=======================

    01. Template default css
        - Animations
        - General
        - Section Title
        - Video Button
        - Typography
        - Tables
        - Forms
        - Buttons
        - Pagination
        - Colors
        - Accordion
        - Tabs
    02. Preloader
    03. Topbar
    04 Navbar
        - Navbar Default
        - Navbar Transparent
        - Navbar Sticky
        - Navbar Box
    05. Banner
        - Slide Effect
        - Fade Effect
    06. Features
    07. About Us
        - Full Width Version
        - Default Version
    08. Services
        - Version One
        - Version Two
        - Version Three
    09. Why Choose Us
    10. Company Analysis/Graph
    11. Companies/Clients/Partner
    12. Team
    13. Testimonials
    14. Projects
    15. Gallery
    16. Our Expertise
    17. Work Process
    18. FAQ
    19. Blog
        - Standard
        - Left Sidebar
        - Right Sidebar
        - Single
    20. Error 404
    21. Footer
    22. PHP Contact Form
    23. Others

*/

/*
** General Styles for HTML tags
*/

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 45px;
    z-index: 1000;
}

.whatsapp-button a {
    background: #25d366;
    color: white;
    padding: 10px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dialog-box {
    display: none;
    position: absolute;
    bottom: 6px;
    right: 75px;
    background: white;
    color: black;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    border-left: 3px solid #25d366;
    width: 215px;
}

@keyframes slide-in {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes vibrate {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-2px);
    }

    50% {
        transform: translateX(0);
    }

    75% {
        transform: translateX(2px);
    }

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

.dialog-box.vibrate {
    animation: vibrate 0.2s ease-in-out 1s;
}

.dialog-box.visible {
    display: block;
    animation: slide-in 0.3s ease-out forwards, vibrate 0.2s ease-in-out 5s infinite;
}

.dialog-box .arrow {
    position: absolute;
    right: -10px;
    top: 10px;
    width: 0;
    height: 0;
    border-left: 10px solid #fff;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}
