.counter-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: #e9483f;
    transition: transform 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .counter-card:hover {
        transform: translateY(-5px);
    }

.counter-icon {
    font-size: 32px;
    margin-right: 10px;
    color: #e9483f;
}

.counter-number {
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    color: #555;
}

.counter-text {
    margin: 0;
    color: #555;
}

#carouselExample .carousel-inner {
    height: 400px;
}

#carouselExample .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
