/* GLOBAL */

html, body{
height:100%;
}

body{
display:flex;
flex-direction:column;
min-height:100vh;
margin:0;
font-family:"Poppins",sans-serif;
font-size:16px;
color:#2c2c2c;
background:#ffffff;
}

.logo img{
max-height:60px;
width:auto;
}
.hero-images {
max-height: 275px;
}


/* HEADER */

header{
background:#ffffff;
border-bottom:1px solid #e5e5e5;
display:flex;
justify-content:center;
align-items:center;

/* subtle floating effect */
box-shadow:0 2px 8px rgba(0,0,0,.05);
}

header .container{
max-width:1100px;
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
}


/* BUTTON */

.btn-primary{
border-radius:30px;
padding:10px 26px;
font-weight:500;
background-color: #370bf8;
}

.btn-primary:hover{
transform:translateY(-1px);
}


/* SECTIONS */

section{
padding-top:40px;
padding-bottom:40px;
}

.container{
max-width:1100px;
}


/* HERO */

.hero{
padding-top:20px;
padding-bottom:20px;
}

.hero h1{
font-weight:600;
font-size:36px;
margin-bottom:6px;
}

.hero p{
font-size:18px;
color:#666;
margin-bottom:0;
}

main {
    margin: auto 0;
}
/* IMAGE CARDS */

.image-box{
border-radius:10px;
box-shadow:0 8px 22px rgba(0,0,0,.10);
transition:transform .2s ease;
}

.image-box:hover{
transform:translateY(-4px);
}


/* FORM */

.form-section h4{
font-weight:600;
margin-bottom:25px;
}

.form-control,
.form-select{
border-radius:8px;
padding:12px;
border:1px solid #dcdcdc;
}

.form-control:focus,
.form-select:focus{
box-shadow:0 0 0 3px rgba(60,100,255,.15);
border-color:#4b6bff;
}


/* FOOTER */

footer{
height:85px;
background:#d9d9d9;
margin-top:auto;
display:flex;
justify-content:center;
align-items:center;
font-size:14px;
color:#444;
}

footer .container{
max-width:1100px;
width:100%;
display:flex;
justify-content:center;
align-items:center;
gap:40px;
text-align:center;
}

footer a{
color:#444;
text-decoration:none;
}

footer a:hover{
text-decoration:underline;
}

/* FOOTER MAKIOS */

footer-makios{
display:block;
background:#333;
color:#ddd;
text-align:center;
padding:10px 0;
font-size:12px;
}

footer-makios p{
margin:0;
}

footer-makios a{
color:#fff;
text-decoration:none;
}

