/* carousel.css */

/* Ensure default Slick Carousel arrows are hidden */
.slick-prev:before,
.slick-next:before {
    content: none !important;
}

/* Custom Arrow Styles */
.custom-arrow {
    background: none;
    border: none;
    z-index: 1000;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    opacity: 1;
    transition: opacity 0.3s ease;
    padding: 0;
}

/* Positioning for custom arrows */
.slick-prev.custom-arrow {
    left: -30px; /* Adjust as needed */
}

.slick-next.custom-arrow {
    right: -30px; /* Adjust as needed */
}

/* Style the Font Awesome icons */
.custom-arrow i {
    color: white;
    font-size: 30px;
    transition: transform 0.3s ease;
}

/* Enlarge arrows on hover */
.custom-arrow:hover i {
    transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .custom-arrow i {
        font-size: 24px;
    }

    .slick-prev.custom-arrow {
        left: -20px;
    }

    .slick-next.custom-arrow {
        right: -20px;
    }
}
