﻿* {
    margin: 0px;
    padding: 0px;
}

#activityButtons {
    display: none;
}

.hero-slider {
    margin-bottom: 60px;
}
#heroCarousel .carousel-item {
    transition: transform 0.8s ease-in-out;
}

#heroCarousel .carousel-indicators {
    margin-bottom: 15px;
}

    #heroCarousel .carousel-indicators button {
        width: 9px;
        height: 9px;
        border-radius: 50%;
        border: 0;
        margin: 0 5px;
        opacity: 0.5;
        transition: all 0.3s ease;
    }

        #heroCarousel .carousel-indicators button.active {
            width: 11px;
            height: 11px;
            opacity: 1;
        }
.activity-list {
    display: flex;
    justify-content: center;
    gap: 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 1rem;
   width:100%;
}

    .activity-list::-webkit-scrollbar {
        display: none;
        height: 6px;
    }

    .activity-list::-webkit-scrollbar-thumb {
        background-color: #888;
        border-radius: 3px;
    }

    .activity-list .card {
        border-radius: 50%;
        background: #f3f3f3;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        position: relative;
    }

.circle-img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

    .circle-img img {
        width: 100%;
        height: 100%;
    }

.activity-item {
    width: 120px;
    min-width: 120px;
    flex-shrink: 0;
}

    .activity-item .card {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }

    .activity-item .card-body {
        margin-top: 8px;
        width: 100%;
        text-align: center;
    }

    .activity-item p {
        margin: 0;
        font-size: 14px;
    }

section {
    direction: rtl;
}

.card {
    transition: transform 0.2s, box-shadow 0.2s;
}

    .card:hover {
        transform: translateY(-5px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    }

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.view-all {
    text-decoration: none;
    color: #372967;
    font-weight: 600;
    font-size: 15px;
    transition: .3s;
}

    .view-all:hover {
        color: #5b3db8;
    }

    .view-all i {
        font-size: 18px;
        vertical-align: middle;
    }

.btn-load-more {
    background: transparent;
    border: none;
    color: #372967;
    font-size: 17px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

    .btn-load-more i {
        margin-left: 6px;
        font-size: 18px;
    }

    .btn-load-more:hover {
        color: #5b3db8;
        transform: translateY(-2px);
    }

    .btn-load-more:disabled {
        color: #999;
        cursor: not-allowed;
        transform: none;
        opacity: .7;
    }

@media (max-width:768px) {
    .activity-item {
        width: 85px;
        min-width: 85px;
        flex-shrink: 0;
    }

        .activity-item .card {
            width: 85px;
            height: 85px;
        }

    .circle-img {
        width: 70px;
        height: 70px;
    }

    .activity-item p {
        font-size: 12px;
        line-height: 1.2;
    }

    .activity-list {
        gap: 10px !important;
    }
}
