body {
    font-family: 'Poppins', sans-serif;
    background: #f5f7fa;
}

/* Slider */
.slider-content {
    background: rgba(0,0,0,0.5);
    padding: 30px;
    color: #fff;
    border-radius: 10px;
}

.slider-flex {
    display: flex;
    align-items: center;
}

.slider-nav {
    margin-right: 20px;
}


/* Services */
.service-card {
    background: #fff;
    padding: 25px;
    text-align: center;
    border-radius: 10px;
    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.glyph-icon {
    font-size: 34px;
    color: #1e88b6;
}

/* Stats */
.stats {
    display: flex;
    justify-content: center;
}

.chart-box {
    padding: 30px;
    background: #fff;
    border-radius: 10px;
    margin: 20px;
}

.chart-box i {
    font-size: 40px;
    color: #1e88b6;
}

/* Button */
.btn-success {
    border-radius: 25px;
}