    /* Background Color */
    .counter-facts {
        background: linear-gradient(to right, #6a11cb, #2575fc);
        padding-top: 50px;
        padding-bottom: 50px;
    }

    .bg-primary {
        background-color: #1400ff !important;
    }

    .bg-footer {
        background-color: #00eaff;
        color: #000;
    }

    /* Counter Card Styles */
    .counter {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        border-radius: 15px;
        background-color: #fff;
    }

    .counter:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }

    .counter-icon {
        background-color: #f1f1f1;
        border-radius: 50%;
        padding: 15px;
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .counter-value {
        font-size: 3rem;
        font-weight: 700;
        color: #2575fc;
    }

    h5 {
        font-weight: 600;
        text-transform: uppercase;
        color: #333;
        font-size: 1.1rem;
    }

    /* Animation FadeIn */
    .wow {
        visibility: hidden;
    }

    /* Smooth transition for dropdown */
    .dropdown-menu {
        display: none;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .dropdown-menu.show {
        display: block;
        opacity: 1;
    }

    /* Hover effect for the dropdown */
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        opacity: 1;
    }

    /* Smooth transition for navbar links */
    .nav-link {
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: #ffeb3b; /* Add a color change on hover */
    }

    /* Ensuring the navbar is fully responsive and smooth on mobile */
    .navbar-collapse {
        transition: height 0.3s ease;
    }

    