/*=========================================
        VALUES SECTION
=========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

html{
    scroll-behavior:smooth;
}

body{
    background:#fff;
    overflow-x:hidden;
}

/*=========================================
BACKGROUND
=========================================*/

.values{

    width:100%;
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:80px 8%;

    position:relative;
    overflow:hidden;

    background:
    radial-gradient(circle at top right,
    rgba(123,47,247,.12),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(168,85,247,.08),
    transparent 35%),

    linear-gradient(135deg,#ffffff,#faf8ff,#ffffff);

}

.values::before{

    content:"";

    position:absolute;

    width:500px;
    height:500px;

    top:-120px;
    right:-120px;

    background:#A855F7;

    opacity:.10;

    border-radius:50%;

    filter:blur(150px);

}

.values::after{

    content:"";

    position:absolute;

    width:320px;
    height:320px;

    left:-100px;
    bottom:-100px;

    background:#7B2FF7;

    opacity:.08;

    border-radius:50%;

    filter:blur(120px);

}

/*=========================================
CONTAINER
=========================================*/

.values-container{

    width:100%;
    max-width:1400px;

    text-align:center;

    position:relative;

    z-index:2;

}

/*=========================================
HEADING
=========================================*/

.values-badge{

    display:inline-block;

    padding:10px 24px;

    border-radius:50px;

    background:#F3ECFF;

    border:2px solid #C084FC;

    color:#6D28D9;

    font-size:14px;

    font-weight:600;

    margin-bottom:22px;

}

.values h2{

    font-size:50px;

    color:#18122B;

    margin-bottom:18px;

}

.values-subtitle{

    max-width:700px;

    margin:auto;

    margin-bottom:55px;

    color:#666;

    line-height:1.8;

    font-size:18px;

}

/*=========================================
GRID
=========================================*/

.values-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:28px;

}

/*=========================================
CARD
=========================================*/

.value-card{

    background:#F3ECFF;

    border:2px solid #6D28D9;

    border-radius:26px;

    padding:32px 24px;

    height:290px;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:flex-start;

    text-align:center;

    transition:.35s;

    box-shadow:
    0 0 18px rgba(109,40,217,.18),
    0 18px 45px rgba(109,40,217,.12);

}

.value-card:hover{

    transform:translateY(-10px);

    background:#EEE3FF;

    border-color:#5B21B6;

    box-shadow:
    0 0 25px rgba(91,33,182,.30),
    0 28px 60px rgba(91,33,182,.20);

}

/*=========================================
ICON
=========================================*/

.icon{

    width:72px;

    height:72px;

    border-radius:20px;

    background:linear-gradient(135deg,#7B2FF7,#5B21B6);

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:22px;

    transition:.35s;

    box-shadow:
    0 10px 25px rgba(123,47,247,.30);

}

.icon i{

    color:#fff;

    font-size:30px;

}

.value-card:hover .icon{

    transform:scale(1.08);

}

/*=========================================
TEXT
=========================================*/

.value-card h3{

    color:#18122B;

    font-size:25px;

    margin-bottom:14px;

    font-weight:700;

}

.value-card p{

    color:#5E5E73;

    font-size:15px;

    line-height:1.8;

}

/*=========================================
BUTTON
=========================================*/

.values-btn-wrap{

    display:flex;

    justify-content:center;

    margin-top:55px;

}

.values-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    text-decoration:none;

    padding:17px 34px;

    border-radius:50px;

    background:linear-gradient(135deg,#7B2FF7,#5B21B6);

    color:#fff;

    font-weight:600;

    transition:.35s;

}

.values-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 35px rgba(123,47,247,.35);

}

/*=========================================
RESPONSIVE
=========================================*/

@media(max-width:1200px){

.values-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:992px){

.values{

padding:70px 6%;

}

.values-grid{

grid-template-columns:1fr;

}

.value-card{

height:auto;

}

}

@media(max-width:768px){

.values{

padding:60px 5%;

}

.values h2{

font-size:38px;

}

.values-subtitle{

font-size:16px;

}

}