*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

html{
scroll-behavior:smooth;
}

body{
background:#fff;
color:#333;
font-weight: bold;

}


header{
    position: fixed;
    top:0;
    left:0;
    width:100%;
    z-index: 9999;
}

header.scrolled{
    padding:0;
    background:#ffffff;
    box-shadow:0 6px 20px rgba(0,0,0,.15);
}

header.scrolled .navbar{
    padding:15px 8%;
}


.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 8%;
}

.logo{
font-size:1.8rem;
font-weight:bold;
color:#ff6a00;
}

.nav-menu{
display:flex;
list-style:none;
gap:30px;
}

/* Default state (top of page over hero) */
.nav-menu a{
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

/* Hover effect (top) */
.nav-menu a:hover{
    color: #ff6a00;
}

header.scrolled .nav-menu a{
    color: #000;
}

/* Hover when scrolled */
header.scrolled .nav-menu a:hover{
    color: #ff6a00;
}



.hero{
  
    position: relative;
    height: 100vh;   /* full screen height */
    width: 100%;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;

    padding: 40px;
}

.hero-content{
    position: relative;
    z-index: 3;
}
.hero-overlay{
    z-index: 1;
}
.slides{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:0;
}
.slide{
    position: absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background-size: cover;
    background-position: center;

    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.slide.active{
    opacity: 1;
}
.slides{
    z-index: 0;
}
.hero-overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    z-index:1;

    /* darker professional overlay */
background: rgba(0,0,0,0.75);}

.hero-content{
    position: relative;
    z-index: 2;
    color: white;
}
.hero-content{
color:white;
max-width:800px;
}

.hero h1{
font-size:3rem;
margin-bottom:20px;
}

.hero p{
font-size:1.2rem;
margin-bottom:30px;
}

.btn{
background:#ff6a00;
color:white;
padding:15px 30px;
text-decoration:none;
border-radius:5px;
font-weight:bold;
display: inline-block;
margin-top: 30px;
}

.btn:hover{
background:#e65c00;
}

.services{
padding:80px 8%;
}

.services h2{
text-align:center;
margin-bottom:50px;
font-size:2.5rem;
color:#ff6a00;
}

.service-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
gap:25px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
text-align:center;
box-shadow:0 5px 15px rgba(0,0,0,.1);
transition:.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-card i{
font-size:3rem;
color:#ff6a00;
margin-bottom:15px;
}

.about{
padding:80px 8%;
background:#f0e7dc;
text-align:center;
}

.about h2{
color:#ff6a00;
margin-bottom:20px;
}

.about p{
max-width:900px;
margin:auto;
line-height:1.8;
}

.map-section{
padding:80px 8%;
text-align:center;
}

.map-section h2{
margin-bottom:30px;
color:#ff6a00;
}

.map-container iframe{
width:100%;
height:450px;
border:none;
border-radius:10px;
}

.map-text{
margin-top:20px;
font-weight:bold;
}

.contact{
padding:80px 8%;
background:#f0e7dc;
}

.contact h2{
text-align:center;
margin-bottom:30px;
color:#ff6a00;
}

.contact form{
max-width:700px;
margin:auto;
display:flex;
flex-direction:column;
gap:15px;
}

.contact input,
.contact textarea{
padding:15px;
border:1px solid #ccc;
border-radius:5px;
}

.contact button{
background:#ff6a00;
color:white;
border:none;
padding:15px;
cursor:pointer;
font-size:1rem;
border-radius:5px;
}

.contact button:hover{
background:#e65c00;
}

#successMessage{
text-align:center;
margin-top:20px;
font-weight:bold;
color:green;
}

footer{
background:#222;
color:white;
text-align:center;
padding:20px;
}

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
width:25px;
height:3px;
background:#ff6a00;
margin:3px;
}

@media(max-width:768px){

.nav-menu{
position:absolute;
top:80px;
left:-100%;
width:100%;
background:white;
flex-direction:column;
text-align:center;
padding:20px 0;
transition:.3s;
}

.nav-menu.active{
left:0;
}

.hamburger{
display:flex;
}

.hero h1{
font-size:2rem;
}

}