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

body{
color:#333;
background:#fafafa;
}

/* NAV */
header{
position:relative;
}

nav{
background:white;
box-shadow:0 2px 8px rgba(0,0,0,.1);
}

nav ul{
display:flex;
justify-content:center;
align-items:center;
gap:30px;
padding:20px;
list-style:none;
}

nav a{
text-decoration:none;
color:#555;
font-size:17px;
}

nav a:hover{
color:#1976d2;
}

.logo a{
font-size:22px;
font-weight:bold;
}

/* MENU BTN */
.menu-btn{
display:none;
position:absolute;
top:15px;
left:15px;
font-size:28px;
background:white;
border:none;
cursor:pointer;
padding:6px 12px;
border-radius:6px;
box-shadow:0 2px 8px rgba(0,0,0,.2);
z-index:1001;
}

/* HERO */
.hero{
height:420px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:url("../images/transparent_pic.jpg") center/cover;
color:white;
position:relative;
}

.hero::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,.5);
}

.hero-content{
position:relative;
z-index:1;
max-width:600px;
}

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

/* SECTIONS */
.section{
padding:70px 20px;
text-align:center;
}

.gray{
background:#f3f3f3;
}

.section h2{
margin-bottom:40px;
}

/* GRID */
.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

/* CARD */
.card{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 4px 15px rgba(0,0,0,.1);
transition:.3s;
}

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

.card img{
width:100%;
height:150px;
object-fit:contain;
border-radius:8px;
margin-bottom:15px;
background:#f5f5f5;
padding:10px;
}

.card h3{
margin-bottom:10px;
}

.card p{
color:#666;
}

/* FAQ */
.faq{
max-width:600px;
margin:auto;
text-align:left;
}

.faq h4{
margin-top:20px;
color:#1976d2;
}

/* FOOTER */
footer{
text-align:center;
padding:30px;
border-top:1px solid #ddd;
margin-top:60px;
}
.faq{
max-width:650px;
margin:auto;
text-align:center;
}
/* SEARCH */
.search-box input{
padding:8px 12px;
border-radius:20px;
border:1px solid #ccc;
outline:none;
font-size:14px;
transition:.3s;
}

.search-box input:focus{
border-color:#1976d2;
box-shadow:0 0 5px rgba(25,118,210,.3);
}

/* MOBILE */
@media(max-width:768px){

.menu-btn{
display:block;
}

nav{
position:fixed;
top:0;
left:-100%;
width:100%;
height:100vh;
background:white;
transition:left .35s ease;
z-index:999;
}

nav.active{
left:0;
}

nav ul{
flex-direction:column;
align-items:flex-start;
padding:100px 30px;
gap:25px;
}

nav a{
font-size:22px;
}

/* HERO BACKGROUND IMAGE (SECOND PIC) */
.hero{
height:520px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;

background-image:url("../images/transparent_pic.jpg"); /* your background image */
background-size:cover;
background-position:center;
background-repeat:no-repeat;
position:relative;
color:white;
}

/* DARK OVERLAY */
.hero::before{
content:"";
position:absolute;
inset:0;
background:rgba(0,0,0,0.5);
}

/* CONTENT ABOVE BACKGROUND */
.hero-overlay{
position:relative;
z-index:1;
max-width:600px;
padding:20px;
}

/* MAIN IMAGE ON TOP */
.hero-main-img{
width:200px;
margin-bottom:20px;
}

/* TEXT */
.hero h1{
font-size:40px;
margin-bottom:15px;
}

.hero p{
margin-bottom:25px;
font-size
:18px;
}

/* SEARCH FULL WIDTH */
.search-box{
width:100%;
}

.search-box input{
width:100%;
font-size:18px;
}

}
