* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    text-align: center;
}

/* HERO SECTION */
.hero {
    background: url('backgoundimage.png') no-repeat center center/cover;
    height: 100vh;
    position: relative;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.65);
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: fadeIn 2s ease-in-out;
}

.overlay h1 {
    font-size: 50px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.overlay h3 {
    font-size: 26px;
    color: #ffcc00;
    margin-bottom: 15px;
}

.overlay p {
    font-size: 18px;
    margin-bottom: 20px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    margin: 10px;
    padding: 14px 30px;
    background: #ffcc00;
    color: black;
    text-decoration: none;
    font-weight: bold;
    border-radius: 6px;
    transition: 0.3s ease;
}

.btn:hover {
    background: white;
    transform: scale(1.05);
}

.whatsapp {
    background: #25D366;
    color: white;
}

.whatsapp:hover {
    background: #1ebe5d;
}

/* SERVICES */
.services {
    padding: 70px 20px;
    background: #f4f4f4;
}

.services h2 {
    margin-bottom: 40px;
    font-size: 32px;
}

.service-box {
    display: inline-block;
    width: 280px;
    background: white;
    margin: 15px;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.service-box:hover {
    transform: translateY(-10px);
}

/* ABOUT */
.about {
    padding: 70px 20px;
    font-size: 18px;
}

/* CONTACT */
.contact {
    padding: 60px 20px;
    background: #003366;
    color: white;
    font-size: 18px;
}

.contact h2 {
    margin-bottom: 20px;
}

/* FOOTER */
footer {
    padding: 15px;
    background: black;
    color: white;
}

.map {
    margin-top: 30px;
}

.map h3 {
    margin-bottom: 15px;
}

/* ANIMATION */
@keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
}

/* MOBILE RESPONSIVE */
@media(max-width: 768px) {
    .overlay h1 {
        font-size: 32px;
    }

    .overlay h3 {
        font-size: 20px;
    }

    .service-box {
        width: 90%;
    }
}
