
:root{
--red:#F0140C;
--green:#0A7A0A;
--yellow:#FFC400;
--dark:#111;
--light:#f7f7f7;
}

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:var(--light);
color:#333;
line-height:1.6;
}

 .logo img {
            height: 60px;
        }

/* NAVBAR */

nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:18px 8%;
background:white;
box-shadow:0 4px 15px rgba(0,0,0,0.05);
position:sticky;
top:0;
z-index:100;
}

.logo{
display:flex;
align-items:center;
gap:10px;
font-weight:600;
font-size:20px;
color:var(--green);
}

.logo span{
color:var(--red);
}

nav ul{
display:flex;
gap:25px;
list-style:none;
}

nav a{
text-decoration:none;
color:#333;
font-weight:500;
transition:.3s;
}

nav a:hover{
color:var(--green);
}

/* HERO */

/* .hero{

    background-image: url("../img/hero.jpg");

    background-size: cover;

    background-position: center;

    height: 75vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

} */

.hero{

    background:
    linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)),
    url("../img/hero.jpg");

    background-size: cover;

    background-position: center;

    height: 75vh;

    display: flex;

    align-items: center;

    justify-content: center;

    text-align: center;

    color: white;

}


.hero h1{
font-size:48px;
margin-bottom:10px;
}

.hero p{
font-size:20px;
opacity:.9;
}

.hero button{
margin-top:30px;
padding:14px 35px;
border:none;
background:var(--yellow);
font-size:16px;
border-radius:30px;
cursor:pointer;
font-weight:600;
transition:.3s;
}

.hero button:hover{
transform:translateY(-2px);
}

/* SECTIONS */

section{
padding:80px 8%;
}

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

.section-title h2{
font-size:34px;
color:var(--green);
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:30px;
}

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

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

.card h3{
color:var(--red);
margin-bottom:10px;
}

/* CTA */

.cta{
background:linear-gradient(135deg,var(--red),#b30c08);
color:white;
text-align:center;
border-radius:15px;
padding:60px 30px;
}

.cta h2{
margin-bottom:15px;
}

.cta button{
margin-top:20px;
padding:14px 35px;
border:none;
background:var(--yellow);
border-radius:30px;
font-weight:600;
cursor:pointer;
}

.cta a{
margin-top:20px;
padding:14px 35px;
border:none;
background:var(--yellow);
border-radius:30px;
font-weight:600;
cursor:pointer;
}
.hero-buttons a{
margin-top:20px;
padding:14px 35px;
border:none;
background:var(--yellow);
border-radius:30px;
font-weight:600;
cursor:pointer;
}

/* FOOTER */

footer{
margin-top:60px;
background:var(--dark);
color:white;
padding:30px;
text-align:center;
}