#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    display: none;
    justify-content: center;
    align-items: center;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .text-md-start {
        text-align: center !important;
    }
}
@media (max-width: 768px) {
    #kart {
        font-size: 3rem;
        top: 50%;
    }
}
    .navbar-brand {
        font-size: 1.5rem;
        font-weight: bold;
        transition: transform 0.3s ease-in-out;
    }

        .navbar-brand:hover {
            transform: scale(1.1);
        }

    .search-section {
        background-color: #ffffff8c;
        padding: 20px;
        border-radius: 10px;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 80%;
        z-index: 10;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

        .search-section:hover {
            transform: translate(-50%, -50%) scale(1.02);
        }




    .btn-search {
        font-size: 1.2rem;
        padding: 10px 30px;
        border-radius: 8px;
        transition: all 0.3s ease-in-out;
    }

        .btn-search:hover {
            transform: scale(1.1);
        }

    .carousel-item img {
        height: 500px;
        object-fit: fill;
    }
    /* Dropdown menu */
    .dropdown-menu {
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0s 0.3s;
    }

        /* When the dropdown is shown */
        .dropdown-menu.show {
            opacity: 1;
            visibility: visible;
            transition: opacity 0.3s ease;
        }

    @media (max-width: 768px) {
        .search-section {
            text-align: center;
        }
    }

    @media (min-width: 992px) {
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
        }
    }


