/* ==========================================
Problem Section
========================================== */

.problem{

    background:#07101D;

    position:relative;

}

.section-heading{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:70px;

}

.section-tag{

    color:#60A5FA;

    font-size:14px;

    letter-spacing:2px;

    font-weight:700;

}

.section-heading h2{

    margin-top:15px;

    margin-bottom:20px;

}

.section-heading span{

    color:#3B82F6;

}

.problem-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.problem-card{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    transition:.35s;

    position:relative;

    overflow:hidden;

}

.problem-card::before{

content:"";

position:absolute;

left:-100%;

top:0;

width:100%;

height:100%;

background:

linear-gradient(

90deg,

transparent,

rgba(255,255,255,.08),

transparent

);

transition:.8s;

}

.problem-card:hover::before{

left:100%;

}

.problem-card:hover{

transform:translateY(-10px);

border-color:#2563EB;

box-shadow:

0 30px 60px rgba(0,0,0,.35);

}

.icon{

width:70px;

height:70px;

display:flex;

align-items:center;

justify-content:center;

border-radius:18px;

font-size:34px;

background:

linear-gradient(

135deg,

#2563EB,

#38BDF8

);

margin-bottom:25px;

}

.problem-card h3{

margin-bottom:15px;

}

.problem-card p{

color:#CBD5E1;

}

@media(max-width:900px){

.problem-grid{

grid-template-columns:1fr;

}

}