/* Glass Card Styles */
.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    box-sizing: border-box;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.card-row {
     display: flex;
    align-items: center;      /* κάθετα στο κέντρο */
    justify-content: center;  /* οριζόντια στο κέντρο */
    gap: 8px;
    margin-bottom: 0.5rem;
}

.glass-card .icon {
    color: #93c5fd;
    margin-right: 1rem;
}

.number {
    color: white;
}

.label {
    color: rgba(255, 255, 255, 0.8);
}


/*swiper Customization */
.swiper-pagination-bullet {
    background: #fff;
}

.swiper-pagination-bullet-active {
    background: #3AA6B9;
}

.swiper {
    width: 100%;
    padding: 33px 0; /* Προσθήκη padding για να μην κολλάνε τα βελάκια */
}

.swiper-slide {
    height: auto;
}

@media (max-width: 480px) {
    .icon {
        margin-right: 0.3rem;
    }
}