/* GCR Slider Style */

.gcr-slider {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    height: auto;
}

.owl-nav .owl-prev, .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.8); /* Semi-transparent background */
    border: 2px solid #fff; /* White border */
    width: 50px;
    height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: #333;
    border-radius: 0; /* Circular shape */
    box-shadow: 0 0 5px rgba(0,0,0,0.3); /* Optional: Add a shadow for better visibility */
}

.owl-nav .owl-prev {
    left: 10px;
}

.owl-nav .owl-next {
    right: 10px;
}

.owl-nav .owl-prev:hover, .owl-nav .owl-next:hover {
    background: rgba(255, 255, 255, 1); /* Fully opaque on hover */
}

.owl-nav .owl-prev:before, .owl-nav .owl-next:before {
    display: none;
}