        .tagline {
            font-size: 1.3rem;
            opacity: 0.9;
            font-weight: 300;
        }

        /* Open Sidebar Button */
        .open-sidebar-btn {
            display: block;
            margin: 30px auto;
            padding: 15px 30px;
            background: linear-gradient(135deg, #1e3c72, #2a5298);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(30, 60, 114, 0.3);
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .open-sidebar-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 25px rgba(30, 60, 114, 0.4);
        }

        /* Sidebar Styles */
        .sidebar {
            position: fixed;
            top: 0;
            right: -400px; /* Hidden by default */
            width: 300px;
            height: 100%;
           /*  background: linear-gradient(180deg, #1a2980 0%, #26d0ce 100%); */
           background-color: #fff;
            color: white;
            transition: right 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
            /*box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);*/
            box-shadow: -10px 0 30px rgb(0 0 0 / 9%);
            z-index: 1200;
            display: flex;
            flex-direction: column;
        }

        .sidebar.open {
            right: 0;
        }
 
        /* Close Button */
        .close-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            font-size: 20px;
        }

        .close-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: rotate(90deg);
        }

        /* Menu Items */
        .sidebar-menu {
            padding: 20px 15px;
            flex: 1;
            overflow-y: auto;
        }

        .menu-item {
            list-style: none;
            margin-bottom: 0px;
        }

        .menu-link {
            display: flex;
            align-items: center;
            color: #000;
            text-decoration: none;
            padding: 18px 20px;
            border-radius: 12px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .menu-link:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateX(-10px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .menu-link.active {
            background: rgba(255, 255, 255, 0.2);
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
        }

        .menu-link.active::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 4px;
            background: #4facfe;
        }

        .menu-icon {
            width: 24px;
            height: 24px;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: #000;
        }

        .menu-text {
            font-size: 17px;
            flex: 1;    font-weight: 400;
        }

        .badge {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
        }

        /* Sidebar Footer */
        .sidebar-footer {
            padding: 20px 25px;
            background: rgba(0, 0, 0, 0.1);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .footer-title {
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            margin-bottom: 15px;
            font-weight: 600;
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            color: rgba(255, 255, 255, 0.8);
            font-size: 14px;
        }

        .contact-icon {
            width: 20px;
            margin-right: 10px;
            color: #4facfe;
        }

        /* Overlay when sidebar is open */
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 1150;
            display: none;
            /*backdrop-filter: blur(3px);*/
        }

        .overlay.active {
            display: block;
        }

        /* Content shifts when sidebar opens */
        .main-content.shifted {
            transform: translateX(-100px);
            transition: transform 0.4s ease;
        }

        .menu-separator{
                background-color: rgb(141 133 133);
                margin: 2rem 0;
        }
     


        @media (max-width: 768px) {
            .sidebar {
                width: 300px;
                right: -320px;
            }
            
            .open-sidebar-btn {
                padding: 12px 25px;
                font-size: 16px;
            }
            
            .main-content.shifted {
                transform: translateX(-50px);
            }
        }

        @media (max-width: 480px) {
            .sidebar {
                width: 100%;
                right: -100%;
            }
            
            .main-content.shifted {
                transform: translateX(0);
            }
            
        }

        #closeSidebar{
            display: none;
        }

         @media only screen and (max-width: 680px) {
            .padlisemmobnav{
                padding-left: 0px !important;
                padding-right: 0px !important;
            }
            #openSidebar{
                margin-right: 0rem !important;
            }
         }