/* Change 01/04/25 */

.services-section {
     background: #F2F5F7;
     padding: 50px 0 150px 0;
}

.services-section .services {
     background: var(--white);
     width: 100%;
     padding: 30px;
     border-radius: 15px;
     box-shadow: 0px 4px 4px 0px rgba(53, 18, 91, 0.15);
}

.services-section .services .service-point {
     margin-bottom: 10px;
}

.services-section .services .heading-style {
     display: flex;
     flex-wrap: nowrap;
     align-items: center;
     gap: 10px;
     padding: 5px 0;
     margin-bottom: 10px;
}

.services-section .services .heading-style .abt-title-img img {
     width: 29px;
}

.services-section .services .heading-style span {
     font-size: 1.1rem;
     font-weight: 700;
}

.services-section .services .services-content {
     margin-top: 40px;
}

.services-section .services .services-content .services-img {
     display: flex;
     height: 100%;
     align-items: center;
     justify-content: center;
}

.services-section .services .services-content .services-img img {
     width: 100%;
     max-width: 450px;
}

.services-section .services .services-content .services-content-box {
     margin-bottom: 15px;
}

.services-section .services .services-content .services-content-box .title {
     font-size: 1.25rem;
     color: var(--primary-color);
     font-weight: bold;
}

.services-section .services .services-content .services-content-box .strong {
     margin: 10px 0;
     font-weight: 700;
}

.services-section .services .services-content .services-content-box .justify {
     text-align: justify;
}

.services-section .services .services-content .services-content-box .service-cards {
     margin: 20px 0;
}

.services-section .services .services-content .services-content-box .service-cards .service-card {
     position: relative;
     background: var(--white);
     border-radius: 8px;
     border: 1px solid var(--white);
     box-shadow: 0px 0px 11px 0px rgba(0, 0, 0, 0.13);
     padding: 12px;
     overflow: hidden;
     transition: all 0.6s ease-out;
     min-height: 130px;
     height: 100%;
}

.services-section .services .services-content .services-content-box .service-cards .service-card .ball {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     /* z-index: -1; */
     background: var(--white);
     position: absolute;
     right: 5%;
     bottom: -30%;
     transition: all 0.6s ease-out;
}

.services-section .services .services-content .services-content-box .service-cards .service-card .ball:last-child {
     bottom: -16%;
     right: -8%;
}

.services-section .services .services-content .services-content-box .service-cards .service-card:hover {
     background: #FFFCF8;
     border-color: var(--primary-color);
     cursor: default;
}

.services-section .services .services-content .services-content-box .service-cards .service-card:hover .ball {
     background: #4530ba23;
}

.services-section .services .services-content .services-content-box .service-cards .service-card .sc-title {
     font-weight: bold;
     color: var(--primary-color);
     margin-bottom: 5px;
}

.services-section .services .services-content .services-content-box .contact-btn button,.services-section .services .services-content .services-content-box .contact-btn a.button {
     border-radius: 55px;
     background: linear-gradient(90deg, #4530BA 0%, #6C32AD 100%);
     color: var(--white);
     padding: 10px 30px;
     border: none;
     font-weight: 600;
     transition: all 0.6s ease;
     margin-top: 5px;
     text-decoration: none;
}

.services-section .services .services-content .services-content-box .contact-btn button:hover,.services-section .services .services-content .services-content-box .contact-btn a.button:hover {
     background: linear-gradient(90deg, #FFE259 0%, #FFA751 100%);
     color: var(--primary-color);
}

.services-section .services .why-choose {
     margin-top: 20px;
}

.services-section .services .why-choose-cards {
     display: flex;
     flex-wrap: wrap;
     justify-content: space-evenly;
     align-items: start;
     margin: 20px 0 10px 0;
}

.services-section .services .why-choose-cards .card-wrapper {
     max-width: 228px;
}

.services-section .services .why-choose-cards .card-wrapper .wc-card {
     display: flex;
     align-items: center;
     text-align: center;
     flex-direction: column;
     gap: 15px;
}

.services-section .services .why-choose-cards .card-wrapper .wc-card .wc-icon {
     position: relative;
     width: 100%;
     max-width: 212px;
     height: auto;
     max-height: 212px;
     aspect-ratio: 1 / 1;
     border-radius: 50%;
     object-fit: cover;
     background: #E6DFFF;
     border: 1px solid var(--primary-color);
     display: flex;
     align-items: center;
     justify-content: center;
}

.services-section .services .why-choose-cards .card-wrapper .wc-card .wc-icon .num {
     position: absolute;
     left: 0%;
     top: 0%;
     height: 55px;
     width: 55px;
     background: var(--white);
     border: 1px solid var(--primary-color);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: bold;
     font-size: 1.25rem;
     color: var(--primary-color);
}

.services-section .services .why-choose-cards .card-wrapper .wc-card .wc-body .wc-title {
     font-weight: bold;
     color: var(--black);
     margin-bottom: 5px;
     font-size: 1.1rem;
}

.services-section .services .why-choose-cards .card-wrapper .wc-card .wc-body p {
     color: var(--black);
}