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

body{
background:#111;
color:#fff;
}

header{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#000;
position:sticky;
top:0;
z-index:100;
}

header h1{
font-size:24px;
}

nav a{
color:#fff;
text-decoration:none;
margin-left:20px;
font-weight:bold;
}

nav a:hover{
color:#f5a623;
}

.carousel{
max-width:1100px;
margin:30px auto;
overflow:hidden;
position:relative;
border-radius:20px;
box-shadow:0 10px 30px rgba(0,0,0,0.5);
}

.slides{
display:flex;
transition:transform 0.6s ease-in-out;
}

.slide{
min-width:100%;
position:relative;
}

.slide img{
width:100%;
height:650px;
object-fit:cover;
filter:brightness(0.75);
}

.slide-content{
position:absolute;
bottom:50px;
left:50px;
background:rgba(0,0,0,0.5);
padding:25px;
border-radius:15px;
max-width:500px;
}

.slide-content h2{
font-size:36px;
margin-bottom:15px;
}

.slide-content p{
margin-bottom:20px;
line-height:1.6;
}

.slide-content a{
display:inline-block;
padding:12px 24px;
background:#f5a623;
color:#000;
text-decoration:none;
border-radius:8px;
font-weight:bold;
}

.slide-content a:hover{
background:#ffbf47;
}

.dots{
text-align:center;
margin-top:15px;
}

.dot{
display:inline-block;
width:12px;
height:12px;
background:#666;
border-radius:50%;
margin:0 5px;
cursor:pointer;
}

.dot.active{
background:#f5a623;
}

.arrow{
position:absolute;
top:50%;
transform:translateY(-50%);
font-size:35px;
padding:10px;
cursor:pointer;
background:rgba(0,0,0,0.5);
border-radius:50%;
user-select:none;
}

.left{
left:20px;
}

.right{
right:20px;
}

.services-section{
padding:80px 20px;
text-align:center;
}

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

.services-cards{
display:flex;
gap:25px;
justify-content:center;
flex-wrap:wrap;
}

.service-card{
background:#1c1c1c;
padding:30px;
border-radius:15px;
width:300px;
box-shadow:0 5px 20px rgba(0,0,0,0.3);
transition:transform 0.3s;
}

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

.service-card h3{
margin-bottom:15px;
font-size:24px;
}

footer{
text-align:center;
padding:40px 20px;
background:#000;
margin-top:60px;
}

footer a{
color:#f5a623;
text-decoration:none;
}

@media(max-width:768px){
header{
flex-direction:column;
}

nav{
margin-top:15px;
}

.slide img{
height:450px;
}

.slide-content{
left:20px;
right:20px;
bottom:20px;
max-width:none;
}

.slide-content h2{
font-size:28px;
}
}
