.expertise-section {
    padding: 30px 0px;
}

.impact-section {
    background-color: #09379d;
    min-height: 400px;
    display: flex;
    align-items: center;
}
.positionDiv {
    position: absolute;
    top: 20px;
    right: 130px;
    width: 40%;
}
.impact-title {
    font-family: "Gilroy-Bold";
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    margin-bottom: 20px;
}

.impact-description {
    font-family: "Gilroy-Medium";
    font-weight: 400;
    font-size: 16px;
    color: #fff;
}

/* Card Styling */
.service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 20px 20px;
    height: 85%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
    width: 85%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
}

.service-card p {
    margin-top: 15px;
    margin-bottom: 0;
    color: #09052c;
    font-family: "Gilroy-Medium";
    font-weight: 400;
    font-size: 13px;
    text-align: center;
}

/* Icon Box Styling */
.icon-box {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Specific Icon Colors to match the image */
.color-1 {
    color: #00d2d3;
} /* Teal */
.color-2 {
    color: #ff9f43;
} /* Orange */
.color-3 {
    color: #a29bfe;
} /* Purple */
.color-4 {
    color: #ff9ff3;
} /* Pink */
.color-5 {
    color: #54a0ff;
} /* Blue */
.color-6 {
    color: #1dd1a1;
} /* Green */

