/* Services Section */
.services {
    text-align: center;
    padding: 50px 20px;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #222;
}
/* services */
.service-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1 1 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 300px;
    min-height: 500px;
}

.service-card .btn {
    margin-top: auto;
}

@media (max-width: 768px) {
    .service-card {
        flex: 1 1 calc(50% - 20px);
        min-width: 250px;
    }
}

@media (max-width: 480px) {
    .service-card {
        flex: 1 1 100%;
    }
}

.speed-indicator {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 15px;
}

.progress-circle {
    transform: rotate(-90deg);
    width: 100px;
    height: 100px;
}

.background-circle {
    fill: none;
    stroke: #ddd;
    stroke-width: 8;
}

.progress-bar {
    fill: none;
    stroke: red;
    stroke-width: 8;
    stroke-dasharray: 283;
    stroke-dashoffset: 283;
    transition: stroke-dashoffset 1s ease;
}

.speed-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 14px;
    font-weight: bold;
    text-align: center;
}
