﻿.main-content-wrapper {
    background: linear-gradient(135deg, #a7e6e6, #f9fbe7);
    overflow: hidden;
}

.bg-circle {
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.circle-top-end {
    top: -40px;
    right: -40px;
    width: 100px;
    height: 100px;
    background-color: rgba(13, 110, 253, 0.3); /* Darker primary tint */
}

.circle-bottom-start {
    bottom: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 193, 7, 0.3); /* Darker warning tint */
}

/*source services*/
.service-section {
    background: linear-gradient(180deg, #f7fafd, #e8f0fe);
}

.service-card {
    background: #fff;
    transition: all 0.3s ease-in-out;
    z-index: 1;
}

    .service-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 24px rgba(0, 123, 255, 0.15);
    }

.icon-box {
    width: 70px;
    height: 70px;
    background: #e7f1ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.service-card:hover .icon-box {
    background: #eae894;
}

 .hover-glow {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 80px;
    height: 80px;
    background: rgba(13, 110, 253, 0.15);
    border-radius: 50%;
    z-index: 0;
    transition: all 0.3s ease-in-out;
}

.service-card:hover .hover-glow {
    width: 120px;
    height: 120px;
    bottom: -40px;
    right: -40px;
}
