.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50%;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 99999;

    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;

    transition: 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #1ebe5d;
    color: #fff;
}


/* start header services section */
/* ==========================================
		MEGA MENU - MOMENTUM TECH
		========================================== */

.mega-menu-parent {
    position: static !important;
}

.atf-nav-list {
    position: relative !important;
}

/* DESKTOP */

.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    max-width: 95vw;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    z-index: 99999;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
}

.mega-menu-parent:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

/* GRID */

.mega-menu-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}

/* COLUMN */

.mega-col {
    padding: 30px;
    border-right: 1px solid #ececec;
    border-bottom: 1px solid #ececec;
    min-height: 260px;
}

.mega-col:nth-child(4n) {
    border-right: none;
}

/* TITLE */

.mega-col h4 {
    margin: 0 0 20px;
    color: #71237b;
    font-size: 17px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* LIST */

.mega-col ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;

    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;

    width: 100%;
}

.mega-col ul li {
    display: block !important;
    width: 100% !important;
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.mega-col ul li a {
    display: block !important;
    width: 100% !important;

    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;

    color: #5d5d5d !important;
    text-decoration: none !important;
    transition: .3s;
}

.mega-col ul li a:hover {
    color: #71237b !important;
    padding-left: 6px;
}

/* REMOVE THEME CONFLICTS */

.mega-menu *,
.mega-menu ul,
.mega-menu li {
    float: none !important;
}

.mega-menu ul,
.mega-menu li {
    position: static !important;
}

/* ==========================================
		LARGE SCREEN
		========================================== */

@media (max-width:1400px) {

    .mega-menu {
        width: 1250px;
    }

}

/* ==========================================
		TABLET
		========================================== */

@media (max-width:1199px) {

    .mega-menu {
        position: static !important;
        left: auto !important;
        top: auto !important;
        transform: none !important;

        width: 100% !important;
        max-width: 100% !important;

        opacity: 1 !important;
        visibility: visible !important;

        display: none;
        margin-top: 10px;

        border-radius: 10px;
        box-shadow: none;
        border: 1px solid #eee;
    }

    .mega-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .mega-col {
        min-height: auto;
        padding: 20px;
    }

    .mega-menu-parent.active .mega-menu {
        display: block !important;
    }

    .mega-menu-parent:hover .mega-menu {
        display: none;
    }

    .mega-menu-parent.active:hover .mega-menu {
        display: block !important;
    }
}

/* ==========================================
		MOBILE
		========================================== */

@media (max-width:767px) {

    .mega-menu-grid {
        grid-template-columns: 1fr;
    }

    .mega-col {
        padding: 18px;
        border-right: 0;
    }

    .mega-col h4 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .mega-col ul li a {
        font-size: 14px !important;
    }

}

/* start header services section */