
/* General Styles */
/* Statistics Section */
.statistics {
    background-color: lightblue;
    text-align: center;
    padding: 20px;
}

.statistics h2 {
    color: black;
}

.stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    padding: 10px;
}

.number {
    color: blue;
    font-size: 70px;
    margin-right: 40px;
}

.label {
    color: black;
}

/* Media Queries */
@media (max-width: 768px) {
    .stats {
        flex-direction: column;
    }

    .stat {
        margin: 5px 0;
    }
}


.testimonial-section {
    text-align: center;
    padding: 20px;
}

.testimonial {
    display: none;
}

.testimonial h2 {
    margin: 20px 0;
}

.testimonial-text {
    font-size: 18px;
}

.testimonial-info {
    margin-top: 20px;
}

.company-logo {
    max-width: 100px;
    margin: 0 auto;
}

.company-name {
    color: black;
    font-weight: bold;
    margin-top: 10px;
}

.testimonial-controls {
    margin-top: 20px;
}

.prev-testimonial,
.next-testimonial {
    font-size: 30px;
    cursor: pointer;
    margin: 0 20px;
}


    /* Style for Font Awesome Icons */
.feature-box .tumb i {
    font-size: 48px; /* Adjust the icon size as needed */
    color: #3498db; /* Change the icon color to your preference */
}

/* Style for "Blue Go" Buttons */
.feature-box .btn.btn-primary {
    background-color: #3498db; /* Button background color */
    color: #fff; /* Button text color */
    padding: 10px 20px; /* Adjust button padding as needed */
    border-radius: 5px; /* Rounded button corners */
    text-decoration: none;
    margin-top: 20px;/* Remove default link underline */
}

.feature-box .btn.btn-primary:hover {
    background-color: #2770a9; /* Button background color on hover */
}

