.social_days_welcome_section{
    background-color: var(--white-color);
    width: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;   
}
.primary-text-social-days{
    font-family: var(--font-main);
    font-size: 32px;
    color: var(--black-color);
    text-align: center;
    font-weight: 900;
    direction: rtl;
}
.primary-text-2-social-days{
    font-family: var(--font-main);
    font-size: 28px;
    color: var(--black-color);
    text-align: center;
    font-weight: 700;
    direction: rtl;
}
.secondary-text-social-days{
    font-family: var(--font-main);
    font-size: 24px;
    color: var(--black-color);
    text-align: center;
    font-weight: normal;
    direction: rtl;
}
.social_days_main_center_image{
    display: flex;
    justify-content: center;
    align-items: center;    
    z-index: 1;
    width: 70%;
}
.social_days_welcome_text_section{
  background-color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
}
.social_days_welcome_text_section label {
  color: var(--black-color);
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 100px;
  line-height: 1;
  display: inline;
}
.social_days_main_page_subtitle_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-bottom: 10px;
}
.form-group-whatsapp-social_days{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
    bottom: 40px;
    gap: 10px;
    left: 300px;
}
.form-group-whatsapp-text-social_days{
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--gray-2-color);
    font-weight: bold;
}

/* Filter Indicator - Red Dot */
.filter-indicator {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--red-color);
    border-radius: 50%;
    margin-right: 5px;
    vertical-align: middle;
}

/* Wall of Fame Slider */
.wall-of-fame-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    margin: 20px 0;
    padding: 0 20px;
}

.wall-of-fame-swiper {
    flex: 1;
    height: 400px;
    overflow: hidden;
}

.wall-of-fame-item {
    width: 100%;
    height: 350px;
    background-image: url('../images/main_images/test.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.wall-of-fame-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}
.wall-of-fame-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    z-index: 1;
    transition: transform 0.3s ease;
}
.wall-of-fame-item:hover .wall-of-fame-logo {
    transform: scale(1.1);
}

/* Navigation Arrows */
.wall-of-fame-button-next,
.wall-of-fame-button-prev {
    background: #333;
    color: #fff;
    border: none;
    font-size: 22px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    cursor: pointer;
    transition: background 0.2s ease;
    flex-shrink: 0;
}

.wall-of-fame-button-next:hover,
.wall-of-fame-button-prev:hover {
    background: #555;
}

/* Responsive */
@media (max-width: 768px) {
    .wall-of-fame-swiper {
        height: 300px;
        padding: 20px 50px;
    }

    .wall-of-fame-item {
        height: 250px;
    }

    .wall-of-fame-button-next,
    .wall-of-fame-button-prev {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .wall-of-fame-button-next {
        right: 10px;
    }

    .wall-of-fame-button-prev {
        left: 10px;
    }
}

@media (max-width: 480px) {
    .wall-of-fame-swiper {
        height: 250px;
        padding: 20px 40px;
    }

    .wall-of-fame-item {
        height: 200px;
    }
}
