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

body {
    background: #0b0b0b;
    color: #eaeaea;
}

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

.logo {
    height: 50px;
}

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

nav a:hover {
    color: #fff;
}

/* Hero */
.hero {
    height: 90vh;
    background: url("images/banner.jpg") center/cover no-repeat;
    position: relative;
}

.hero-overlay {
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta {
    background: #f5a623;
    color: #000;
    padding: 14px 28px;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
}

/* Sections */
.section {
    padding: 80px 40px;
    text-align: center;
}

.section h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
}

.section-subtitle {
    color: #aaa;
    margin-bottom: 40px;
}

.dark {
    background: #111;
}

.about-text {
    max-width: 800px;
    margin: auto;
    font-size: 1.1rem;
}

/* Services */
.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: #1a1a1a;
    padding: 30px 20px;
    border-radius: 10px;
    border: 1px solid #333;
    transition: transform 0.3s;
}

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

.card img {
    height: 60px;
    margin-bottom: 20px;
}

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

/* Contact */
.contact-box {
    background: #1a1a1a;
    display: inline-block;
    padding: 30px 40px;
    border-radius: 10px;
}

.contact-box a {
    color: #f5a623;
    text-decoration: none;
}

/* Footer */
footer {
    background: #000;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .header {
        flex-direction: column;
    }

    nav {
        margin-top: 10px;
    }
}
