
.pill-heading {
    background: #8c8cff;
    width: auto;
    max-width: fit-content;
    padding: 5px 17px;
    border-radius: 20px;
    font-size: 16px;
}
/* Banner */
.sap-banner {
    background: linear-gradient(90deg, #6262fd, #00008d);
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sap-banner h1 {
    font-weight: 600;
}
/* Offer */
.sap-offer .sap-offer-item {
    border-radius: 10px;
    background: #f5f5f5;
    transition: 0.5s;
    height: 100%;
    min-height: 336px;
    text-align: start;
}
.sap-offer .sap-offer-item h5 {
    font-weight: 600;
}
.sap-offer .sap-offer-item:hover {
    transform: translateY(-5px);
    background: #f3efff;
    box-shadow: 0px 3px 4px rgba(0, 0, 0, 0.158);
    transform: scale(1.04512);
}
.sap-offer .sap-offer-item .sap-offer-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: transparent;
}
.sap-offer .sap-offer-item:hover .sap-offer-icon img {
    z-index: 9;
    position: relative;
    filter: brightness(100);
}
.sap-offer .sap-offer-item .sap-offer-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: #6262fd;
    transition: 0.5s;
    z-index: 1;
}
.sap-offer .sap-offer-item:hover .sap-offer-icon::after {
    height: 100%;
}
.sap-offer .sap-offer-item .sap-offer-icon {
    color: #5921da;
}
.sap-offer .sap-offer-item .sap-offer-icon, .sap-offer .sap-offer-item h4, .sap-offer .sap-offer-item p {
    transition: 0.5s;
}
.sap-offer .sap-offer-item:hover .sap-offer-icon {
    color: white;
}
.sap-offer .sap-offer-item:hover h4, .sap-offer .sap-offer-item:hover p {
    color: black;
}
.sap-about .about-meta {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}
.sap-about .about-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}
.sap-about .about-description {
    margin-bottom: 2rem;
    color: color-mix(in srgb, #4d4d4d, transparent 20%);
}
.sap-about .feature-list-wrapper {
    margin-bottom: 2rem;
}
.sap-about .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sap-about .feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}
.sap-about .feature-list li:last-child {
    margin-bottom: 0;
}
.sap-about .feature-list li i {
    color: #8c8cff;
    font-size: 1.25rem;
}
.sap-about .image-wrapper {
    position: relative;
}
.sap-about .image-wrapper .small-image {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 45%;
    border: 8px solid white;
}
.sap-about .about .image-wrapper .experience-badge {
    position: absolute;
    bottom: 5%;
    right: 5%;
    background-color: var(--accent-color);
    color: var(--contrast-color);
    padding: 1.5rem;
    border-radius: 0.5rem;
    text-align: center;
    min-width: 200px;
    animation: experience-float 3s ease-in-out infinite;
}
.sap-about .about .image-wrapper .experience-badge h3 {
    color: var(--contrast-color);
    font-size: 2.5rem;
    margin: 0;
    line-height: 0.5;
}
.sap-about .about .image-wrapper .experience-badge h3 span {
    font-size: 1rem;
    display: inline-block;
    margin-left: 0.25rem;
}
.sap-about .about .image-wrapper .experience-badge p {
    margin: 0.5rem 0 0;
    font-size: 0.875rem;
}
@keyframes experience-float {
    0% {
        transform: translateY(0);
   }
    50% {
        transform: translateY(-10px);
   }
    100% {
        transform: translateY(0);
   }
}
/* SAP CTA */
.sap-cta {
    background-image: linear-gradient(90deg, rgba(51, 51, 235, 0.795), rgba(0, 0, 141, 0.952)), url(../img/sap/wave-line.png);
    background-size: cover;
    background-position: bottom center;
}
/* SAP Indus */
.sap-indus .service-item {
    border-radius: 10px;
}
.sap-indus .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    height: 200px;
}
.sap-indus .service-item .service-img img {
    transition: 0.5s;
    height: 200px;
}
.sap-indus .service-item:hover .service-img img {
    transform: scale(1.1);
}
.sap-indus .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, 0.2);
    transition: 0.5s;
    z-index: 1;
}
.sap-indus .service-item:hover .service-img::after {
    height: 100%;
}
.sap-indus .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}
.sap-indus .service-item .service-img .service-icon img {
    color: #3d008d;
    transition: 0.5s;
}
.sap-indus .service-item:hover .service-img .service-icon img {
    transform: rotateX(360deg);
    color: white;
    filter: brightness(100);
}
.sap-indus .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: white;
    background: #00008d;
}
.sap-indus .service-item .service-img .service-icon img {
    height: auto;
}
.sap-indus .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    height: 100%;
}
.sap-indus .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}
.sap-indus .service-item .service-content .service-content-inner .h5 {
    font-size: 18px;
}
.sap-indus .service-item .service-content .service-content-inner .h5, .sap-indus .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}
.sap-indus .service-item .service-content .service-content-inner p {
    font-size: 14px;
    line-height: 26px;
    min-height: 130px;
}
.sap-indus .service-item:hover .service-content .service-content-inner h5, .sap-indus .service-item:hover .service-content .service-content-inner p {
    color: white;
}
.sap-indus .service-item:hover .service-content .service-content-inner .h5:hover {
    color: white;
}
.sap-indus .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: linear-gradient(90deg, #6262fd, #00008d);
    transition: 0.5s;
    z-index: 1;
}
.sap-indus .service-item:hover .service-content::after {
    height: 100%;
}
/* media query start */
@media (max-width: 992px) {
    .about-title {
        font-size: 2rem;
   }
    .about .image-wrapper .experience-badge {
        position: static;
        width: fit-content;
        margin: 0 auto;
   }
    .image-wrapper .small-image {
        position: static;
        width: 100%;
        margin: 0 auto;
        border: 0;
   }
    .image-wrapper .main-image {
        margin-left: 0;
   }
    .image-wrapper .images {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
   }
    .image-wrapper {
        padding-left: 0;
        margin-top: 3rem;
        display: flex;
        flex-direction: column;
        gap: 2rem;
   }
}
/* media query end */
