/* =====================================
   GenX Technologies - Portfolio Page
===================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#f8faff;
color:#1f2937;
overflow-x:hidden;
}

/* Hero */

.portfolio-hero{

padding:150px 20px 90px;

background:linear-gradient(135deg,#0f172a,#2563eb);

color:white;

text-align:center;

}

.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;

}

.portfolio-hero h1{

font-size:58px;

margin-bottom:20px;

}

.portfolio-hero p{

max-width:700px;

margin:auto;

font-size:18px;

line-height:1.8;

color:#dbeafe;

}

/* Portfolio */

.portfolio-section{

padding:90px 20px;

}

.portfolio-filter{

display:flex;

justify-content:center;

gap:15px;

flex-wrap:wrap;

margin-bottom:50px;

}

.portfolio-filter button{

padding:12px 24px;

border:none;

border-radius:40px;

background:white;

cursor:pointer;

font-size:15px;

font-weight:600;

box-shadow:0 8px 20px rgba(0,0,0,.08);

transition:.35s;

}

.portfolio-filter button:hover,

.portfolio-filter .active{

background:#2563eb;

color:white;

}

/* Grid */

.portfolio-grid{

display:grid;

grid-template-columns:repeat(auto-fit,minmax(350px,1fr));

gap:35px;

}

/* Card */

.project-card{

background:white;

border-radius:22px;

overflow:hidden;

box-shadow:0 15px 35px rgba(0,0,0,.08);

transition:.35s;

}

.project-card:hover{

transform:translateY(-12px);

box-shadow:0 25px 50px rgba(37,99,235,.18);

}

.project-image{

height:240px;

display:flex;

justify-content:center;

align-items:center;

font-size:90px;

background:linear-gradient(135deg,#2563eb,#0f172a);

color:white;

}

.project-content{

padding:30px;

}

.project-content h3{

font-size:28px;

margin-bottom:12px;

}

.project-content p{

color:#6b7280;

line-height:1.8;

margin-bottom:20px;

}

/* Tech Tags */

.tech{

display:flex;

flex-wrap:wrap;

gap:10px;

margin-bottom:25px;

}

.tech span{

padding:8px 16px;

border-radius:30px;

background:#eef4ff;

color:#2563eb;

font-size:13px;

font-weight:600;

}

.project-content a{

text-decoration:none;

font-weight:600;

color:#2563eb;

transition:.3s;

}

.project-content a:hover{

padding-left:10px;

}

/* CTA */

.portfolio-cta{

padding:100px 20px;

margin-top:60px;

background:linear-gradient(135deg,#2563eb,#1d4ed8);

color:white;

text-align:center;

}

.portfolio-cta h2{

font-size:46px;

margin-bottom:20px;

}

.portfolio-cta p{

max-width:650px;

margin:auto;

line-height:1.8;

margin-bottom:35px;

}

.portfolio-cta a{

display:inline-block;

padding:15px 35px;

background:white;

color:#2563eb;

border-radius:12px;

text-decoration:none;

font-weight:600;

transition:.35s;

}

.portfolio-cta a:hover{

transform:translateY(-5px);

}

/* Mobile */

@media(max-width:992px){

.portfolio-hero h1{

font-size:46px;

}

}

@media(max-width:768px){

.portfolio-hero{

padding:120px 20px 70px;

}

.portfolio-hero h1{

font-size:36px;

}

.portfolio-grid{

grid-template-columns:1fr;

}

.project-image{

height:200px;

font-size:70px;

}

.portfolio-cta h2{

font-size:32px;

}

}

@media(max-width:480px){

.portfolio-filter button{

width:100%;

}

.project-content{

padding:20px;

}

}