/* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* RESET */

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Manrope',sans-serif;
    background:#F8FAFC;
    color:#0F172A;
    line-height:1.6;
    overflow-x:hidden;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
    color:inherit;
}

ul{
    list-style:none;
}


/* HERO */

.hero{
    min-height:100vh;
    display:flex;
    align-items:center;
    padding-top:120px;
    background:linear-gradient(135deg,#F8FAFC 0%,#EEF5FF 100%);
}

.hero-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:80px;
}

.hero-left{
    flex:1;
}

.hero-right{
    flex:1;
    display:flex;
    justify-content:center;
}

.hero-tag{
    display:inline-block;
    padding:10px 18px;
    background:#DBEAFE;
    color:#2563EB;
    border-radius:50px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.hero h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:800;
}

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

.hero p{
    font-size:20px;
    color:#475569;
    margin-bottom:40px;
    max-width:550px;
}

.hero-buttons{
    display:flex;
    gap:20px;
}

.hero-right img{
    width:420px;
    filter:drop-shadow(0 0 40px rgba(37,99,235,.30));
    animation:float 5s ease-in-out infinite;
}

/* SERVICES */

.services{
    padding:120px 0;
}

.section-tag{
    color:#2563EB;
    font-weight:700;
    letter-spacing:2px;
}

.services h2{
    font-size:46px;
    margin:20px 0;
}

.section-description{
    color:#64748B;
    max-width:700px;
    margin-bottom:60px;
}

.services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.service-card{
    background:white;
    padding:40px 30px;
    border-radius:20px;
    transition:.35s;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.service-card:hover{
    transform:translateY(-10px);
    box-shadow:0 25px 60px rgba(37,99,235,.15);
}

.service-card h3{
    margin-bottom:20px;
    font-size:24px;
}

.service-card p{
    color:#64748B;
}

/* FOOTER */

footer{
    background:#0F172A;
    color:white;
    text-align:center;
    padding:40px;
}

/* ANIMATION */

@keyframes float{

0%{
transform:translateY(0);
}

50%{
transform:translateY(-20px);
}

100%{
transform:translateY(0);
}

}

/* RESPONSIVE */

@media(max-width:992px){

.hero-content{
flex-direction:column;
text-align:center;
}

.hero p{
margin:auto;
margin-bottom:40px;
}

.hero-buttons{
justify-content:center;
}

.services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

nav{
display:none;
}

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

.services-grid{
grid-template-columns:1fr;
}

.hero-right img{
width:280px;
}

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

/* HEADER */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:1000;
    background:rgba(255,255,255,.8);
    backdrop-filter:blur(14px);
    border-bottom:1px solid rgba(0,0,0,.05);
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:80px;
}

.logo img{
    width:160px;
}

nav ul{
    display:flex;
    gap:40px;
}

nav a{
    font-weight:600;
    transition:.3s;
}

nav a:hover{
    color:#2563EB;
}

.btn-primary{
    background:#2563EB;
    color:#fff;
    padding:14px 28px;
    border-radius:10px;
    transition:.3s;
    font-weight:600;
}

.btn-primary:hover{
    background:#1D4ED8;
    transform:translateY(-3px);
}

.btn-secondary{
    border:2px solid #2563EB;
    color:#2563EB;
    padding:14px 28px;
    border-radius:10px;
    transition:.3s;
    font-weight:600;
}

.btn-secondary:hover{
    background:#2563EB;
    color:white;
}