* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: #0b0b0b;
    color: #fff;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(0,0,0,0.9);
    padding: 15px 8%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
}
.logo span {
    color: #f5a623;
}

.navbar nav a {
    color: #fff;
    text-decoration: none;
    margin-left: 25px;
    transition: 0.3s;
}
.navbar nav a:hover {
    color: #f5a623;
}

/* HERO SLIDER */
.hero {
    height: 100vh;
    overflow: hidden;
}

.slides {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.overlay {
    background: rgba(0,0,0,0.6);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 10%;
    animation: slideUp 1.2s ease;
}

.overlay h1 {
    font-size: 48px;
    color: #f5a623;
}
.overlay p {
    font-size: 20px;
    margin-top: 10px;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* SERVICES */
.services {
    padding: 80px 8%;
    text-align: center;
}

.services h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #f5a623;
}

.service-box {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.card {
    background: #111;
    padding: 30px;
    border-left: 4px solid #f5a623;
    transition: 0.4s;
}

.card:hover {
    transform: translateY(-10px);
    background: #161616;
}

.card h3 {
    margin-bottom: 15px;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, #000, #1a1a1a);
    padding: 70px 8%;
    text-align: center;
}

.cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    background: #f5a623;
    color: #000;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s;
}
.btn:hover {
    background: #ffbd4a;
}

/* FOOTER */
footer {
    padding: 20px;
    text-align: center;
    background: #000;
    font-size: 14px;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .overlay h1 {
        font-size: 34px;
    }
    .navbar nav {
        display: none;
    }
}
