
/* =========================================
WHY CHOOSE SECTION
========================================= */

.why-choose-section{
    position:relative;
    overflow:hidden;

    background:
    linear-gradient(
        180deg,
        #050505 0%,
        #000000 100%
    );

    padding:15px 0;
}

/* =========================================
BACKGROUND GLOW
========================================= */

.why-choose-glow{
    position:absolute;

    top:100px;
    left:-100px;

    width:450px;
    height:450px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.12),
        transparent 70%
    );

    filter:blur(100px);

    pointer-events:none;
}

/* =========================================
SECTION TOP
========================================= */

.why-top{
    text-align:center;
    margin-bottom:70px;
}

.why-tag{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    height:42px;
    padding:0 24px;

    border-radius:999px;

    background:rgba(255,0,0,0.08);

    border:1px solid rgba(255,0,0,0.18);

    color:#ff2b2b;

    font-size:14px;
    font-weight:600;

    margin-bottom:24px;
}

.why-title{
    max-width:800px;
    margin:auto;

    font-size:52px;
    line-height:1.2;
    font-weight:800;

    color:#ffffff;

    margin-bottom:24px;
}

.why-desc{
    max-width:760px;
    margin:auto;

    font-size:16px;
    line-height:1.9;

    color:#9f9f9f;
}

/* =========================================
GRID
========================================= */

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

/* =========================================
CARD
========================================= */

.why-card{
    position:relative;

    background:
    linear-gradient(
        180deg,
        rgba(255,0,0,0.05),
        rgba(0,0,0,0.95)
    );

    border:1px solid rgba(255,255,255,0.06);

    border-radius:30px;

    padding:40px 30px;

    overflow:hidden;

    transition:0.4s ease;
}

.why-card:hover{
    transform:translateY(-10px);

    border-color:rgba(255,0,0,0.3);
}

/* =========================================
TOP GLOW
========================================= */

.why-card::before{
    content:'';

    position:absolute;

    top:-80px;
    left:50%;

    transform:translateX(-50%);

    width:200px;
    height:160px;

    background:
    radial-gradient(
        circle,
        rgba(255,0,0,0.16),
        transparent 70%
    );

    filter:blur(50px);
}

/* =========================================
ICON
========================================= */

.why-icon{
    position:relative;
    z-index:2;

    width:72px;
    height:72px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:28px;

    background:
    linear-gradient(
        135deg,
        #ff5a00,
        #ff1e1e
    );

    color:#ffffff;

    font-size:28px;

    box-shadow:
    0 10px 30px rgba(255,0,0,0.25);
}

/* =========================================
TITLE
========================================= */

.why-card h3{
    position:relative;
    z-index:2;

    font-size:24px;
    line-height:1.3;
    font-weight:700;

    color:#ffffff;

    margin-bottom:18px;
}

/* =========================================
TEXT
========================================= */

.why-card p{
    position:relative;
    z-index:2;

    font-size:14px;
    line-height:2;

    color:#9f9f9f;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:1200px){

    .why-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .why-choose-section{
        padding:90px 0;
    }

    .why-title{
        font-size:36px;
    }

    .why-desc{
        font-size:14px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-card{
        padding:35px 26px;
    }

    .why-card h3{
        font-size:22px;
    }

}

@media(max-width:576px){

    .why-title{
        font-size:30px;
    }

    .why-card{
        padding:30px 24px;
    }

    .why-icon{
        width:64px;
        height:64px;

        font-size:24px;
    }

}

