.top-info-bar {
    background-color: #003366;
    font-size: 14px;
}

.contact-item {
    padding: 3px 8px;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-item:hover {
    background-color: #d9f0ff;
    color: #007bff !important;
    text-decoration: none;
}

.hover-bounce:hover {
    animation: bounce 0.5s;
}

.btn-outline-primary:hover {
    background-color: #007bff;
    color: #fff;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: #fff;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-10px);
    }

    50% {
        transform: translateY(0px);
    }

    70% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }
}

.feature-box {
    cursor: pointer;
    transition:
        transform 0.4s,
        box-shadow 0.4s;
}

.feature-box:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}

#notificationBell .badge {
    position: absolute;
    top: -5px;
    right: -5px;
    font-size: 0.75rem;
    padding: 3px 6px;
    border-radius: 50%;
}

.navbar-nav .nav-item .nav-link {
    position: relative;
    color: #333;
    font-size: 16px;
    padding: 10px 15px;
    text-decoration: none;
    overflow: hidden;
}

/* Parallelogram background effect */
.navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #42beee;
    transform: skewX(-20deg);
    transform-origin: bottom left;
    transition:
        transform 0.3s ease,
        width 0.3s ease;
    z-index: -1;
    /* Ensure it stays behind the text */
    width: 0;
}

/* Hover effect */
.navbar-nav .nav-item .nav-link:hover::after {
    width: 100%;
    transform: skewX(0deg);
    /* No skew on hover, making it appear like a smooth background expansion */
}

/* Hover text color change */
.navbar-nav .nav-item .nav-link:hover {
    color: white;
}

/*navbar stick part */
.sticky-header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: #fff;
}
