
/* ==========================
   GenX Technologies
   Premium Responsive CSS
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#f7f9fc;
    color:#222;
    overflow-x:hidden;
    line-height:1.6;
}

/* Header */

header{
    position:sticky;
    top:0;
    width:100%;
    background:#fff;
    box-shadow:0 2px 12px rgba(0,0,0,.08);
    z-index:999;
}

nav{
    max-width:1200px;
    margin:auto;
    padding:18px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:700;
}

.logo span{
    color:#2563eb;
}

.menu{
    display:flex;
    gap:28px;
}

.menu a{
    text-decoration:none;
    color:#333;
    font-weight:500;
    transition:.3s;
}

.menu a:hover{
    color:#2563eb;
}

.btn{
    display:inline-block;
    padding:12px 24px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.btn:hover{
    background:#174fd8;
    transform:translateY(-3px);
}

.btn2{
    display:inline-block;
    padding:12px 24px;
    border:2px solid #2563eb;
    color:#2563eb;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}

.btn2:hover{
    background:#2563eb;
    color:#fff;
}

/* ================= NAVBAR ================= */

.header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    background:#fff;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
    z-index:999;
}

.navbar{
    max-width:1200px;
    margin:auto;
    height:80px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
}

.logo{
    font-size:38px;
    font-weight:700;
    text-decoration:none;
    color:#111827;
}

.logo span{
    color:#2563eb;
}

.nav-links{
    display:flex;
    list-style:none;
    gap:35px;
    margin:0;
    padding:0;
}

.nav-links li{
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#374151;
    font-weight:500;
    transition:.3s;
}

.nav-links a:hover,
.nav-links a.active{
    color:#2563eb;
}

.quote-btn{
    background:#2563eb;
    color:#fff;
    padding:12px 26px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
}

.quote-btn:hover{
    background:#1d4ed8;
}

@media(max-width:900px){

.nav-links{
display:none;
}

.quote-btn{
display:none;
}

}

/* Hero */

.hero{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    display:flex;
    align-items:center;
    gap:50px;
    flex-wrap:wrap;
}

.left,.right{
    flex:1;
    min-width:300px;
}

.right{
    text-align:center;
}

.hero h1{
    font-size:56px;
    line-height:1.15;
}

.hero h1 span{
    color:#2563eb;
}

.hero p{
    color:#666;
    font-size:18px;
    margin:25px 0;
}

.buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.stats{
    display:flex;
    gap:30px;
    flex-wrap:wrap;
    margin-top:40px;
}

.stat{
    background:#fff;
    padding:18px;
    border-radius:15px;
    box-shadow:0 8px 20px rgba(0,0,0,.08);
    min-width:120px;
    text-align:center;
}

.stat h2{
    color:#2563eb;
}

.mockup{
    width:100%;
    max-width:520px;
    height:340px;
    margin:auto;
    border-radius:25px;
    display:flex;
    justify-content:center;
    align-items:center;
    color:#fff;
    font-size:36px;
    font-weight:700;
    background:linear-gradient(135deg,#0f172a,#2563eb);
    box-shadow:0 20px 40px rgba(37,99,235,.3);
}

/* Sections */

section{
    padding:80px 20px;
}

.container{
    max-width:1200px;
    margin:auto;
}

.title{
    text-align:center;
    font-size:40px;
    margin-bottom:45px;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:#fff;
    border-radius:18px;
    padding:30px;
    box-shadow:0 8px 22px rgba(0,0,0,.08);
    transition:.35s;
}

.card:hover{
    transform:translateY(-10px);
    box-shadow:0 18px 35px rgba(37,99,235,.18);
}

.card h3{
    margin-bottom:15px;
}

/* Animations */

.hidden{
    opacity:0;
    transform:translateY(60px);
    transition:.8s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

/* Scroll Button */

#topBtn{
    position:fixed;
    right:25px;
    bottom:25px;
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    display:none;
    z-index:999;
    box-shadow:0 10px 25px rgba(0,0,0,.25);
}

/* ===========================
        FOOTER
=========================== */

.footer{

background:#0f172a;
color:#ffffff;
padding:70px 10% 20px;

}

.footer-container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
margin-bottom:40px;

}

.footer h2{

font-size:30px;
margin-bottom:15px;
color:#3b82f6;

}

.footer h3{

font-size:22px;
margin-bottom:18px;
color:#ffffff;

}

.footer p{

color:#cbd5e1;
line-height:1.8;

}

.footer-links{

display:flex;
flex-direction:column;

}

.footer-links a{

color:#cbd5e1;
text-decoration:none;
margin:8px 0;
transition:.3s;

}

.footer-links a:hover{

color:#3b82f6;
padding-left:8px;

}

.footer-contact p{

margin:12px 0;

}

.footer-contact i{

color:#3b82f6;
margin-right:10px;
width:20px;

}

.footer-bottom{

border-top:1px solid rgba(255,255,255,.1);
padding-top:20px;
text-align:center;
color:#94a3b8;

}

.footer-bottom strong{

color:#3b82f6;

}

/* Responsive */

@media(max-width:992px){

.hero h1{
    font-size:46px;
}

}

@media(max-width:768px){

.menu{
    display:none;
}

.hero{
    padding-top:50px;
}

.hero h1{
    font-size:38px;
}

.buttons{
    flex-direction:column;
}

.btn,.btn2{
    width:100%;
    text-align:center;
}

.stats{
    justify-content:center;
}

.mockup{
    height:250px;
}

.title{
    font-size:32px;
}

}

@media(max-width:480px){

.logo{
    font-size:24px;
}

.hero h1{
    font-size:32px;
}

.hero p{
    font-size:16px;
}

}
