/* Services Carousel Styles */
.services-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-section__title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.services-section__desc {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    color: #666;
}

.carousel-container {
    position: relative;
    max-width: 1500px;
    margin: 0 auto;
    overflow: visible; /* allow buttons to be fully visible */
}

.services-carousel {
    overflow: hidden;
    border-radius: 15px;
}

.services-section__items {
    display: flex;
    transition: transform 0.5s ease;
    gap: 20px;
    padding: 20px 0;
}

.services-item {
    min-width: 150px;
    background: white;
    border-radius: 15px;
    padding: 20px 12px;
    text-decoration: none;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.services-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.services-item__container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    height: 100%;
    width: 40%;
}

.services-item__title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.services-item__title img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.services-item__title span {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.service-icon {
    font-size: 32px;
    color: #03a4ed;
    margin-bottom: 15px;
    display: block;
}

.services-item__desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    flex-grow: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #03a4ed;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 164, 237, 0.3);
}

.carousel-btn:hover {
    background: #0288c5;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn-left {
    left: 10px;
}

.carousel-btn-right {
    right: 10px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: #03a4ed;
    transform: scale(1.2);
}

.carousel-dot:hover {
    background: #03a4ed;
}

@media (max-width: 768px) {
    .services-item {
        min-width: 160px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .carousel-btn-left { left: 10px; }
    .carousel-btn-right { right: 10px; }
    
    .services-section__title {
        font-size: 32px;
    }
    
    .services-section__desc {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .services-item {
        min-width: 140px;
    }
    
    .carousel-btn { width: 36px; height: 36px; font-size: 12px; }
    .carousel-btn-left { left: 8px; }
    .carousel-btn-right { right: 8px; }
}

/* Service Icon Styling */
.service-icon {
    font-size: 32px;
    color: #03a4ed;
    margin-bottom: 15px;
    display: block;
}