/* ========================================
   IMAGE CAROUSEL STYLES
   ======================================== */

/* Auto-rotating Image Carousel (Diseño e Imágenes) */
.service-image-container {
    position: relative;
    background: linear-gradient(135deg, #7b2cbf 0%, #4a148c 100%);
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease-in-out;
}

/* Clickable Image Carousel (Desarrollo Web) */
.service-image-carousel {
    position: relative;
    background: linear-gradient(135deg, #7b2cbf 0%, #4a148c 100%);
}

.carousel-image {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: bottom;
    display: block;
    margin: 0 auto;
    transition: opacity 0.3s ease-in-out;
}

/* Image Carousel Indicators (Dots) */
.image-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.image-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.image-dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.image-dot.active {
    background: #ff7b00;
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.3);
}