/* 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 !important;
}

.fs-12 {
    font-size: 12px !important;
}
.fs-14 {
    font-size: 12px !important;
}

.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;

 
}
.news-container {
    padding: 15px;
    border-radius: 10px 10px 0px 0px;
    text-align: center;
    margin-bottom: 20px;
    border-bottom: 2px solid rgb(37, 37, 37);
}
.news-card {
    border-radius: 10px;
    overflow: hidden;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: black;
    border: 2px solid #333;
    text-decoration: none;
    transition: transform 0.3s ease-in-out;
}
.news-card:hover {
    transform: scale(1.05);
    cursor: pointer;
}
.news-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
}
.news-icon {
    width: 70px;
    height: 70px;
}
.full-radius{
    border-radius: 50% !important;
    border: 2px solid rgb(53, 52, 52);
}
.news-icon2 {
    width: 45px;
    height: 45px;
}
.news-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.news-form {
    background-color: #d9d9d9;
    box-shadow: 0px 0 15px rgba(0, 0, 0, 0.67);
}
.news-input, .news-select {
    border: 2px solid black;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}

/* 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;
     
    }
    .news-icon {
        width: 50px !important;
        height: 50px !important;
    }
    .news-icon2 {
        width: 20px !important;
        height: 20px !important;
    }
}