/* =====================================
   SOLUTIONS HERO
===================================== */

.solution-hero{

height:60vh;

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

text-align:center;

background:
linear-gradient(rgba(5,10,20,.75),rgba(5,10,20,.85)),
url("../images/hero.jpg");

background-size:cover;

background-position:center;

padding-top:80px;

}

.solution-hero h4{

color:#00ff88;

letter-spacing:6px;

font-size:16px;

margin-bottom:20px;

}

.solution-hero h1{

font-family:Orbitron;

font-size:70px;

color:#fff;

text-shadow:

0 0 20px #00ff88,

0 0 50px #00ff88;

margin-bottom:20px;

}

.solution-hero p{

font-size:22px;

color:#ddd;

max-width:800px;

line-height:1.8;

}

/* =====================================
   SERVICES
===================================== */

.services-grid{

padding:100px 8%;

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(300px,1fr));

gap:35px;

background:#08121f;

}

/* =====================================
   CARD
===================================== */

.service-card{

background:rgba(255,255,255,.05);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:25px;

overflow:hidden;

transition:.5s;

box-shadow:0 15px 30px rgba(0,0,0,.25);

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:

0 0 25px rgba(0,255,150,.35),

0 0 50px rgba(0,255,150,.18);

}

.service-card img{

width:100%;

height:230px;

object-fit:cover;

transition:.5s;

}

.service-card:hover img{

transform:scale(1.08);

}

.service-card h2{

font-size:28px;

margin:25px;

color:#00ff88;

font-family:Orbitron;

}

.service-card p{

margin:0 25px 30px;

line-height:1.8;

color:#ddd;

}

.service-card a{

display:inline-block;

margin:0 25px 30px;

padding:14px 30px;

border-radius:40px;

background:#00ff88;

color:#000;

font-weight:bold;

text-decoration:none;

transition:.4s;

}

.service-card a:hover{

box-shadow:

0 0 25px #00ff88;

}

/* =====================================
   PROCESS
===================================== */

.process{

padding:100px 8%;

background:#101a28;

text-align:center;

}

.process h2{

font-size:50px;

font-family:Orbitron;

color:#00ff88;

margin-bottom:60px;

}

.steps{

display:grid;

grid-template-columns:

repeat(auto-fit,minmax(180px,1fr));

gap:25px;

}

.step{

padding:35px;

background:rgba(255,255,255,.05);

border-radius:20px;

border:1px solid rgba(255,255,255,.08);

transition:.4s;

}

.step:hover{

transform:translateY(-10px);

box-shadow:

0 0 20px rgba(0,255,150,.4);

}

.step span{

display:inline-flex;

justify-content:center;

align-items:center;

width:70px;

height:70px;

border-radius:50%;

background:#00ff88;

color:#000;

font-weight:bold;

font-size:28px;

margin-bottom:20px;

}

.step h3{

font-size:22px;

color:#fff;

}

/* =====================================
   CTA
===================================== */

.cta{

padding:100px 20px;

text-align:center;

background:linear-gradient(135deg,#03111d,#081b2d);

}

.cta h2{

font-family:Orbitron;

font-size:48px;

margin-bottom:20px;

color:#fff;

}

.cta p{

font-size:22px;

color:#ddd;

margin-bottom:40px;

}

.cta .btn-primary{

display:inline-block;

padding:18px 45px;

background:#00ff88;

color:#000;

font-weight:bold;

border-radius:50px;

text-decoration:none;

transition:.4s;

}

.cta .btn-primary:hover{

transform:translateY(-5px);

box-shadow:

0 0 25px #00ff88,

0 0 50px #00ff88;

}

/* =====================================
   RESPONSIVE
===================================== */

@media(max-width:991px){

.solution-hero h1{

font-size:42px;

}

.solution-hero p{

font-size:18px;

}

.process h2{

font-size:36px;

}

.cta h2{

font-size:36px;

}

}