body{
margin:0;
font-family:Arial, Helvetica, sans-serif;
color:#333;
line-height:1.6;
}

/* HEADER */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:12px 7%;
background:white;
box-shadow:0 2px 6px rgba(0,0,0,.08);
}

.logo{
display:flex;
align-items:center;
gap:14px;
font-size:22px;
font-weight:600;
color:#1f2d3d;
}

.logo img{
width:95px;
}

.nav a{
margin-left:22px;
color:#333;
font-weight:600;
text-decoration:none;
}

/* HERO */

.hero{
position:relative;
height:500px;
background:url("../images/hero.jpg") center 32%/cover no-repeat;
display:flex;
align-items:center;
justify-content:center;
}

.hero::after{
content:"";
position:absolute;
top:0;
left:0;
right:0;
bottom:0;
background:linear-gradient(rgba(0,0,0,.32), rgba(0,0,0,.40));
}

.hero-content{
position:relative;
color:white;
text-align:center;
max-width:700px;
}

.hero h1{
font-size:50px;
margin-bottom:8px;
}

.hero p{
font-size:20px;
margin-top:4px;
}

.button{
display:inline-block;
background:#2c7be5;
color:white;
padding:14px 28px;
border-radius:6px;
font-weight:bold;
margin-top:16px;
text-decoration:none;
}

.hero-link{
display:block;
text-decoration:none;
color:inherit;
}

/* PAGE CONTAINER */

.container{
max-width:1100px;
margin:auto;
padding:30px 20px;
}

h2{
margin-top:0;
}

/* CARDS */

.cards{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:22px;
margin-top:15px;
}

.card{
background:white;
padding:22px;
border-radius:10px;
box-shadow:0 2px 8px rgba(0,0,0,.08);
}

.card h3{
color:#2c7be5;
margin-top:0;
}

/* SLIDER */

.slider{
position:relative;
height:420px;
overflow:hidden;
border-radius:10px;
margin-top:15px;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
animation:fade 20s infinite;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.caption{
position:absolute;
bottom:25px;
left:25px;
background:rgba(0,0,0,.55);
color:white;
padding:18px;
border-radius:6px;
max-width:350px;
}

.slide:nth-child(1){animation-delay:0s}
.slide:nth-child(2){animation-delay:5s}
.slide:nth-child(3){animation-delay:10s}
.slide:nth-child(4){animation-delay:15s}

@keyframes fade{
0%{opacity:0}
5%{opacity:1}
25%{opacity:1}
30%{opacity:0}
100%{opacity:0}
}

/* CTA */

.cta{
background:#eef4fa;
text-align:center;
padding:40px 20px;
margin-top:20px;
}

.cta-button{
display:inline-block;
background:#28a745;
color:white;
padding:14px 28px;
border-radius:6px;
font-weight:bold;
text-decoration:none;
margin-top:10px;
}

/* PARTNERS */

.partners{
background:#f7f9fc;
text-align:center;
padding:40px 20px;
}

.partner-logos{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:35px;
margin-top:20px;
}

.partner-logos img{
height:60px;
opacity:.9;
transition:transform .3s;
}

.partner-logos img:hover{
transform:scale(1.08);
}



/* FOOTER */

.footer{
background:#1f2d3d;
color:white;
text-align:center;
padding:30px;
margin-top:25px;
}

.footer a{
color:#9cc3ff;
text-decoration:none;
}