.industry-card {
    background: #fff;
    border: 1px solid #d7e3ff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.industry-img {
    height: 320px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    padding: 20px;
    width:100%;

}

.bg-blue {
    /* background: linear-gradient(
        90deg,
        #f7f2ee 0%,
        #dce7ff 100%
    ); */
        /* background: linear-gradient(80deg, #80a7ad -10.68%, #eaa899 96.14%); */
        background-color: #f4fafd;
}

.bg-orange {
    /* background: linear-gradient(
        90deg,
        #fff2e9 0%,
        #ffd9bb 100%
    ); */
        /* background: linear-gradient(80deg, #80a7ad -10.68%, #eaa899 96.14%); */
        background-color: #f4fafd;
}

.industry-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.industry-content {
    padding: 24px 28px 40px;
    position: relative;
}

.industry-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
}

.industry-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 0;
}

.arrow-btn {
    position: absolute;
    right: 25px;
    bottom: 20px;
    font-size: 20px;
    color: #2563eb;
    text-decoration: none;
}

.arrow-btn:hover {
    color: #2a7a81;
}

#benefitsCarousel {
    position: relative;
    padding: 0 60px;
    width: 96%;
    margin: auto;
}

.custom-arrow {
    width: 45px;
    height: 45px;
    background: #2a7a81;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 0;
}

.carousel-control-next {
    right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}