:root{
    --primary:#4F46E5;
    --primary-light:#6366F1;
    --gold:#D4A017;
    --bg:#F8FAFC;
    --text:#1E293B;
    --white:#ffffff;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family: Inter, Arial, sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.7;
}

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

section{
    padding:90px 0;
}

h1,h2,h3,h4{
    font-family:Poppins, Arial, sans-serif;
}

.section-title{
    text-align:center;
    margin-bottom:50px;
}

.section-title h2{
    font-size:40px;
    margin-bottom:10px;
}

.section-title p{
    color:#64748B;
}

.navbar{
    position:sticky;
    top:0;
    z-index:1000;
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(10px);
    border-bottom:1px solid #E2E8F0;
}

.nav-container{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:5px 0;
}

.logo{
    font-size:28px;
    font-weight:700;
    color:var(--primary);
}

.logo img{
    height:120px;
    width:auto;
}

.nav-links{
    display:flex;
    gap:30px;
}

.nav-links a{
    text-decoration:none;
    color:var(--text);
    font-weight:500;
}

.hero{
    min-height:90vh;
    display:flex;
    align-items:flex-start;
    padding-top:30px;

    background:
    linear-gradient(
        90deg,
        rgba(15,23,42,.88) 0%,
        rgba(79,70,229,.78) 45%,
        rgba(79,70,229,.35) 100%
    ),
    url('../images/hero.jpg');

    background-size:cover;
    background-position:center;
    color:white;
}



.hero-content{
    max-width:750px;
    margin-top:-60px;
}

.hero h1{
    font-size:68px;
    line-height:1.1;
    margin-bottom:20px;
}

.hero p{
    font-size:22px;
    margin-bottom:35px;
}

.btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:10px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-primary{
    background:var(--gold);
    color:white;
}

.btn-primary:hover{
    transform:translateY(-2px);
}

.btn-outline{
    border:2px solid white;
    color:white;
    margin-left:15px;
}

.grid-4{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:30px;
    border-radius:18px;
    box-shadow:0 10px 30px rgba(0,0,0,.06);
    transition:.3s;
}

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

.card h3{
    margin-bottom:12px;
    color:var(--primary);
}

.values{
    background:white;
}

.cta{
    background:linear-gradient(
        135deg,
        var(--primary),
        var(--primary-light)
    );
    color:white;
    text-align:center;
}

.cta h2{
    font-size:42px;
    margin-bottom:20px;
}

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

footer p{
    opacity:.8;
}

@media(max-width:768px){

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

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

    .nav-links{
        display:none;
    }

    .section-title h2{
        font-size:30px;
    }

    .cta h2{
        font-size:32px;
    }
}
