.container {
    width: 85%;
    margin: auto;
}

/* Section Title */
.section-title {
    text-align: center;
    margin-top: 60px;
    padding: 0 15px;
}

.section-title h1 {
    font-size: 4.5rem;
    font-weight: 700;
    color: #c45b00;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
}

.section-title h2 {
    font-size: 3rem;
    color: #333;
    font-weight: 500;
    margin: 3rem auto 6rem 60px;
    line-height: 1.4;
}

/* Grid Layout */
.solutions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 50px;
}

/* Solution Cards */
.solution-box {
    background: linear-gradient(135deg, #0078c8 0%, #0099ff 100%);
    color: #fff;
    padding: 35px 28px;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.solution-box::before {
    content: "";
    position: absolute;
    top: -30%;
    right: -30%;
    width: 200px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.5s ease;
}

.solution-box:hover::before {
    top: -20%;
    right: -20%;
    background: rgba(255, 255, 255, 0.2);
}

.solution-box:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
}

.solution-box .solution-card-heading {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.solution-box p {
    font-size: 1.8rem;
    opacity: 0.95;
    line-height: 1.7;
    flex-grow: 1;
}

.btn-solution {
    background: #fff;
    color: #0078c8;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s ease;
    align-self: flex-start;
    box-shadow: 0 2px 8px rgba(255, 255, 255, 0.3);
}

.btn-solution:hover {
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.25);
}

/* Blue section with inverted smooth curve */
.blue-curve {
    position: relative;
    height: 120px;
    background: linear-gradient(135deg, #0078c8 0%, #0099ff 100%);
    overflow: hidden;
}

.blue-curve::before {
    content: "";
    position: absolute;
    top: -90px;
    left: 0;
    width: 100%;
    height: 170px;
    background: #fff;
    border-bottom-left-radius: 70% 70%;
    border-bottom-right-radius: 70% 70%;
}

/* Responsive Adjustments */
@media (min-width: 768px) and (max-width: 991px) {
    .solution-box {
        padding: 30px 24px;
    }

    .section-title h1 {
        font-size: 28px;
    }

    .section-title h2 {
        font-size: 15px;
        margin-bottom: 40px;
    }

    .blue-curve {
        height: 140px;
    }

    .blue-curve::before {
        top: -80px;
        height: 160px;
    }
}

@media (max-width: 767px) {

    .section-title h2 {
        margin: 3rem auto 6rem 0;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        padding: 0;
    }

    .solution-box {
        text-align: center;
        padding: 28px 20px;
        width: 100%;
        margin: 0 auto 25px;
    }

    .btn-solution {
        align-self: center;
    }

    .section-title h1 {
        font-size: 3.5rem;
    }

    .section-title p {
        font-size: 14px;
    }

    .blue-curve {
        height: 110px;
    }

    .blue-curve::before {
        top: -60px;
        height: 130px;
    }
}

@media (max-width: 480px) {

    .container {
        width: 100%;
    }

    .solution-box .solution-card-heading {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .section-title h2 {
        margin: 2.5rem auto 4rem 0;
        font-size: 2.7rem;
        font-weight: 500;
        line-height: 1.3;
    }

    .solution-box p {
        line-height: 1.5;
    }

    .btn-solution {
        padding: 8px 22px;
    }

    .blue-curve {
        height: 90px;
    }

    .blue-curve::before {
        top: -50px;
        height: 110px;
    }
}