
.nx-features .nx-container{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:32px;
}

.feature-card{

position:relative;

padding:42px 30px;

border-radius:28px;

background:rgba(18,36,58,.88);

border:1px solid rgba(255,255,255,.08);

backdrop-filter:blur(18px);

transition:.35s;

overflow:hidden;

text-align:center;

}

.feature-card::before{

content:"";

position:absolute;

left:-40%;

top:-40%;

width:220px;

height:220px;

background:radial-gradient(circle,var(--primary),transparent 70%);

opacity:.15;

transition:.4s;

}

.feature-card:hover{

transform:translateY(-10px);

box-shadow:0 25px 60px rgba(0,212,255,.18);

}

.feature-card:hover::before{

transform:scale(1.4);

opacity:.3;

}

.feature-card h3{

display:flex;

flex-direction:column;

align-items:center;

gap:18px;

font-size:30px;

margin-bottom:22px;

color:white;

}

.feature-card p{

font-size:17px;

line-height:2;

color:#cfd9e4;

}

.feature-card img.emoji{

display:none;

}

.nx-icon{

width:90px;
height:90px;

margin:auto;

border-radius:50%;

display:flex;

align-items:center;

justify-content:center;

font-size:42px;

background:linear-gradient(135deg,#00d4ff,#2f7cff);

box-shadow:0 15px 35px rgba(0,212,255,.35);

margin-bottom:20px;

}

/*=========================================
Products Header
=========================================*/

.nx-products-header{

width:92%;
max-width:1280px;

margin:0 auto 45px;

padding:55px 60px;

border-radius:30px;

background:linear-gradient(135deg,#0d213d 0%,#14345a 100%);

border:1px solid rgba(255,255,255,.08);

box-shadow:
0 18px 50px rgba(0,0,0,.28);

position:relative;

overflow:hidden;

text-align:center;

}

/* نور */

.nx-products-header::before{

content:"";

position:absolute;

top:-140px;

right:-120px;

width:320px;

height:320px;

background:
radial-gradient(circle,
rgba(0,212,255,.18),
transparent 70%);

}

.nx-products-header::after{

content:"";

position:absolute;

bottom:-160px;

left:-120px;

width:340px;

height:340px;

background:
radial-gradient(circle,
rgba(37,99,235,.16),
transparent 70%);

}

.nx-products-badge{

display:inline-flex;

align-items:center;

justify-content:center;

padding:10px 22px;

margin-bottom:24px;

border-radius:50px;

background:rgba(0,212,255,.12);

border:1px solid rgba(0,212,255,.25);

color:#35d8ff;

font-size:50px;

font-weight:700;

letter-spacing:.5px;

position:relative;

z-index:2;

}

.nx-products-header h2{

font-size:42px;

font-weight:800;

line-height:1.5;

margin-bottom:20px;

color:#ffffff;

position:relative;

z-index:2;

}

.nx-products-header p{

max-width:880px;

margin:auto;

font-size:18px;

line-height:2.1;

color:#cdd8e6;

position:relative;

z-index:2;

}

/* موبایل */

@media(max-width:992px){

.nx-products-header{

padding:40px 25px;

}

.nx-products-header h2{

font-size:32px;

}

.nx-products-header p{

font-size:16px;

line-height:2;

}

}

@media(max-width:576px){

.nx-products-header h2{

font-size:27px;

}

.nx-products-header p{

font-size:15px;

}

}