/*=============================================
    SOLUTIONS PAGES COMMON CSS
    Use for all solution detail pages
=============================================*/

/* Main Area */
.solutions-page .services-details-area {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Hero Image */
.solutions-page .services-details-thumb img {
    width: 100%;
    border-radius: 24px;
    margin-bottom: 45px;
    box-shadow: 0 20px 60px rgba(11, 28, 57, 0.08);
}

/* Main Content */
.solutions-page .services-details-content .title {
    font-size: 44px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #0b1c39;
    font-weight: 700;
}

.solutions-page .services-details-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f6b7a;
    margin-bottom: 25px;
}

/* Feature Cards */
.solutions-page .sd-inner-wrap {
    margin-top: 60px;
    margin-bottom: 70px;
}

.solutions-page .services-process-item {
    display: flex;
    gap: 20px;
    padding: 35px;
    background: linear-gradient(135deg, #f8fbff 0%, #eef5ff 100%);
    border-radius: 24px;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.solutions-page .services-process-item:hover {
    transform: translateY(-8px);
    border-color: #1d4fff;
    box-shadow: 0 20px 50px rgba(29, 79, 255, 0.12);
}

.solutions-page .services-process-item::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(29, 79, 255, 0.04);
    border-radius: 50%;
    top: -50px;
    right: -40px;
}

.solutions-page .services-process-item .icon {
    min-width: 75px;
    height: 75px;
    background: linear-gradient(135deg, #1d4fff 0%, #00c2ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.solutions-page .services-process-item .icon i {
    color: #ffffff;
    font-size: 30px;
}

.solutions-page .services-process-item .content {
    position: relative;
    z-index: 2;
}

.solutions-page .services-process-item .content .title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #0b1c39;
}

.solutions-page .services-process-item .content p {
    margin-bottom: 0;
    font-size: 15px;
    line-height: 1.8;
}

/* Enterprise Sections */
.solutions-page .services-details-inner {
    background: linear-gradient(135deg, #f4f8ff 0%, #eef5ff 100%);
    padding: 70px;
    border-radius: 30px;
    margin-top: 80px;
    box-shadow: 0 15px 50px rgba(11, 28, 57, 0.06);
    position: relative;
    overflow: hidden;
}

.solutions-page .services-details-inner::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: rgba(29, 79, 255, 0.06);
    border-radius: 50%;
    top: -140px;
    right: -120px;
}

.solutions-page .services-details-inner>* {
    position: relative;
    z-index: 2;
}

/* Section Images */
.solutions-page .services-details-inner-img img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(11, 28, 57, 0.08);
}

/* Section Content */
.solutions-page .services-details-inner-content {
    padding-left: 25px;
}

.solutions-page .services-details-inner-content .title {
    font-size: 38px;
    line-height: 1.4;
    margin-bottom: 25px;
    color: #0b1c39;
}

.solutions-page .services-details-inner-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #5f6b7a;
    margin-bottom: 28px;
}

/* Checklist */
.solutions-page .services-details-inner-content .list-wrap li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #0b1c39;
    font-weight: 600;
}

.solutions-page .services-details-inner-content .list-wrap li i {
    position: absolute;
    left: 0;
    top: 4px;
    color: #1d4fff;
    font-size: 20px;
}

/* Responsive */
@media (max-width: 991px) {

    .solutions-page .services-details-inner {
        padding: 50px 40px;
    }

    .solutions-page .services-details-inner-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .solutions-page .services-details-content .title {
        font-size: 36px;
    }

}

@media (max-width: 767px) {

    .solutions-page .services-details-content .title {
        font-size: 28px;
    }

    .solutions-page .services-details-inner-content .title {
        font-size: 26px;
    }

    .solutions-page .services-process-item {
        flex-direction: column;
    }

    .solutions-page .services-details-inner {
        padding: 35px 25px;
    }

}

/*=============================================
    SOLUTIONS PAGE CSS
    Only For Solutions Listing Page
=============================================*/

.solutions-list-page .solutions-page-area {
    position: relative;
    background: #ffffff;
    overflow: hidden;
}

/* Section Title */
.solutions-list-page .section-title-two .sub-title {
    display: inline-block;
    padding: 10px 22px;
    background: rgba(29, 79, 255, 0.08);
    border-radius: 30px;
    color: #1d4fff;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.solutions-list-page .section-title-two .title {
    font-size: 48px;
    line-height: 1.3;
    color: #0b1c39;
    margin-bottom: 20px;
    font-weight: 700;
}

.solutions-list-page .section-title-two p {
    font-size: 17px;
    line-height: 1.9;
    color: #5f6b7a;
}

/* Solution Card */
.solutions-list-page .solution-card {
    position: relative;
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    margin-bottom: 30px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 50px rgba(11, 28, 57, 0.06);
    border: 1px solid #edf2f9;
    height: 100%;
}

.solutions-list-page .solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(11, 28, 57, 0.12);
    border-color: #1d4fff;
}

/* Image */
.solutions-list-page .solution-thumb {
    position: relative;
    overflow: hidden;
}

.solutions-list-page .solution-thumb img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: 0.5s ease;
}

.solutions-list-page .solution-card:hover .solution-thumb img {
    transform: scale(1.08);
}

/* Content */
.solutions-list-page .solution-content {
    position: relative;
    padding: 40px;
}

/* Icon */
.solutions-list-page .solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1d4fff 0%, #00c2ff 100%);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(29, 79, 255, 0.18);
}

.solutions-list-page .solution-icon i {
    color: #ffffff;
    font-size: 32px;
}

/* Title */
.solutions-list-page .solution-content .title {
    font-size: 30px;
    line-height: 1.4;
    margin-bottom: 18px;
    color: #0b1c39;
    font-weight: 700;
}

/* Description */
.solutions-list-page .solution-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #5f6b7a;
    margin-bottom: 25px;
}

/* List */
.solutions-list-page .solution-content .list-wrap {
    margin-bottom: 30px;
}

.solutions-list-page .solution-content .list-wrap li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 14px;
    color: #0b1c39;
    font-size: 16px;
    font-weight: 500;
}

.solutions-list-page .solution-content .list-wrap li::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 1px;
    color: #1d4fff;
    font-size: 14px;
}

/* Button */
.solutions-list-page .btn-three {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    height: 56px;
    border-radius: 50px;
    background: linear-gradient(135deg, #1d4fff 0%, #00c2ff 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.4s ease;
    border: none;
}

.solutions-list-page .btn-three:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(29, 79, 255, 0.25);
    color: #ffffff;
}

/* Responsive */
@media (max-width: 991px) {

    .solutions-list-page .section-title-two .title {
        font-size: 38px;
    }

    .solutions-list-page .solution-content {
        padding: 35px;
    }

}

@media (max-width: 767px) {

    .solutions-list-page .section-title-two .title {
        font-size: 30px;
    }

    .solutions-list-page .solution-thumb img {
        height: 240px;
    }

    .solutions-list-page .solution-content {
        padding: 28px;
    }

    .solutions-list-page .solution-content .title {
        font-size: 24px;
    }

}