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

body{

font-family:Arial,Helvetica,sans-serif;

background:#020617;

color:#fff;

line-height:1.6;
}

a{
text-decoration:none;
}

/* NAVBAR */

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

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

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

.navbar{

width:92%;

max-width:1300px;

height:78px;

margin:20px auto;

padding:0 35px;

display:flex;

justify-content:space-between;

align-items:center;

position:sticky;

top:15px;

z-index:1000;

background:rgba(3,18,37,.92);

backdrop-filter:blur(18px);

border:1px solid rgba(59,130,246,.15);

border-radius:20px;

box-shadow:

0 10px 35px rgba(0,0,0,.35);

}


/* BRAND */

.brand{

display:flex;

align-items:center;

line-height:1;

margin-bottom:8px;

}

.logo{

display:flex;

flex-direction:column;

justify-content:center;

}

.logo-text{

font-size:34px;

font-weight:800;

color:#fff;

}

.logo-number{

font-size:34px;

font-weight:800;

margin-left:2px;

color:#60a5fa;

}


/* MENU */

.nav-links{

display:flex;

align-items:center;

gap:32px;

}


/* LINKS */

.nav-links a{

font-size:16px;

font-weight:600;

color:#cbd5e1;

transition:.3s;

position:relative;

}


/* HOVER */

.nav-links a:hover{

color:#fff;

}


/* ACTIVE */

.active::after{

content:"";

position:absolute;

left:0;

bottom:-12px;

width:100%;

height:3px;

background:#3b82f6;

border-radius:10px;

}


/* CONTACT BUTTON */

.cta{

padding:12px 22px;

border-radius:12px;

background:

linear-gradient(

135deg,

#2563eb,

#3b82f6

);

font-weight:700;

color:#fff !important;

}

.cta:hover{

transform:translateY(-2px);

}


/* HAMBURGER */

.menu-toggle{

display:none;

font-size:32px;

cursor:pointer;

}


/* MOBILE */

@media(max-width:900px){

.navbar{

height:85px;

padding:0 20px;

}

.logo-text{

font-size:28px;

}

.logo-number{

font-size:28px;

}

.menu-toggle{

display:block;

}

.nav-links{

display:none;

position:absolute;

top:95px;

right:20px;

width:250px;

padding:25px;

flex-direction:column;

gap:22px;

background:#0f172a;

border:1px solid #1e293b;

border-radius:18px;

}

.nav-links.show{

display:flex;

}

}

/* HERO */

.hero{

width:90%;

max-width:1200px;

margin:auto;

padding:80px 0 120px;

display:flex;

align-items:center;

justify-content:space-between;

gap:60px;
}

.hero-content{

flex:1;
}

.hero-image{

flex:1;

display:flex;

justify-content:center;
}

.hero-image img{

width:100%;

max-width:650px;

border-radius:20px;

box-shadow:

0 20px 60px rgba(37,99,235,0.25);
}

.hero-tag{

display:inline-block;

padding:8px 18px;

background:rgba(59,130,246,0.1);

border:1px solid rgba(59,130,246,0.3);

border-radius:30px;

color:#93c5fd;

font-size:14px;

margin-bottom:28px;
}

.hero h1{

font-size:56px;

line-height:1.1;

margin-bottom:28px;
}

.hero h2{

font-size:24px;

font-weight:normal;

color:#cbd5e1;

margin-bottom:28px;
}

.hero p{

font-size:18px;

color:#94a3b8;

margin-bottom:40px;
}

.btn{

display:inline-block;

background:#2563eb;

padding:16px 30px;

border-radius:12px;

font-size:16px;

color:#fff;

transition:.3s;
}

.btn:hover{

background:#3b82f6;
}

/* SERVICES */

.services{

width:90%;

max-width:1200px;

margin:auto;

padding-bottom:100px;
}

.section-title{

font-size:40px;

margin-bottom:20px;
}

.section-desc{

font-size:18px;

color:#94a3b8;

margin-bottom:50px;

max-width:750px;
}

.service-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:28px;
}

.service-card{

    background:#07111f;

    border:1px solid #1e293b;

    border-radius:22px;

    padding:32px;

    transition:.3s ease;

    min-height:260px;
}

.service-card:hover{

    transform:translateY(-6px);

    border-color:#2563eb;

    box-shadow:

    0 10px 35px rgba(37,99,235,.25);
}

.service-card h3{

    font-size:26px;

    margin-bottom:22px;
}

.service-card p{

    color:#94a3b8;

    font-size:18px;

    line-height:1.8;
}

.site-tagline{

font-size:14px;

font-weight:500;

color:#94a3b8;


letter-spacing:.3px;

}



@media(max-width:900px){

.site-tagline{

display:block;

font-size:10px;

line-height:1.2;

white-space:normal;

max-width:220px;

}

}

/* FOOTER */

footer{

margin-top:80px;

padding:40px 20px;

text-align:center;

color:#64748b;

border-top:1px solid #1e293b;

font-size:15px;

}

/* MOBILE */

@media(max-width:900px){

.hero{

flex-direction:column;

text-align:center;

gap:40px;
}

.hero h1{

font-size:42px;
}

.hero h2{

font-size:20px;
}

.hero-image img{

max-width:100%;
}

.service-grid{

grid-template-columns:1fr;
}

.nav-links{

display:none;

flex-direction:column;

background:#0f172a;

position:absolute;

top:80px;

right:20px;

padding:20px;

border-radius:16px;

border:1px solid #1e293b;

width:220px;
}

.nav-links.show{

display:flex;
}

.menu-toggle{

display:block;
}

}