/* ==========================================
   GenX Technologies - Services Page
========================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8faff;
color:#1f2937;
overflow-x:hidden;
}

/* Hero */

.services-hero{

padding:150px 20px 90px;

background:linear-gradient(135deg,#0f172a,#2563eb);

text-align:center;

color:white;

}

.section-tag{

display:inline-block;

padding:8px 18px;

border-radius:40px;

background:rgba(255,255,255,.15);

font-size:14px;

font-weight:600;

margin-bottom:20px;

}

.services-hero h1{

font-size:58px;

line-height:1.15;

margin-bottom:20px;

font-weight:700;

}

.services-hero p{

max-width:720px;

margin:auto;

font-size:19px;

line-height:1.8;

color:#dbeafe;

margin-bottom:40px;

}

.hero-btn{

display:inline-block;

padding:15px 35px;

background:white;

color:#2563eb;

text-decoration:none;

font-weight:600;

border-radius:12px;

transition:.35s;

}

.hero-btn:hover{

transform:translateY(-5px);

box-shadow:0 20px 35px rgba(0,0,0,.2);

}

/* Services */

.services-section{

padding:100px 20px;

}

.section-title{

text-align:center;

font-size:46px;

margin-bottom:60px;

color:#111827;

}

.services-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

gap:30px;

}

/* Card */

.service-card{

background:white;

padding:35px;

border-radius:24px;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

position:relative;

overflow:hidden;

}

.service-card::before{

content:"";

position:absolute;

top:0;

left:0;

width:100%;

height:5px;

background:#2563eb;

transform:scaleX(0);

transition:.35s;

}

.service-card:hover::before{

transform:scaleX(1);

}

.service-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 45px rgba(37,99,235,.18);

}

.icon{

width:80px;

height:80px;

background:#eef4ff;

border-radius:20px;

display:flex;

justify-content:center;

align-items:center;

font-size:40px;

margin-bottom:25px;

transition:.35s;

}

.service-card:hover .icon{

background:#2563eb;

color:white;

}

.service-card h3{

font-size:28px;

margin-bottom:15px;

}

.service-card p{

color:#6b7280;

line-height:1.8;

margin-bottom:25px;

}

.service-card a{

text-decoration:none;

font-weight:600;

color:#2563eb;

}

/* CTA */

.cta{

padding:100px 20px;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:white;

text-align:center;

margin-top:50px;

}

.cta h2{

font-size:48px;

margin-bottom:20px;

}

.cta p{

max-width:650px;

margin:auto;

margin-bottom:35px;

line-height:1.8;

}

.cta a{

display:inline-block;

padding:15px 35px;

background:white;

color:#2563eb;

text-decoration:none;

border-radius:12px;

font-weight:600;

transition:.35s;

}

.cta a:hover{

transform:translateY(-5px);

}

/* Responsive */

@media(max-width:992px){

.services-hero h1{

font-size:48px;

}

}

@media(max-width:768px){

.services-hero{

padding:120px 20px 70px;

}

.services-hero h1{

font-size:36px;

}

.services-hero p{

font-size:16px;

}

.section-title{

font-size:34px;

}

.services-grid{

grid-template-columns:1fr;

}

.cta h2{

font-size:34px;

}

}

@media(max-width:480px){

.hero-btn{

width:100%;

}

.service-card{

padding:25px;

}

.icon{

width:65px;

height:65px;

font-size:30px;

}

}