/* Hide scrollbar while allowing scroll */
.custom-scroll {
    scrollbar-width: none;
    /* Firefox */
}

.custom-scroll::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Edge */
}

.bg-darkpurpel {
    background-color: #3D1655;
}

.bg-lightpurpel {
    background-color: #602685;
}

.bg-purpel {
    background-color: #774298;
}

.boderrounded {
    border-radius: 30px !important;
}

.fs-10 {
    font-size: 14px;
}

.fs-12 {
    font-size: 12px;
}

/*  */
.container-box {
    padding: 20px;
    border-radius: 10px;
    margin-top: 15px;
}

.inner-box {
    padding: 15px;
    border-radius: 10px;
}

.grid-box {
    height: 170px;
    border-radius: 5px;
}

.btn-group-overlap {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    position: relative;
}

.btn-custom {
    background-color: #3D1655;
    color: white;
    border: none;
    width: 85px;
    /* Fixed width */
    height: 70px;
    /* Fixed height */
    font-size: 12px;
    font-weight: bold;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease-in-out;
    text-align: center;
    overflow: hidden;
}

.btn-custom:hover {
    background-color: #602685;
    transform: translateY(-2px);
}

.buttonboxes {
    position: absolute;
    top: -30;
    margin-left: 15px !important;
}

.buttonboxes-contanier {
    position: relative;
    background-color: #774298;
    border-radius: 10px !important;
}

.custom-padding {
    padding: 90px 45px !important;
 
}

/* Responsive Fix for Small Screens */
@media (max-width: 1074px) {
    .buttonboxes {
        position: static;
        margin-left: 0px;
    }

    .buttonboxes-contanier {
        position: static;
        background-color: transparent;
    }
    .custom-padding {
        padding: 70px 35px !important;
     
    }
}
@media (max-width: 994px) {
    .custom-padding {
        padding: 45px 23px !important;
     
    }

}