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

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;

    background:#081120;

    color:#F8FAFC;

    overflow-x:hidden;

}

a{

    color:inherit;

    text-decoration:none;

}

section{

    padding:120px 10%;

}

.navbar{

    position:fixed;

    top:0;

    width:100%;

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:25px 8%;

    background:rgba(8,17,32,.90);

    backdrop-filter:blur(20px);

    border-bottom:1px solid rgba(255,255,255,.08);

    z-index:999;

}

.logo{

    font-size:22px;

    font-weight:800;

}

.logo span{

    color:#3B82F6;

}

nav ul{

    display:flex;

    list-style:none;

    gap:35px;

}

nav a{

    color:#CBD5E1;

    transition:.3s;

}

nav a:hover{

    color:#60A5FA;

}

.resume-btn{

    background:#2563EB;

    padding:14px 26px;

    border-radius:10px;

    font-weight:700;

}

.hero{

    display:grid;

    grid-template-columns:1.2fr 1fr;

    align-items:center;

    min-height:100vh;

    gap:80px;

}

.small-heading{

    color:#60A5FA;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:25px;

}

.hero h1{

    font-size:72px;

    line-height:1.05;

    margin-bottom:35px;

}

.hero-description{

    color:#94A3B8;

    font-size:20px;

    line-height:1.8;

    margin-bottom:40px;

}

.hero-tags{

    display:flex;

    flex-wrap:wrap;

    gap:12px;

    margin-bottom:45px;

}

.hero-tags span{

    padding:10px 18px;

    border-radius:30px;

    background:#111827;

    border:1px solid rgba(255,255,255,.08);

}

.hero-buttons{

    display:flex;

    gap:20px;

}

.primary-btn{

    background:#2563EB;

    padding:18px 34px;

    border-radius:10px;

    font-weight:700;

}

.secondary-btn{

    border:1px solid #2563EB;

    color:#60A5FA;

    padding:18px 34px;

    border-radius:10px;

}

.architecture-card{

    background:#111827;

    border-radius:20px;

    padding:50px;

    border:1px solid rgba(255,255,255,.08);

    box-shadow:0 20px 50px rgba(0,0,0,.4);

}

.cloud{

    font-size:70px;

    text-align:center;

    margin-bottom:30px;

}

.architecture{

    text-align:center;

    color:#CBD5E1;

    line-height:2;

}

.stats{

    display:grid;

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

    gap:30px;

    margin-top:-80px;

}

.stat-card{

    background:#111827;

    padding:40px;

    text-align:center;

    border-radius:20px;

    border:1px solid rgba(255,255,255,.08);

}

.stat-card h2{

    font-size:48px;

    color:#3B82F6;

}

.stat-card p{

    margin-top:15px;

    color:#CBD5E1;

}

@media(max-width:1000px){

.hero{

grid-template-columns:1fr;

}

.stats{

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

}

nav{

display:none;

}

}

@media(max-width:700px){

.hero h1{

font-size:48px;

}

.stats{

grid-template-columns:1fr;

}

}