/* Fueling Ambitious Cards Section Css Start */

.fueling-ambitious-ventures-section .fueling-ambitious-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 30px;
}

.fueling-ambitious-ventures-section .fueling-ambitious-card {
    position: relative;
    min-height: 340px;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    background: #000000;
    isolation: isolate;
}

.fueling-ambitious-ventures-section .fueling-ambitious-card > img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.45s ease;
}

.fueling-ambitious-ventures-section .fueling-card-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(222, 37, 58, 0.6);
    transition: opacity 0.35s ease;
}

.fueling-ambitious-ventures-section .fueling-card-normal-content {
    position: absolute;
    left: 23px;
    right: 23px;
    bottom: 28px;
    z-index: 2;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.fueling-ambitious-ventures-section .fueling-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 14px;
    border-radius: 50%;
    background: #ffffff;
}

.fueling-ambitious-ventures-section .fueling-card-icon img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.fueling-ambitious-ventures-section .fueling-card-normal-content h3 {
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.3;
    text-transform: capitalize;
}

.fueling-ambitious-ventures-section .fueling-card-hover-content {
    position: absolute;
    inset: 0;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 72px 35px 35px;
    background: #000000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.fueling-ambitious-ventures-section .fueling-card-hover-content p {
    margin: 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.35;
    text-transform: capitalize;
}

.fueling-ambitious-ventures-section .fueling-ambitious-card:hover > img {
    opacity: 0;
    transform: scale(1.06);
}

.fueling-ambitious-ventures-section .fueling-ambitious-card:hover .fueling-card-overlay {
    opacity: 0;
}

.fueling-ambitious-ventures-section .fueling-ambitious-card:hover .fueling-card-normal-content {
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
}

.fueling-ambitious-ventures-section .fueling-ambitious-card:hover .fueling-card-hover-content {
    opacity: 1;
    visibility: visible;
}

/* 1199px */
@media (max-width: 1199px) {

    .fueling-ambitious-ventures-section .fueling-ambitious-cards-wrapper {
        gap: 30px 24px;
    }

    .fueling-ambitious-ventures-section .fueling-ambitious-card {
        min-height: 310px;
    }

    .fueling-ambitious-ventures-section .fueling-card-hover-content {
        padding: 58px 28px 30px;
    }

    .fueling-ambitious-ventures-section .fueling-card-hover-content p {
        font-size: 15px;
    }
}

/* 991px */
@media (max-width: 991px) {

    .fueling-ambitious-ventures-section .fueling-ambitious-cards-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .fueling-ambitious-ventures-section .fueling-ambitious-card {
        min-height: 320px;
    }
}

/* 767px */
@media (max-width: 767px) {

    .fueling-ambitious-ventures-section .fueling-ambitious-cards-wrapper {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fueling-ambitious-ventures-section .fueling-ambitious-card {
        min-height: 300px;
    }

    .fueling-ambitious-ventures-section .fueling-card-hover-content {
        padding: 55px 25px 30px;
    }
}

/* 575px */
@media (max-width: 575px) {

    .fueling-ambitious-ventures-section .fueling-ambitious-card {
        min-height: 280px;
        border-top-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }

    .fueling-ambitious-ventures-section .fueling-card-hover-content p {
        font-size: 14px;
    }
}

/* Fueling Ambitious Cards Section Css End */



/* <!-- App Services Section Css Start --> */
.app-services-section {
    background-color: #fff;
    padding: 140px 0 70px;
}

.app-services-section__inner {
    width: 100%;
}

.app-services-section__heading {
    margin: 0 auto 72px;
    text-align: center;
    padding: 0 20px;
}

.app-services-section__title {
    margin: 0;
    color: #000;
    letter-spacing: -0.5px;
}

.app-services-section__highlight {
    color: #e53946;
    font-weight: 400;
}

.app-services-section__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    align-items: stretch;
}

.app-services-section__stat-item {
    text-align: center;
    padding: 0 38px;
    border-right: 1px solid #d9d9d9;
}

.app-services-section__stat-item--last {
    border-right: 0;
}

.app-services-section__stat-number {
    margin: 0 0 22px;
    color: #e53946;
    font-size: 38px;
    line-height: 1;
    font-weight: bold;
}

.app-services-section__stat-text {
    margin: 0 auto;
    max-width: 230px;
    color: #7a7a7a;
    font-size: 17px;
    line-height: 1.7;
    font-weight: 400;
}

@media (max-width: 1199px) {
    .app-services-section {
        padding: 100px 0 60px;
    }

    .app-services-section__heading {
        margin-bottom: 60px;
    }

    .app-services-section__stat-item {
        padding: 0 24px;
    }

    .app-services-section__stat-text {
        font-size: 15px;
        line-height: 1.6;
    }
}

@media (max-width: 991px) {
    .app-services-section__stats {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 50px;
    }

    .app-services-section__stat-item {
        border-right: 0;
        padding: 0 24px;
    }

    .app-services-section__stat-item:nth-child(1),
    .app-services-section__stat-item:nth-child(3) {
        border-right: 1px solid #d9d9d9;
    }
}

@media (max-width: 767px) {
    .app-services-section {
        padding: 35px 0 45px;
    }

    .app-services-section__heading {
        margin-bottom: 20px;
        padding: 0;
    }

    .app-services-section__stats {
        grid-template-columns: 1fr;
        row-gap: 35px;
    }

    .app-services-section__stat-item,
    .app-services-section__stat-item:nth-child(1),
    .app-services-section__stat-item:nth-child(3) {
        border-right: 0;
        border-bottom: 1px solid #d9d9d9;
        padding: 0 20px 35px;
    }

    .app-services-section__stat-item--last {
        border-bottom: 0;
        padding-bottom: 0;
    }

    .app-services-section__stat-number {
        margin-bottom: 15px;
        font-size: 24px;
    }

    .app-services-section__stat-text {
        font-size: 14px;
        line-height: 1.6;
        max-width: 100%;
    }
}
/* <!-- App Services Section Css End --> */



/* Our Success Story UAE Section CSS Start */

.our-success-story-uae-section .our-success-story-uae-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 28px;
}

.our-success-story-uae-section .our-success-story-uae-card {
    display: grid;
    grid-template-columns: 224px 1fr;
    gap: 20px;
    min-height: 344px;
    padding: 15px;
    border-radius: 20px;
    background: #f6f6f6;
}

.our-success-story-uae-section .success-story-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.our-success-story-uae-section .success-story-logo {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    height: 60px;
    margin-bottom: 15px;
}

.our-success-story-uae-section .success-story-logo img {
    max-width: 125px;
    max-height: 66px;
    object-fit: contain;
}

.our-success-story-uae-section .reliant-logo img {
    width: 116px;
    height: 57px;
}

.our-success-story-uae-section .gsl-logo img {
    width: 66px;
    height: 66px;
}

.our-success-story-uae-section .apl-logo img {
    width: 100px;
    height: 60px;
}

.our-success-story-uae-section .first-motors-logo img {
    width: 190px;
    max-width: 190px;
    height: auto;
}

.our-success-story-uae-section .success-story-desc {
    margin: 0;
    color: #565656;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.12;
}

.our-success-story-uae-section .success-story-stats {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-top: auto;
    margin-bottom: 19px;
	flex-wrap: wrap;
    margin-top: 20px;
}

.our-success-story-uae-section .stat-item h4 {
    margin: 0 0 2px;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
}

.our-success-story-uae-section .stat-item p {
    margin: 8px 0 0;
    color: #000000;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.1;
    white-space: nowrap;
}

.our-success-story-uae-section .stat-divider {
    display: block;
    width: 1px;
    height: 26px;
    background: #d9d9d9;
}

.our-success-story-uae-section .success-story-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    width: 168px;
    height: 35px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    color: #000000;
    background: transparent;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.our-success-story-uae-section .success-story-btn img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.our-success-story-uae-section .success-story-btn:hover {
    border-color: #000000;
    background: #000000;
    color: #ffffff;
}

.our-success-story-uae-section .success-story-btn:hover img {
    filter: brightness(0) invert(1);
    transform: translateX(3px);
}

.our-success-story-uae-section .success-story-img {
    width: 100%;
    height: 314px;
    overflow: hidden;
    border-radius: 20px;
}

.our-success-story-uae-section .success-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 1199px */
@media (max-width: 1199px) {

    .our-success-story-uae-section .our-success-story-uae-wrapper {
        gap: 24px;
    }

    .our-success-story-uae-section .our-success-story-uae-card {
        grid-template-columns: 205px 1fr;
        gap: 16px;
    }

    .our-success-story-uae-section .success-story-desc {
        font-size: 15px;
    }

    .our-success-story-uae-section .first-motors-logo img {
        width: 170px;
    }

    .our-success-story-uae-section .stat-item p {
        white-space: normal;
    }
}

/* 991px */
@media (max-width: 991px) {

    .our-success-story-uae-section .our-success-story-uae-wrapper {
        grid-template-columns: 1fr;
    }

    .our-success-story-uae-section .our-success-story-uae-card {
        grid-template-columns: 245px 1fr;
        min-height: 344px;
    }

    .our-success-story-uae-section .success-story-desc {
        max-width: 230px;
    }

    .our-success-story-uae-section .text-cont .section-title {
        text-align: center;
    }

    .our-success-story-uae-section .text-cont .section-content {
        text-align: center;
    }
}

/* 767px */
@media (max-width: 767px) {

    .our-success-story-uae-section .our-success-story-uae-wrapper {
        gap: 12px;
    }

    .our-success-story-uae-section .our-success-story-uae-card {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: unset;
    }

    .our-success-story-uae-section .success-story-content {
        order: 2;
    }

    .our-success-story-uae-section .success-story-img {
        order: 1;
        height: 280px;
    }

    .our-success-story-uae-section .success-story-desc {
        max-width: 100%;
        margin-bottom: 25px;
        line-height: 1.4;
    }

    .our-success-story-uae-section .success-story-stats {
        margin-top: 0;
    }
}

/* 575px */
@media (max-width: 575px) {

    .our-success-story-uae-section .our-success-story-uae-card {
        padding: 12px;
        border-radius: 16px;
    }

    .our-success-story-uae-section .success-story-img {
        height: 230px;
        border-radius: 16px;
    }

    .our-success-story-uae-section .success-story-btn {
        width: 160px;
        font-size: 15px;
    }

    .our-success-story-uae-section .success-story-stats {
        gap: 11px;
    }
}
/* Our Success Story UAE Section CSS End */



/* Ensuring Credibility section Section CSS Start */
.ensuring-credibility-section {
    background: #f6f6f6;
}

.ensuring-credibility-section .content-main-wrapper {
    display: grid;
    grid-template-columns: 483px 566px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


.ensuring-credibility-section .cta-wrapper {
    text-align: start;
}

.ensuring-credibility-section .content-wrapper {
    max-width: 483px;
}

.ensuring-credibility-section .data-protection-wrapper {
    width: 100%;
    max-width: 566px;
}

.ensuring-credibility-section .ec-carousel {
    position: relative;
    width: 100%;
}

.ensuring-credibility-section .ec-carousel-viewport {
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.ensuring-credibility-section .ec-carousel-track {
    display: flex;
    transition: transform 0.45s ease;
    will-change: transform;
}

.ensuring-credibility-section .ec-slide {
    min-width: 100%;
    flex: 0 0 100%;
}

.ensuring-credibility-section .ec-card {
    position: relative;
    min-height: 537px;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    isolation: isolate;
}

.ensuring-credibility-section .ec-card-img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ensuring-credibility-section .ec-card-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: linear-gradient(0deg, #000000 34%, rgba(102, 102, 102, 0) 66%);
}

.ensuring-credibility-section .ec-card-content {
    position: absolute;
    left: 35px;
    right: 35px;
    bottom: 38px;
    z-index: 2;
    max-width: 360px;
}

.ensuring-credibility-section .ec-card-content h3 {
    margin: 0 0 15px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
}

.ensuring-credibility-section .ec-card-content p {
	font-size: 16px;
	line-height: 1.3 ;
	color: #fff ;
	width : 100% ;
	max-width : 385px;
	margin-top: 13px;
}

.ensuring-credibility-section .ec-card-icon {
    position: absolute;
    right: -4px;
    bottom: -4px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 138px;
    height: 138px;
    border-radius: 50%;
    background: #ffffff;
}

.ensuring-credibility-section .ec-card-icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
}

.ensuring-credibility-section .ec-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 37px;
}

.ensuring-credibility-section .ec-carousel-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #ffffff;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.ensuring-credibility-section .ec-carousel-btn img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.ensuring-credibility-section .ec-carousel-btn.ec-next,
.ensuring-credibility-section .ec-carousel-btn:hover {
    background: #de253a;
}

.ensuring-credibility-section .ec-carousel-btn.ec-next img,
.ensuring-credibility-section .ec-carousel-btn:hover img {
    filter: brightness(0) invert(1);
}

/* 1199px */
@media (max-width: 1199px) {
    .ensuring-credibility-section .content-main-wrapper {
        grid-template-columns: 430px 500px;
        gap: 35px;
    }

    .ensuring-credibility-section .data-protection-wrapper {
        max-width: 500px;
    }

    .ensuring-credibility-section .ec-card {
        min-height: 500px;
    }
	
	.ensuring-credibility-section .ec-card-content p {
		max-width : 335px;
	}
}

/* 991px */
@media (max-width: 991px) {
    .ensuring-credibility-section .content-main-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ensuring-credibility-section .content-wrapper {
        max-width: 100%;
    }

    .ensuring-credibility-section .data-protection-wrapper {
        max-width: 100%;
    }

    .ensuring-credibility-section .ec-card {
        min-height: 500px;
    }

    .ensuring-credibility-section .ec-carousel-controls {
        margin-top: 24px;
        justify-content: center;
    }

    .ensuring-credibility-section .cta-wrapper {
        text-align: center;
    }
}

/* 767px */
@media (max-width: 767px) {
    .ensuring-credibility-section .content-main-wrapper {
        gap: 10px;
    }

    .ensuring-credibility-section .ec-card {
        min-height: 430px;
    }

    .ensuring-credibility-section .ec-card-content {
        left: 24px;
        right: 24px;
        bottom: 32px;
        max-width: calc(100% - 110px);
    }

    .ensuring-credibility-section .ec-card-content h3 {
        font-size: 24px;
    }

    .ensuring-credibility-section .ec-card-content li {
        font-size: 16px;
    }

    .ensuring-credibility-section .ec-card-icon {
        width: 105px;
        height: 105px;
    }
	
	.ensuring-credibility-section .ec-card-overlay {
		background: linear-gradient(0deg, #000000 34%, rgba(102, 102, 102, 0) 100%);
	}
	
	.ensuring-credibility-section .ec-card-icon img {
		width: 35px;
		height: 35px;
	}

}

/* 575px */
@media (max-width: 575px) {
    .ensuring-credibility-section .ec-card {
        min-height: 390px;
        border-radius: 18px;
    }

    .ensuring-credibility-section .ec-carousel-viewport {
        border-radius: 18px;
    }

    .ensuring-credibility-section .ec-card-content {
        left: 20px;
        right: 20px;
        bottom: 28px;
        max-width: calc(100% - 85px);
    }

    .ensuring-credibility-section .ec-card-content h3 {
        font-size: 22px;
    }

    .ensuring-credibility-section .ec-card-icon {
        width: 86px;
        height: 86px;
    }
}
/* Ensuring Credibility section Section CSS End */



/* Lets Discuss Project Section Css */
.lets-discuss-project-section {
    padding: 60px 0;
    background: #ffffff;
}

.lets-discuss-project-section .lets-discuss-project-wrapper {
    min-height: 323px;
    overflow: hidden;
    border-radius: 20px;
    isolation: isolate;
    background-image: url('../img/web-app-uae/lets-discuss-cta-bg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.lets-discuss-project-section .lets-discuss-content {
    max-width: 520px;
    margin: 0 auto;
    padding: 55px 20px 52px;
    text-align: center;
}

.lets-discuss-project-section .lets-discuss-content h2 {
    margin: 0 0 26px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.56px;
    text-transform: capitalize;
}

.lets-discuss-project-section .lets-discuss-content p {
    max-width: 459px;
    margin: 0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: 0.36px;
    text-transform: capitalize;
}

/* 1199px */
@media (max-width: 1199px) {
    .lets-discuss-project-section {
        padding: 55px 0;
    }

    .lets-discuss-project-section .lets-discuss-project-wrapper {
        min-height: 310px;
    }

    .lets-discuss-project-section .lets-discuss-content {
        padding: 52px 20px 48px;
    }
}

/* 991px */
@media (max-width: 991px) {
    .lets-discuss-project-section {
        padding: 50px 0;
    }

    .lets-discuss-project-section .lets-discuss-content h2 {
        font-size: 26px;
    }

    .lets-discuss-project-section .lets-discuss-content p {
        font-size: 17px;
    }
}

/* 767px */
@media (max-width: 767px) {
    .lets-discuss-project-section {
        padding: 45px 0;
    }

    .lets-discuss-project-section .lets-discuss-project-wrapper {
        min-height: 240px;
        border-radius: 18px;
    }

    .lets-discuss-project-section .lets-discuss-content {
        max-width: 100%;
        padding: 48px 18px 44px;
    }

    .lets-discuss-project-section .lets-discuss-content h2 {
        margin-bottom: 20px;
        font-size: 24px;
    }

    .lets-discuss-project-section .lets-discuss-content p {
        margin-bottom: 24px;
        font-size: 16px;
        line-height: 1.35;
        margin-inline: auto;
    }
}

/* 575px */
@media (max-width: 575px) {
    .lets-discuss-project-section {
        padding: 38px 0;
    }

    .lets-discuss-project-section .lets-discuss-project-wrapper {
        min-height: 270px;
        border-radius: 16px;
    }

    .lets-discuss-project-section .lets-discuss-content {
        padding: 42px 15px 40px;
    }

    .lets-discuss-project-section .lets-discuss-content h2 {
        font-size: 22px;
    }

    .lets-discuss-project-section .lets-discuss-content p {
        font-size: 15px;
    }
}
/* Lets Discuss Cta Section Css */



/* Industry Specific Section Css */
.industry-specific-solution-section {
    background: #ffffff;
}

.industry-specific-solution-section .industry-solution-cards-wrapper {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.industry-specific-solution-section .industry-solution-card {
    position: relative;
    flex: 0 0 170px;
    height: 542px;
    overflow: hidden;
    border-radius: 20px;
    background: #000000;
    cursor: pointer;
    transition: flex-basis 0.45s ease, transform 0.35s ease;
    isolation: isolate;
}

.industry-specific-solution-section .industry-solution-card:first-child,
.industry-specific-solution-section .industry-solution-card:hover {
    flex-basis: 371px;
}

.industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) {
    flex-basis: 170px;
}

.industry-specific-solution-section .industry-solution-card>img {
    position: absolute;
    inset: 0;
    z-index: -3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.industry-specific-solution-section .industry-solution-card:hover>img {
    transform: scale(1.04);
}

.industry-specific-solution-section .industry-solution-overlay {
    position: absolute;
    inset: 0;
    z-index: -2;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 16.63%, rgba(102, 102, 102, 0) 99.96%);
    transition: background 0.35s ease;
}

.industry-specific-solution-section .industry-solution-card:first-child .industry-solution-overlay,
.industry-specific-solution-section .industry-solution-card:hover .industry-solution-overlay {
    background: linear-gradient(180deg, rgba(222, 37, 58, 0.8) 16.63%, rgba(0, 0, 0, 0.65) 99.96%);
}

.industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) .industry-solution-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 16.63%, rgba(102, 102, 102, 0) 99.96%);
}

.industry-specific-solution-section .industry-solution-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    padding: 31px 17px 22px;
    display: flex;
    flex-direction: column;
}

.industry-specific-solution-section .industry-solution-content h3 {
    margin: 0;
    color: #ffffff;
    font-family: Inter, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.industry-specific-solution-section .industry-solution-content p {
    max-width: 309px;
    margin: auto 0 0;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

.industry-specific-solution-section .industry-solution-card:first-child .industry-solution-content p,
.industry-specific-solution-section .industry-solution-card:hover .industry-solution-content p {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) .industry-solution-content p {
    opacity: 0;
    visibility: hidden;
    transform: translateY(18px);
}

.industry-specific-solution-section .cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* 1199px */
@media (max-width: 1199px) {
    .industry-specific-solution-section .industry-solution-cards-wrapper {
        gap: 12px;
    }

    .industry-specific-solution-section .industry-solution-card {
        flex-basis: 145px;
        height: 500px;
    }

    .industry-specific-solution-section .industry-solution-card:first-child,
    .industry-specific-solution-section .industry-solution-card:hover {
        flex-basis: 330px;
    }

    .industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) {
        flex-basis: 145px;
    }

    .industry-specific-solution-section .industry-solution-content h3 {
        font-size: 22px;
    }

    .industry-specific-solution-section .industry-solution-content p {
        font-size: 15px;
    }
}

/* 991px */
@media (max-width: 991px) {
    .industry-specific-solution-section .industry-solution-cards-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .industry-specific-solution-section .industry-solution-card,
    .industry-specific-solution-section .industry-solution-card:first-child,
    .industry-specific-solution-section .industry-solution-card:hover,
    .industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) {
        flex-basis: auto;
        height: 300px;
    }

    .industry-specific-solution-section .industry-solution-content p {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .industry-specific-solution-section .industry-solution-overlay,
    .industry-specific-solution-section .industry-solution-card:first-child .industry-solution-overlay,
    .industry-specific-solution-section .industry-solution-card:hover .industry-solution-overlay,
    .industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) .industry-solution-overlay {
        background: linear-gradient(180deg, rgba(222, 37, 58, 0.75) 16.63%, rgba(0, 0, 0, 0.7) 99.96%);
    }
}

/* 767px */
@media (max-width: 767px) {
    .industry-specific-solution-section .industry-solution-cards-wrapper {
        grid-template-columns: 1fr;
        margin-top: 35px;
        gap: 12px;
    }

    .industry-specific-solution-section .industry-solution-card,
    .industry-specific-solution-section .industry-solution-card:first-child,
    .industry-specific-solution-section .industry-solution-card:hover,
    .industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) {
        height: 250px;
    }

    .industry-specific-solution-section .industry-solution-content {
        padding: 26px 18px 24px;
    }

    .industry-specific-solution-section .industry-solution-content h3 {
        font-size: 22px;
    }

    .industry-specific-solution-section .industry-solution-content p {
        max-width: 100%;
        font-size: 15px;
    }

    .industry-specific-solution-section .cta-wrapper {
        margin-top: 40px;
    }
}

/* 575px */
@media (max-width: 575px) {

    .industry-specific-solution-section .industry-solution-card,
    .industry-specific-solution-section .industry-solution-card:first-child,
    .industry-specific-solution-section .industry-solution-card:hover,
    .industry-specific-solution-section .industry-solution-cards-wrapper:hover .industry-solution-card:first-child:not(:hover) {
        border-radius: 16px;
    }

    .industry-specific-solution-section .industry-solution-overlay {
        border-radius: 16px;
    }

    .industry-specific-solution-section .industry-solution-content h3 {
        font-size: 20px;
    }

    .industry-specific-solution-section .industry-solution-content p {
        font-size: 14px;
    }
}
/* Industry Specific Section Css End */



/* Streamline Solutions CTA Section Css Start */
.streamline-solutions-cta-section {
    background: #ffffff;
}

.streamline-solutions-cta-section .cta-wrapper {
    margin-top: 25px;
    text-align: start;
}

.streamline-solutions-cta-section .streamline-solutions-cta-wrapper {
    display: grid;
    grid-template-columns: 447px 430px;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    min-height: 353px;
    padding: 39px 54px 18px 62px;
    overflow: hidden;
    border-radius: 20px;
    background: linear-gradient(180deg, #060606 0%, #de253a 100%);
}

.streamline-solutions-cta-section .streamline-solutions-content {
    max-width: 447px;
}

.streamline-solutions-cta-section .streamline-solutions-content h2 {
    max-width: 447px;
    margin: 0 0 19px;
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.56px;
    text-transform: capitalize;
}

.streamline-solutions-cta-section .streamline-solutions-content p {
    max-width: 394px;
    margin: 0 0 27px;
    color: #ffffff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0.36px;
    text-transform: capitalize;
}

.streamline-solutions-cta-section .streamline-solutions-img {
    width: 100%;
    height: 276px;
    overflow: hidden;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
}

.streamline-solutions-cta-section .streamline-solutions-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 1199px */
@media (max-width: 1199px) {
    .streamline-solutions-cta-section .streamline-solutions-cta-wrapper {
        grid-template-columns: 420px 400px;
        gap: 40px;
        padding: 38px 42px;
    }

    .streamline-solutions-cta-section .streamline-solutions-content h2 {
        font-size: 26px;
    }

    .streamline-solutions-cta-section .streamline-solutions-img {
        height: 260px;
    }
}

/* 991px */
@media (max-width: 991px) {
    .streamline-solutions-cta-section .streamline-solutions-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 35px;
        padding: 42px 32px;
    }

    .streamline-solutions-cta-section .streamline-solutions-content {
        max-width: 100%;
    }

    .streamline-solutions-cta-section .streamline-solutions-content h2,
    .streamline-solutions-cta-section .streamline-solutions-content p {
        max-width: 100%;
    }

    .streamline-solutions-cta-section .streamline-solutions-img {
        height: 320px;
    }
}

/* 767px */
@media (max-width: 767px) {
    .streamline-solutions-cta-section .streamline-solutions-cta-wrapper {
        gap: 28px;
        padding: 34px 24px;
        border-radius: 18px;
    }

    .streamline-solutions-cta-section .streamline-solutions-content h2 {
        margin-bottom: 18px;
        font-size: 24px;
        line-height: 1.2;
    }

    .streamline-solutions-cta-section .streamline-solutions-content p {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .streamline-solutions-cta-section .streamline-solutions-img {
        height: 260px;
        border-top-left-radius: 24px;
        border-bottom-right-radius: 24px;
    }
}

/* 575px */
@media (max-width: 575px) {
    .streamline-solutions-cta-section .streamline-solutions-cta-wrapper {
        padding: 30px 18px;
        border-radius: 16px;
    }

    .streamline-solutions-cta-section .streamline-solutions-content h2 {
        font-size: 22px;
    }

    .streamline-solutions-cta-section .streamline-solutions-content p {
        font-size: 15px;
    }

    .streamline-solutions-cta-section .streamline-solutions-img {
        height: 220px;
        border-top-left-radius: 20px;
        border-bottom-right-radius: 20px;
    }
}
/* Streamline Solutions CTA Section Css End */
