/* Zodiac Carousel Styles */
.zodiac-section-wrapper {
    position: relative;
    padding: 20px 0;
    /* overflow: hidden; */
}

.zodiac-carousel .item {
    text-align: center;
    padding: 10px;
    transition: all 0.3s ease;
}

.zodiac-circle {
    width: 140px;
    height: 180px;
    background-color: #120a21;
    /* Deep dark purple/black */
    border-radius: 70px;
    margin: 0 auto 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    border: none;
    /* Clean look */
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.zodiac-carousel .item:hover .zodiac-circle {
    transform: translateY(-3px);
    background-color: #000;
    /* Subtle darken on hover */
}

.zodiac-circle img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.zodiac-name {
    font-size: 15px;
    font-weight: 500;
    color: #333;
    display: block;
    margin-top: 5px;
}

/* Custom Navigation Arrows */
.zodiac-carousel .owl-nav button.owl-prev,
.zodiac-carousel .owl-nav button.owl-next {
    position: absolute;
    top: 100px;
    /* Center with the circle (100px height / 2) */
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: #e6e6e6 !important;
    /* Light grey */
    color: #333 !important;
    /* Dark arrow */
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 24px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0 !important;
}

.zodiac-carousel .owl-nav button.owl-prev:hover,
.zodiac-carousel .owl-nav button.owl-next:hover {
    background-color: #d4d4d4 !important;
    /* Slightly darker grey on hover */
    color: #000 !important;
}

.zodiac-carousel .owl-nav button.owl-prev {
    left: 0px;
}

.zodiac-carousel .owl-nav button.owl-next {
    right: 0px;
}

.zodiac-carousel .owl-nav button span {
    line-height: 1;
    margin-top: -4px;
    font-weight: bold;
}


/* Mobile Responsiveness */
@media (max-width: 768px) {
    .zodiac-circle {
        width: 110px;
        height: 130px;
    }

    .zodiac-name {
        font-size: 13px;
    }

    .zodiac-carousel .owl-nav button.owl-prev,
    .zodiac-carousel .owl-nav button.owl-next {
        width: 35px;
        height: 35px;
        font-size: 18px !important;
        top: 70px;
        /* Center with 80px circle */
    }

    .zodiac-carousel .owl-nav button.owl-prev {
        left: -5px;
    }

    .zodiac-carousel .owl-nav button.owl-next {
        right: -5px;
    }
}