.footer-rc-content {
    margin-bottom: 100px;
}

.rc-footer {
    width: 100%;
    box-sizing: border-box;
}

/* Header Section Styles */
.rc-footer-header {
    text-align: center;
    margin-bottom: 80px;
}

.rc-footer-header h2 {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    position: relative;
    /* display: flex; */
    text-align: center;
}

.rc-footer-list-heading {
    text-align: center;
    margin: 40px 0 25px;
}

.rc-footer-list-heading h3 {
    color: #ffffff;
    font-size: 34px;
    font-weight: 700;
   padding-bottom: 18px;
}


.rc-footer-header p {
    font-size: 16px;
    color: #d3d3d3;
    margin-bottom: 20px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.5;
}

.rc-footer-cta {
    margin-top: 24px;
}

/* Custom CTA Button Styles */
.rc-footer-cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #0156fc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.rc-footer-cta-button:hover {
    background-color: #0156fc;
    color: #ffffffde;
}

/* Slider Section Styles */
.rc-footer-slider-section {
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    
}

.rc-footer-slider-section h3 {
    font-size: 34px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
}

.rc-footer-slider-subtext{
    font-size: 14px;
    color: #fff;
    margin: 0 auto;
    margin-bottom: 18px;
    border: 1px solid;
    padding: 6px 22px;
    border-radius: 40px;
    background-color: #ffffff17;
    font-weight: 500;
}

.rc-footer-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}




.rc-continent {
    flex: 1;
    min-width: 110px;
}

.rc-continent h3 {
    margin-top: 0;
    font-size: 22px;
    color: #ebebeb;
    padding-bottom: 5px;
    margin-bottom: 2px;
}

.rc-continent ul {
    list-style: none;
    padding: 0;
    margin: 0;
    align-items: center;
}

.rc-continent li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 2px;
    font-size: 14px;
}

.rc-continent li a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d3d3d3;
    text-decoration: none;
}

.rc-continent li img {
    vertical-align: middle;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.rc-show-all,
.rc-show-less {
    background: transparent;
    border: none;
    color: #d3d3d3;
    font-size: 14px;
    padding: 8px 0;
    cursor: pointer;
    text-align: left;
}

.rc-show-all:hover,
.rc-show-less:hover {
    background-color: transparent;
    text-decoration: underline;
}

.rc-footer-slider {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 150px;
}

.rc-slider-barrier {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 1200px;
}

.rc-slider-barrier::before,
.rc-slider-barrier::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}

.rc-slider-barrier::before {
    left: 0;
    background: linear-gradient(to right, #000a1e, transparent);
}

.rc-slider-barrier::after {
    right: 0;
    background: linear-gradient(to left, #000a1e, transparent);
}

.rc-slider-lane {
    display: flex;
    height: 90%;
    /* Width set by JavaScript */
}

.rc-slider-item {
    flex: 0 0 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
    border-radius: 8px;
    margin-right: 10px;
}

.rc-slider-item:hover {
    transform: scale(1.05);
}

.rc-slider-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    width: 100%;
    height: 100%;
}

.rc-slider-img {
    width: 120px;
    height: 80px;
    object-fit: contain;
    border-radius: 5px;
}

.rc-slider-item span {
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-align: center;
}

.rc-slider-empty {
    padding: 10px;
    color: #666;
    font-style: italic;
    text-align: center;
    width: 100%;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .rc-slider-barrier {
        max-width: 900px;
    }

    .rc-slider-item {
        flex: 0 0 120px;
        margin-right: 8px;
    }

    .rc-slider-img {
        width: 100px;
        height: 70px;
    }

    .rc-slider-item span {
        font-size: 13px;
    }
}

@media (max-width: 768px) {
    .rc-footer-header h2 {
        font-size: 32px;
    }

    .rc-footer-header p {
        font-size: 14px;
    }
    .rc-footer-slider-section {
        margin-bottom: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    
    .rc-footer-slider-section h3 {
        font-size: 28px;
    }

    .rc-slider-barrier {
        max-width: 600px;
    }

    .rc-slider-item {
        flex: 0 0 100px;
        margin-right: 6px;
    }

    .rc-slider-img {
        width: 80px;
        height: 60px;
    }

    .rc-slider-item span {
        font-size: 12px;
    }

    .rc-slider-barrier::before,
    .rc-slider-barrier::after {
        width: 30px;
    }
}

@media (max-width: 480px) {
    .rc-footer-header h2 {
        font-size: 26px;
    }

    .rc-footer-header p {
        font-size: 13px;
    }
   .rc-footer-slider-section {
        margin-bottom: 15px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
    }
    .rc-footer-slider-section h3 {
        font-size: 24px;
    }

    .rc-slider-barrier {
        max-width: 100%;
    }

    .rc-slider-item {
        flex: 0 0 80px;
        margin-right: 4px;
    }

    .rc-slider-img {
        width: 60px;
        height: 50px;
    }

    .rc-slider-item span {
        font-size: 11px;
    }

    .rc-footer-cta-button {
        font-size: 14px;
        padding: 10px 20px;
    }

    .rc-slider-barrier::before,
    .rc-slider-barrier::after {
        width: 20px;
    }
}
