.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-title {
    font-family: Bricolage Grotesque, sans-serif;
    color: #007fd0;
    font-size: 16px;
    margin-bottom: 10px;
}

.services-heading {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 15px;
}

.services-highlight {
    color: #00cfff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    margin-top: 100px;
    margin-bottom: 100px;
}

.services-card {
    background-color: white;
    border-radius: 15px;
    padding: 30px 25px;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    transition: all 0.3s ease;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.services-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 160, 230, 0.15);
}

.services-icon-container {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -60px;
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.15) 0px 5px 15px 0px;
    position: relative;
}

.services-icon {
    color: #007fd0;
    font-size: 28px;
}

.services-card-title {
    color: #007fd0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 15px;
}

.services-card-text {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}


/* Hover effect for icon */
.services-card:hover .services-icon-container {
    background-color: #007fd0;
}

.services-card:hover .services-icon {
    color: white;
}

/* SVG icons for better styling */
.services-svg-icon {
    width: 36px;
    height: 36px;
    fill: #007fd0;
    transition: all 0.3s ease;
}

.services-card:hover .services-svg-icon {
    fill: white;
}

/* For tablets and smaller desktops */
@media screen and (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-heading {
        font-size: 28px;
    }
}

/* For mobile phones */
@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        place-items: center;
    }

    .services-heading {
        font-size: 24px;
    }

    .services-card {
        min-height: 250px;
        width: 80%;
        padding: 15px 10px;
    }

    .services-icon-container {
        margin-top: -50px;
        width: 70px;
        height: 70px;
    }

    .services-svg-icon {
        width: 28px;
        height: 28px;
    }

    .services-card-title {
        font-size: 16px;
    }

    .services-container {
        padding: 30px 15px;
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .services-heading {
        font-size: 20px;
    }

    .services-title {
        font-size: 14px;
    }

    .services-card-text {
        font-size: 13px;
    }
}
