
        /* Bottom Navigation Styles */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: white;
            border-radius: 25px 25px 0 0;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
            padding: 2px 15px;
            justify-content: space-between;
            align-items: center;
            z-index: 100;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 8px 12px;
            border-radius: 12px;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            flex: 1;
            max-width: 70px;
        }

        .nav-item i {
            font-size: 1.3rem;
            color: #888;
            transition: all 0.3s ease;
            margin-bottom: 5px;
        }

        .nav-item span {
            font-size: 0.7rem;
            color: #888;
            transition: all 0.3s ease;
        }

        .nav-item.active {
            background: rgba(26, 147, 111, 0.1);
        }

        .nav-item.active i,
        .nav-item.active span {
            color: var(--primary-blue-colour);
            ;
        }

        .nav-item:not(.center-item):hover {
            background: rgba(26, 147, 111, 0.05);
        }

        .center-item {
            position: relative;
            bottom: 25px;
            background: var(--primary-blue-colour);
            border-radius: 50%;
            width: 70px;
            height: 70px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 5px 15px #e8f4f8;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .center-item i {
            /*font-size: 1.8rem;*/
            /*color: white;*/
            /*margin: 0;*/
        }

        .center-item:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px #e8f4f8;
        }

        .notification-badge {
            position: absolute;
            top: 5px;
            right: 5px;
            background: #ff6b6b;
            color: white;
            border-radius: 50%;
            width: 18px;
            height: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.6rem;
            font-weight: bold;
        }

        /* Animation for active state */
        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(0.70);
            }

            100% {
                transform: scale(1);
            }
        }

        .nav-item.active {
            animation: pulse 0.2s ease-in-out;
        }

        /* Responsive adjustments */
        @media (max-width: 767px) {
            .bottom-nav {
                display: flex;
            }
            
        }

        /* Responsive adjustments */
        @media (max-width: 350px) {
            .nav-item span {
                font-size: 0.65rem;
            }

            .nav-item i {
                font-size: 1.2rem;
            }

            .center-item {
                width: 60px;
                height: 60px;
            }
        }