body{
    margin:0;
    font-family: 'Inter', sans-serif;
    background:#0f0f0f;
    color:white;
}

/* container */

.container{
    width:90%;
    max-width:1200px;
    margin:auto;
}

/* header */

.site-header{
    background:#0f0f0f;
    border-bottom:1px solid #222;
    position:sticky;
    top:0;
}

.navbar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
}

.logo img{
    height:70px;
}

.nav-links{
    list-style:none;
    display:flex;
    gap:25px;
}

.nav-links a{
    text-decoration:none;
    color:#f1c40f;
    font-weight:500;
}

.nav-links a:hover{
    color:white;
}

/* hero */

.hero{
padding:140px 0;
text-align:center;

background:linear-gradient(
120deg,
#0b0b0b,
#141414,
#0b0b0b
);

background-size:200% 200%;

animation:heroGradient 12s ease infinite;
}

.hero h1{
font-size:52px;
font-weight:500;
margin-bottom:20px;
}

.hero p{
color:#a1a1a1;
max-width:700px;
margin:auto;
margin-bottom:40px;
}

@keyframes heroGradient{
0%{
background-position:0% 50%;
}
50%{
background-position:100% 50%;
}
100%{
background-position:0% 50%;
}
}

/* sections */

.section{
    padding:120px 0;
    border-bottom:1px solid #1a1a1a;
}

.section h2{
    font-size:36px;
    margin-bottom:20px;
}

.section p{
    color:#ccc;
    max-width:700px;
}

/* cards */

.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.card{
background:#111;
padding:40px;
border:1px solid #1c1c1c;

opacity:1;
transform:translateY(30px);

transition:all 0.6s ease;
}

.card:hover{
transform:translateY(-8px);
border-color:#c9a74a;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.card h3{
    color:#f1c40f;
}

/* footer */

footer{
    padding:40px 0;
    text-align:center;
    border-top:1px solid #222;
    color:#aaa;
}

body{
animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn{
from{
opacity:0;
transform:translateY(10px);
}
to{
opacity:1;
transform:translateY(0);
}
}

.nav-links a{
text-decoration:none;
color:#d4d4d4;
font-size:14px;
letter-spacing:1px;
text-transform:uppercase;
position:relative;
}

.nav-links a::after{
content:"";
position:absolute;
width:0%;
height:2px;
background:#c9a74a;
left:0;
bottom:-5px;
transition:0.3s;
}

.nav-links a:hover::after{
width:100%;
}

.hero-button{
display:inline-block;
padding:14px 34px;

background:#c9a74a;
color:#000;

text-decoration:none;
font-weight:600;
letter-spacing:1px;

transition:all 0.3s ease;
}

.hero-button:hover{

background:#e6c86b;

transform:translateY(-3px);

box-shadow:0 10px 30px rgba(0,0,0,0.5);

}

.stats{
background:#0b0b0b;
text-align:center;
}

.stats-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:40px;
}

.stat h3{
font-size:48px;
color:#c9a96e;
margin-bottom:10px;
}

.stat p{
color:#aaa;
font-size:16px;
}

.footer{
background:#050505;
padding:80px 0 30px 0;
border-top:1px solid #1a1a1a;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer h3{
color:#c9a96e;
margin-bottom:15px;
}

.footer h4{
margin-bottom:15px;
color:#fff;
}

.footer p{
color:#aaa;
font-size:14px;
}

.footer ul{
list-style:none;
padding:0;
}

.footer ul li{
margin-bottom:8px;
}

.footer ul li a{
color:#aaa;
text-decoration:none;
}

.footer ul li a:hover{
color:#c9a96e;
}

.footer-bottom{
margin-top:40px;
text-align:center;
border-top:1px solid #1a1a1a;
padding-top:20px;
color:#777;
font-size:13px;
}

.contact-form{
max-width:600px;
margin:auto;
display:flex;
flex-direction:column;
gap:20px;
}

.contact-form input,
.contact-form textarea{
padding:14px;
background:#111;
border:1px solid #222;
color:#fff;
font-size:14px;
}

.contact-form button{
padding:14px;
background:#c9a96e;
border:none;
color:#000;
font-weight:600;
cursor:pointer;
}

.contact-form button:hover{
opacity:0.9;
}