/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Counter Section */
.counter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                url('../images/counter-bg.jpg') no-repeat center center/cover;
    padding: 80px 0;
    color: white;
    text-align: center;
}

.counter-item {
    padding: 20px;
    margin: 15px 0;
    transition: all 0.3s ease;
}

.counter-item:hover {
    transform: translateY(-10px);
}

.counter {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
    color: #ffc107;
    animation: countUp 1s ease-out;
}

.counter-title {
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Service Cards */
.service-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    background: white;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.service-card .card-body {
    padding: 30px;
}

.service-card .card-title {
    color: #333;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-card .card-text {
    color: #666;
    margin-bottom: 20px;
}

.service-card .icon {
    font-size: 50px;
    color: #ffc107;
    margin-bottom: 20px;
}

/* Animation Classes */
.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}
