﻿.footer-nav {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #dddddd;
    display: flex;
    justify-content: space-around;
    border-top: 1px solid #ccc;
    padding: 5px 0;
    z-index: 1000;
}

    .footer-nav button {
        background: none;
        border: none;
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 14px;
        cursor: pointer;
        color: #13305b;
    }

        .footer-nav button i {
            font-size: 20px;
            margin-bottom: 3px;
        }


/* Side Menu */
.side-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100%;
    background: #fff;
    box-shadow: -2px 0 5px rgba(0,0,0,0.2);
    overflow-y: auto;
    transition: right 0.3s ease-in-out;
    z-index: 2000;
    /*padding: 20px;*/
}

.side-menu.main{
    background-color:white;
}
    .side-menu.active {
        right: 0;
    }

    .side-menu h3 {
        margin-top: 20px;
        font-size: 18px;
        font-weight: bold;
    }

    .side-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .side-menu li {
        border-bottom: 1px solid #ddd;
    }

        .side-menu li button {
            width: 100%;
            text-align: left;
            padding: 12px;
            background: #fffcfc00;
            border: none;
            font-size: 16px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .side-menu li ul {
            display: none;
            background: #e9f1ff;
        }

            .side-menu li ul li {
                border: none;
            }

                .side-menu li ul li a {
                    display: block;
                    padding: 10px 0px;
                    text-decoration: none;
                    font-size: 15px;
                    color: #000;
                    border-bottom: 1px solid #dfdfdf;
                    line-height: 30px;
                    margin-left: 15px !important;
                }

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 22px;
    cursor: pointer;
    background: none;
    border: none;
}

.submenu-toggle i {
    transition: transform 0.3s ease;
}

.submenu-toggle.open i {
    transform: rotate(180deg);
}

/*.footer-nav a {
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 12px;
        color: #333;
        text-decoration: none;
    }

        .footer-nav a i {
            font-size: 20px;
            margin-bottom: 5px;
        }*/

/* Menu Overlay */
/*.menu-overlay {
    display: none;*/ /* hidden until menu is opened */
/*position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    overflow-y: auto;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f0f0f0;
    border-bottom: 1px solid #ccc;
}

    .menu-header h2 {
        margin: 0;
        font-size: 18px;
        color: #333;
    }

.close-btn {
    font-size: 26px;
    cursor: pointer;
    color: #333;
}

.menu-section {
    border-bottom: 1px solid #eee;
    padding: 10px 20px;
}

.menu-title {
    font-weight: bold;
    color: #a10d0d;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .menu-title::after {
        content: "▼";
        font-size: 12px;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

.menu-section.open .menu-title::after {
    transform: rotate(-180deg);
}

.submenu {
    display: none;
    padding-left: 15px;
}

.menu-section.open .submenu {
    display: block;
}

.submenu a {
    display: block;
    padding: 5px 0;
    color: #333;
    text-decoration: none;
}

    .submenu a:hover {
        text-decoration: underline;
    }*/

/* Responsive fix */
@media (min-width: 774px) {
    .footer-nav {
        display: none;
    }

    .side-menu {
        display: none;
    }
}

@media screen and (max-width: 775px) {
    .top-right-icon {
        display: none !important;
        margin-right: 20px;
    }
}
