/* GENERAL */


body{
font-family: Arial, Helvetica, sans-serif;
margin:0;
padding:0 0px;
background:#f4f4f4;
color:#333;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

/* HEADER */

header{
background:#0A1A3F;
color:white;
padding:25px;
text-align:center;
}

/* NAVIGATION */
/* BURGER MENU */

.menu-icon{
display:none;
font-size:28px;
color:white;
cursor:pointer;
}

/* MENU LINKS */

#menu-links{
display:flex;
gap:30px;
}

/* MOBILE VIEW */

@media(max-width:768px){

.menu-icon{
display:block;
}

#menu-links{
display:none;
flex-direction:column;
width:100%;
text-align:center;
margin-top:10px;
}

#menu-links a{
display:block;
padding:10px;
}

}

nav{
background:#162A5C;
padding:15px 30px;
display:flex;
justify-content:center;
align-items:center;
gap:30px;
position:sticky;
top:0;
z-index:1000;
}
nav a{
color:white;
text-decoration:none;
font-weight:bold;
font-size:16px;
transition:0.3s;
}

nav a:hover{
color:#ffcc00;
}

/* ACTIVE NAV TAB */

nav a.active{
color:#ff0000;
border-bottom:2px solid #ff0000;
}


/* HERO SECTION */

.hero{
background:#2B2B2B;
color:white;
text-align:center;
padding:80px 20px;
}

.hero h2{
font-size:32px;
margin-bottom:10px;
}

.hero p{
font-size:18px;
}

/* BUTTON */

.btn{
display:inline-block;
margin-top:20px;
padding:12px 25px;
background:#ffcc00;
color:black;
text-decoration:none;
font-weight:bold;
border-radius:5px;
}

.btn:hover

/* SECTIONS */

section{
padding:50px 40px;
max-width:1100px;
margin:50px auto;
background:white;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

/* GRID LAYOUT */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
margin-top:30px;
}

/* CARDS */

.card{
background:white;
padding:25px;
border-radius:8px;
box-shadow:0 3px 10px rgba(0,0,0,0.1);
text-align:center;
}

.card h3{
margin-bottom:10px;
}

/* GALLERY */

.gallery-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.gallery-grid img{
width:100%;
border-radius:8px;
box-shadow:0 2px 8px rgba(0,0,0,0.2);
transition:0.3s;
}

.gallery-grid img:hover{
transform:scale(1.05);
}

/* QUOTE PAGE */

.quote-box{
background:white;
padding:30px;
border-radius:8px;
max-width:400px;
margin:auto;
box-shadow:0 2px 10px rgba(0,0,0,0.1);
}

.quote-box input,
.quote-box select{
width:100%;
padding:10px;
margin:10px 0;
}

/* CONTACT FORM */

form{
max-width:500px;
margin:auto;
}

form input,
form textarea{
width:100%;
padding:10px;
margin:10px 0;
}

form button{
background:#000;
color:white;
padding:12px 20px;
border:none;
cursor:pointer;
}

form button:hover

/* FOOTER */

footer{
background:#000;
color:white;
text-align:center;
padding:20px;
margin-top:40px;
}

/* MOBILE RESPONSIVE */

@media(max-width:768px){

.hero h2{
font-size:24px;
}

nav{
flex-direction:column;
gap:10px;
}

nav a{
display:block;
margin:5px 0;
}

}
