.icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.icon-card {
    background: var(--card-bg);
    border-radius: 18px;
    padding: 34px 22px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.icon-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, var(--primary), #60a5fa);
    opacity: 0;
    transition: 0.35s;
}

.icon-card:hover::before {
    opacity: 0.06;
}

.icon-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.icon-wrap {
    width: 64px;
    height: 64px;
    margin: auto auto 18px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary), #60a5fa);
    color: #fff;
    font-size: 26px;
}

.icon-card h4 {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}


.services-sec .card-box-info {
    color: #6f7475;
    background-color: #fff;
    border-radius: 12px;
    padding: 0px;
    font-size: 16px;
    line-height: 24px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}
.services-sec .card-box-info::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    transition: 0.6s;
    z-index: 0;
    background-color: #f98125;
    clip-path: circle(calc(6.25rem + 4.5vw) at 0% 100%);
}
.services-sec .card-box-info:hover::before {
  clip-path: circle(110vw at 100% 100%);
  transition: 1.2s;
}

.services-sec .card-box-info .circle-part {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-sec .card-box-info .circle {
  position: relative;
  width: 200px;
  height: 200px;
  z-index: 0;
}

.card-box-info:hover .title, .card-box-info:hover p {
    color: #ffffff;
}


@media screen and (max-width: 1199px) {
    .services-sec .card-box-info {
        padding: 15px;
    }
    .services-sec .card-box-info:hover{
        background: #f98125;
    }
    .services-sec .card-box-info .circle {
        clip-path: none !important;
        width: 175px;
        height: 175px ;
    }
    .services-sec .card-box-info::before {
        display: none;
    }
    .card-box-info picture img{
        border-radius: 10px;
    }
    .services-sec .card-box-info .p-4 {
        padding: 0rem 1rem !important;
    }
}

@media screen and (max-width: 576px) {
    .services-sec .card-box-info {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-direction: column;
        padding: 15px 0;
        text-align: center !important;
    }
    .services-sec .card-box-info::before {
        display: none;
    }
    .services-sec .card-box-info .p-4 {
        padding: 1rem !important;
    }
    
}

.featured-icon-box {
    border-radius: 10px;
    overflow: hidden;
}
.featured-icon-box:before {
    border-bottom-width: 10px;
}
.hds-section__grey-bg {
    background: #e8e8e8;
}
.hds-section {
    display: flex;
    align-content: center;
    flex-wrap: wrap;
    border-radius: 10px;
}
.hds-section .icon-img{
    width: 75px;
    margin-bottom: 15px;
}

.box-icon-modern-icon {
    width: 75px;
    margin: 0 auto;
}
.hds-section__text {
    padding: 0 50px;
}

.row-reverse .hds-section__text {
    text-align: right;
}
.box-icon-modern-icon img {
    filter: invert(49%) sepia(85%) saturate(531%) hue-rotate(342deg) brightness(104%) contrast(95%);
}