/* ==========================================
   KVG WORLD THEME
   Version 1.0
========================================== */

:root{

    --primary:#00D4FF;
    --secondary:#7C3AED;

    --background:#0B1120;
    --surface:#111827;

    --text:#F8FAFC;
    --muted:#94A3B8;

    --container:1200px;

}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--background);

    color:var(--text);

    font-family:'Inter',sans-serif;

    line-height:1.7;

}

img{

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

.container{

    width:min(var(--container),92%);
    margin:auto;

}

.hero{

min-height:100vh;

display:flex;

justify-content:center;

align-items:center;

text-align:center;

padding:80px 20px;

}

.hero h1{

font-size:70px;

font-family:Poppins,sans-serif;

font-weight:800;

margin-bottom:20px;

}

.hero h2{

font-size:30px;

color:var(--primary);

margin-bottom:25px;

}

.hero p{

max-width:700px;

margin:auto;

color:var(--muted);

font-size:20px;

}