/*==================================================
SOLUTIONS HERO
==================================================*/

.solutions-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f7faff 100%);
    position: relative;
    overflow: hidden;
}

.solutions-hero::before {
    content: "";
    position: absolute;
    top: -180px;
    right: -180px;
    width: 420px;
    height: 420px;
    background: rgba(11, 30, 60, .05);
    border-radius: 50%;
}

.solutions-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.solutions-content h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin: 20px 0;
}

.solutions-content h1 span {
    color: #B87333;
}

.solutions-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 30px;
}

.solutions-image {
    position: relative;
}

.solutions-image img {
    width: 100%;
    height: 620px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .12);
}

.floating-card {
    position: absolute;
    bottom: 25px;
    left: 25px;
    background: #fff;
    padding: 20px;
    width: 260px;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.floating-card h3 {
    color: #0B1E3C;
    margin-bottom: 8px;
}

.floating-card p {
    margin: 0;
    color: #6B7280;
}


/*==================================================
INTRO
==================================================*/

.solutions-intro {
    padding: 90px 0;
    background: #fff;
}

.solutions-intro .section-heading {
    max-width: 850px;
}


/*==================================================
SOLUTION GRID
==================================================*/

.solutions-grid-section {
    padding: 20px 0 110px;
    background: #fff;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.solution-card {
    background: #fff;
    border: 1px solid #edf2f7;
    border-radius: 20px;
    padding: 35px;
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);
}

.solution-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: #0B1E3C;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 30px;
    margin-bottom: 25px;
}

.solution-card h3 {
    margin-bottom: 15px;
    color: #0B1E3C;
}

.solution-card p {
    color: #6B7280;
    line-height: 1.8;
    margin-bottom: 20px;
}

.solution-card ul {
    margin: 0;
    padding-left: 20px;
}

.solution-card li {
    margin-bottom: 10px;
    color: #555;
}

.solution-card a {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #B87333;
    font-weight: 600;
    text-decoration: none;
}

.solution-card a:hover {
    gap: 16px;
}

/*==================================================
DETAIL SECTIONS
==================================================*/

.solution-detail {
    padding: 110px 0;
}

.solution-detail:nth-child(even) {
    background: #f8fbff;
}

.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.solution-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

.solution-info h2 {
    margin: 18px 0;
}

.solution-info p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 35px;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.solution-features div {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: #0B1E3C;
}

.solution-features i {
    color: #B87333;
}

.alt .solution-layout {
    direction: rtl;
}

.alt .solution-info,
.alt .solution-image {
    direction: ltr;
}

/*==================================================
FRAMEWORK
==================================================*/

.growth-framework {
    padding: 110px 0;
    background: #fff;
}

.framework-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 60px;
}

.framework-card {
    background: #f8fbff;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: .35s;
}

.framework-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .08);
}

.framework-card span {
    display: inline-flex;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    justify-content: center;
    align-items: center;
    background: #0B1E3C;
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
}

.framework-card h3 {
    margin-bottom: 15px;
}

.framework-card p {
    color: #6B7280;
    line-height: 1.8;
}


/*==================================================
BENEFITS
==================================================*/

.solutions-benefits {
    padding: 110px 0;
    background: #f8fbff;
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.benefits-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    border-radius: 24px;
}

.benefits-content p {
    color: #6B7280;
    line-height: 1.9;
    margin-bottom: 35px;
}


/*==================================================
CTA
==================================================*/

.solutions-cta {
    padding: 110px 0;
    background: #0B1E3C;
}

.solutions-cta .cta-box {
    max-width: 850px;
    margin: auto;
    text-align: center;
}

.solutions-cta h2 {
    color: #fff;
    margin: 20px 0;
}

.solutions-cta p {
    color: rgba(255, 255, 255, .85);
    max-width: 650px;
    margin: 0 auto 35px;
    line-height: 1.9;
}


/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1200px) {

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .framework-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media(max-width:992px) {

    .solutions-hero-grid,
    .solution-layout,
    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .alt .solution-layout {
        direction: ltr;
    }

    .solutions-content {
        order: 2;
    }

    .solutions-image {
        order: 1;
    }

    .framework-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .solutions-hero {
        padding: 110px 0 70px;
    }

    .solutions-content h1 {
        font-size: 2.3rem;
    }

    .solutions-grid,
    .solution-features,
    .framework-grid {
        grid-template-columns: 1fr;
    }

    .solution-image img,
    .benefits-image img,
    .solutions-image img {
        height: 350px;
    }

    .solution-detail,
    .growth-framework,
    .solutions-benefits,
    .solutions-cta {
        padding: 80px 0;
    }

    .floating-card {
        position: static;
        width: 100%;
        margin-top: 20px;
    }

}