*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#f8f8f8;
color:#333;
line-height:1.7;
}

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* HEADER */

header{
position:fixed;
width:100%;
top:0;
left:0;
background:#fff;
z-index:999;
box-shadow:0 5px 20px rgba(0,0,0,.08);
}

header .container{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:80px;
}

nav ul{
display:flex;
list-style:none;
}

nav ul li{
margin-left:30px;
}

nav ul li a{
text-decoration:none;
color:#7d0d2f;
font-weight:600;
transition:.3s;
}

nav ul li a:hover{
color:#f28c28;
}

.btn{
background:#7d0d2f;
color:#fff;
padding:12px 30px;
border-radius:30px;
text-decoration:none;
transition:.3s;
}

.btn:hover{
background:#f28c28;
}

/* HERO */

.hero{
    min-height: 100vh;
min-height:100vh;
padding-top:150px;
padding-bottom:80px;
    background-image:
    linear-gradient(rgba(0,0,0,0.45),rgba(0,0,0,0.45)),
    url("./images/hero.jpg");

    background-repeat:no-repeat;
    background-size:cover;
    background-position:center center;

    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

    color:#fff;
}
.hero-content{
position:relative;
z-index:5;
width:900px;
max-width:90%;
margin:auto;
}



.hero-content{
position:relative;
z-index:5;
width:900px;
}

.hero h3{
font-size:25px;
color:#f28c28;
letter-spacing:5px;
}

.hero h1{
font-size:90px;
font-weight:800;
margin:15px 0;
}

.hero h2{
font-size:35px;
margin-bottom:20px;
}

.hero p{
font-size:18px;
margin-bottom:40px;
}

.hero-btn a{
display:inline-block;
padding:15px 40px;
margin:10px;
text-decoration:none;
border-radius:50px;
font-weight:600;
transition:.4s;
}

.hero-btn a:first-child{
background:#7d0d2f;
color:white;
}

.hero-btn a:last-child{
background:#f28c28;
color:white;
}

.hero-btn a:hover{
transform:translateY(-5px);
}

/* ABOUT */

#about{
padding:100px 0;
background:white;
}

#about .container{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

#about img{
width:100%;
border-radius:20px;
box-shadow:0 20px 50px rgba(0,0,0,.15);
}

#about h4{
color:#f28c28;
font-size:22px;
}

#about h2{
font-size:50px;
color:#7d0d2f;
margin:20px 0;
}

#about p{
margin-bottom:20px;
}

#about a{
display:inline-block;
padding:15px 35px;
background:#7d0d2f;
color:white;
text-decoration:none;
border-radius:30px;
}

/* SERVICES */

#services{
padding:100px 0;
background:#f8f8f8;
}

.title{
text-align:center;
margin-bottom:60px;
}

.title h2{
font-size:50px;
color:#7d0d2f;
}

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.card{
background:white;
padding:40px;
text-align:center;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,.08);
transition:.4s;
}

.card:hover{
transform:translateY(-15px);
}

.card i{
font-size:60px;
color:#f28c28;
margin-bottom:20px;
}

.card h3{
color:#7d0d2f;
margin-bottom:15px;
}

/* STATS */

#stats{
padding:100px 5%;
background:#7d0d2f;
display:grid;
grid-template-columns:repeat(4,1fr);
gap:30px;
text-align:center;
color:white;
}

.box{
padding:30px;
}

.box h2{
font-size:60px;
color:#f28c28;
}

.box p{
font-size:22px;
}

/* PARTNERS */

#partners{
padding:100px 5%;
background:white;
text-align:center;
}

#partners h2{
font-size:50px;
margin-bottom:60px;
color:#7d0d2f;
}

.logos{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.logos div{
padding:40px;
background:#f5f5f5;
font-size:30px;
font-weight:bold;
border-radius:20px;
transition:.3s;
}

.logos div:hover{
background:#f28c28;
color:white;
}

/* CONTACT */

#contact{
padding:100px 5%;
background:#222;
text-align:center;
color:white;
}

#contact h2{
font-size:50px;
margin-bottom:50px;
}

.contact-box{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:30px;
}

.contact-box div{
background:#333;
padding:30px;
border-radius:15px;
font-size:20px;
}

.contact-box i{
color:#f28c28;
margin-right:10px;
}

/* FOOTER */

footer{
background:#111;
padding:60px 20px;
text-align:center;
color:white;
}

footer img{
height:100px;
margin-bottom:20px;
}

footer h3{
font-size:50px;
color:#f28c28;
}

footer p{
margin-top:10px;
}

/* WHATSAPP */

.whatsapp{
position:fixed;
right:25px;
bottom:25px;
width:70px;
height:70px;
background:#25D366;
color:white;
font-size:40px;
border-radius:50%;
display:flex;
justify-content:center;
align-items:center;
text-decoration:none;
box-shadow:0 10px 30px rgba(0,0,0,.3);
z-index:999;
transition:.3s;
}

.whatsapp:hover{
transform:scale(1.1);
}

/* RESPONSIVE */

@media(max-width:992px){

.hero h1{
font-size:60px;
}

.hero h2{
font-size:25px;
}

#about .container{
grid-template-columns:1fr;
}

#stats{
grid-template-columns:1fr 1fr;
}

.logos{
grid-template-columns:1fr 1fr;
}

.contact-box{
grid-template-columns:1fr;
}

nav{
display:none;
}

}

@media(max-width:768px){

.hero{
padding:20px;
}

.hero h1{
font-size:45px;
}

.hero h2{
font-size:20px;
}

.hero h3{
font-size:18px;
}

.hero p{
font-size:16px;
}

#stats{
grid-template-columns:1fr;
}

.logos{
grid-template-columns:1fr;
}

.title h2,
#partners h2,
#contact h2,
#about h2{
font-size:35px;
}

.logo img{
height:60px;
}

}