/* body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
} */

.service-section-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    padding-top: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.custom-service-card {
    background: #00bfff1c;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent;
}

.custom-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background-color: #1b6baa;
    border-color: #1b6baa;
    color: #ffffff;
}

.custom-service-card:hover h3,
.custom-service-card:hover p {
    color: #ffffff;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background-color: #ffffff;
    border: 2px solid #1b6baa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.custom-service-card:hover .service-icon-wrapper {
    background-color: #ffffff;
    border-color: #ffffff;
}

.service-icon {
    width: 40px;
    height: 40px;
}

.service-title {
    font-size: 20px;
    margin: 10px 0;
    color: #333;
    transition: color 0.3s ease;
}

.service-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.service-button {
    width: 58px;
    height: 58px;
    background-color: #00bfff; /* Blue background */
    border: none;
    border-radius: 50%; /* Circular shape */
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    margin: 15px auto 0;
}

.service-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}

.service-button i {
    color: white; /* Arrow color */
    font-size: 24px;
}