/* =====================================
   KEVENTOR - Global Corporate Theme
===================================== */

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

body{
    font-family:Arial,Helvetica,sans-serif;
    background:#f7f8fa;
    color:#222;
    line-height:1.7;
}

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

/* Header */

header{
    background:#0f172a;
    color:#fff;
    padding:20px 0;
    position:sticky;
    top:0;
}

header .container{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    font-size:30px;
    font-weight:bold;
    letter-spacing:2px;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:25px;
    font-weight:600;
}

nav a:hover{
    color:#38bdf8;
}

/* Hero */

.hero{
    background:linear-gradient(135deg,#0f172a,#1e3a8a);
    color:white;
    text-align:center;
    padding:120px 20px;
}

.hero h1{
    font-size:52px;
    margin-bottom:20px;
}

.hero p{
    max-width:700px;
    margin:auto;
    font-size:20px;
}

.btn{
    display:inline-block;
    margin-top:35px;
    padding:15px 35px;
    background:#38bdf8;
    color:white;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

.btn:hover{
    background:#0284c7;
}

/* Sections */

section{
    padding:80px 0;
}

section h2{
    text-align:center;
    margin-bottom:25px;
    font-size:38px;
}

section p{
    text-align:center;
    max-width:900px;
    margin:auto;
}

/* Cards */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
    margin-top:50px;
}

.card{
    background:white;
    padding:35px;
    border-radius:12px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card h3{
    margin-bottom:12px;
    color:#0f172a;
}

/* Footer */

footer{
    background:#0f172a;
    color:white;
    text-align:center;
    padding:50px 20px;
}

footer p{
    margin-top:15px;
}

/* Mobile */

@media(max-width:768px){

header .container{
flex-direction:column;
}

nav{
margin-top:20px;
}

nav a{
display:block;
margin:12px 0;
}

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

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

}
