*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins', sans-serif;
}

body{
    background:#f6f7fb;
    color:#333;
}

/* NAVBAR */
header{
    position:sticky;
    top:0;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.08);
    z-index:1000;
}

nav{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:18px 8%;
}

.logo{
    font-size:26px;
    font-weight:700;
    color:#5c2d91;
}

.nav-links{
    display:flex;
    gap:25px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

.nav-links a:hover{
    color:#5c2d91;
}

/* HERO */
.hero{
    height:70vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
    background:linear-gradient(rgba(0,0,0,0.6),rgba(0,0,0,0.6)),
    url('https://images.unsplash.com/photo-1438032005730-c779502df39b?auto=format&fit=crop&w=1600&q=80');
    background-size:cover;
    background-position:center;
}

.hero h1{
    font-size:50px;
}

.btn{
    display:inline-block;
    margin-top:20px;
    padding:14px 30px;
    background:#5c2d91;
    color:white;
    border-radius:50px;
    text-decoration:none;
}

/* SECTIONS */
section{
    padding:80px 8%;
}

.title{
    text-align:center;
    margin-bottom:40px;
}

.title h2{
    font-size:38px;
    color:#5c2d91;
}

/* CARDS */
.grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.card{
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 10px 20px rgba(0,0,0,0.08);
    transition:0.3s;
}

.card:hover{
    transform:translateY(-8px);
}

/* CONTACT FORM */
form{
    max-width:600px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

input, textarea{
    padding:12px;
    border:1px solid #ddd;
    border-radius:10px;
}

button{
    padding:14px;
    background:#5c2d91;
    color:white;
    border:none;
    border-radius:10px;
    cursor:pointer;
}

/* FOOTER */
footer{
    text-align:center;
    padding:20px;
    background:#1e1e1e;
    color:white;
}

/* ANIMATION */
.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:1s ease;
}

.show{
    opacity:1;
    transform:translateY(0);
}