/* Main Footer Navigation Container */
.footerfixedmenu-nav {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    padding: 0px 0px 0px 0px;
    border-radius: 0px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.20);
    z-index: 9999;
    align-items: center;
    background: #ffffff; /* Default background color */
    min-width: 100%;
}

/* Menu List Container */
.footerfixedmenu-nav ul.footerfixedmenu-menu {
    display: flex;
    gap: 45px;
    margin: 0 auto;
    padding: 10px 30px 10px 30px;
    background: #ffffff;
    border-radius: 0px;
    list-style: none;
}

/* Individual Menu Items */
.footerfixedmenu-nav li {
    list-style: none;
    position: relative;
}

/* Menu Links */
.footerfixedmenu-nav a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-size: 15px;
    position: relative;
    color: rgb(26,179,210); /* Default icon color */
}

/* Tooltip Styling */
.footerfixedmenu-tooltip {
    position: relative;
    bottom: 0px;
    background: transparent;
    color: rgb(26,179,210);
    padding: 4px 0px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 0px;
    box-shadow: 0 0px 0px rgba(0,0,0,0.15);
    opacity: 1.0;
    transform: translateY(0px);
    white-space: nowrap;
    pointer-events: none;
    transition: all 0.25s ease;
    left: 50%;
    transform: translateX(-50%) translateY(0px);
}

/* Show tooltip on hover */
.footerfixedmenu-nav li:hover .footerfixedmenu-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Pricing Button */
.footerfixedmenu-nav .footerfixedmenu-btn-pricing {
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    white-space: nowrap;
    background: #000000; /* Default button background */
    color: #ffffff; /* Default button text color */
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Pricing Button Hover Effect */
.footerfixedmenu-nav .footerfixedmenu-btn-pricing:hover {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Icon Styling */
.footerfixedmenu-nav i {
    font-size: 18px;
    transition: all 0.3s ease;
}

/* Hover effect for menu items */
.footerfixedmenu-nav li:hover a {
    transform: scale(1.1);
    transition: transform 0.2s ease;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footerfixedmenu-nav {
        bottom: 15px;
        gap: 10px;
        padding: 6px 8px;
    }
    
    .footerfixedmenu-nav ul.footerfixedmenu-menu {
        gap: 35px;
        padding: 8px 25px;
    }
    
    .footerfixedmenu-nav .footerfixedmenu-btn-pricing {
        padding: 6px 12px;
        font-size: 13px;
    }
    
    .footerfixedmenu-nav i {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    /* Main Footer Navigation Container */
    .footerfixedmenu-nav {
        position: fixed;
        bottom: 0px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 15px;
        padding: 0px 0px 0px 0px;
        border-radius: 0px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.20);
        z-index: 9999;
        align-items: center;
        background: #ffffff; /* Default background color */
        width: 100%;
    }
    .footerfixedmenu-nav ul.footerfixedmenu-menu {
        gap: 20px;
        display: flex;
        justify-content: space-around;
        padding: 3px 0px;
        bottom: 0px;
    }
    .footerfixedmenu-nav .footerfixedmenu-btn-pricing {
        padding: 5px 10px;
        font-size: 12px;
    }
        /* Individual Menu Items */
    .footerfixedmenu-nav li {
        gap: 20px;
        display: flex;
        justify-content: space-around;
        list-style: none;
        position: relative;
        align-items: center;
        
    }
    /* Hover effect for menu items */
    .footerfixedmenu-nav li:hover a {
        transform: scale(1.1);
        transition: transform 0.2s ease;
        color: rgb(18, 18, 18);
    }
    /* Menu Links */
    .footerfixedmenu-nav a {
        gap: 0px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-decoration: none;
        font-size: 12px;
        position: relative;
        color: rgb(26,179,210); /* Default icon color */
        padding: 5px 0px 5px 0px;
    }
        /* Icon Styling */
    .footerfixedmenu-nav i {
        display: block;
        position: none;
        font-size: 18px;
        margin: 0 auto;
        padding: 0px 0px 0px 0px;
        transition: all 0.3s ease;
        height: 18px;
        min-width: 100%;
    }
    /* Tooltip Styling */
    .footerfixedmenu-tooltip {
        display: block;
        position: none;
        margin: 0px auto 5px auto;
        font-size: 12px;
        padding: 2px 0px 5px 0px;
        bottom: 0%;
        width: 100%;
        height: 12px;
    }
        /* Show tooltip on hover */
    .footerfixedmenu-nav li:hover .footerfixedmenu-tooltip {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}