﻿body {
    font-family: 'Poppins', sans-serif;
}

.logo {
    height: 60px;
}

.header-bar {
    background-color: #fff;
    border-bottom: 1px solid #ddd;
    padding: 10px 20px;
}

.profile-toggle {
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    transition: 0.3s ease;
    color: #333;
}

    .profile-toggle:hover {
        background-color: #388e3c;
        color: #fff !important;
    }

.profile-dropdown-menu {
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    border: 1px solid #ddd;
}

    .profile-dropdown-menu .dropdown-item:hover {
        background-color: #388e3c;
        color: #fff;
    }

.navbar-nav .nav-link {
    padding: 0.5rem 1rem;
    font-weight: 500;
}

@media (max-width: 991px) {
    .navbar-nav .nav-link {
        padding: 0.5rem 0;
    }
}



footer a {
    text-decoration: none;
}

.footer-nav a {
    display: block;
    color: #6c757d;
    margin-bottom: 6px;
}

.footer-heading {
    font-weight: bold;
    margin-bottom: 10px;
}

.bg-cl {
    background-color: #dce2ff;
}

.footer-social a {
    font-size: 1.2rem;
    color: #6c757d; /* Bootstrap's text-muted */
    transition: color 0.3s ease, transform 0.3s ease;
}

    .footer-social a:hover {
        transform: scale(1.2);
    }

.footer-social i:hover {
    color: #01603b;
}



[wa-tooltip] {
    position: relative;
    cursor: default;
}

    [wa-tooltip]:hover::before {
        content: attr(wa-tooltip);
        font-size: 16px;
        text-align: center;
        position: absolute;
        display: block;
        right: calc(0% - 100px);
        min-width: 200px;
        max-width: 200px;
        bottom: calc(100% + 40px);
        transform: translate(-50%);
        animation: fade-in 500ms ease;
        background: #00E785;
        border-radius: 4px;
        padding: 10px;
        color: #ffffff;
        z-index: 1;
    }

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}