/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Navbar */
header {
    background: #222;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 999;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    font-size: 1.5rem;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 1rem;
}
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Home */
.home {
    background: #f4f4f4;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
    text-align: center;
}
.home h1 span {
    color: #007bff;
}
.btn {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    margin-top: 15px;
    text-decoration: none;
    border-radius: 5px;
}

/* About */
.about {
    display: flex;
    flex-wrap: wrap;
    padding: 60px 20px;
    justify-content: center;
    align-items: center;
}
.about-img img {
    width: 250px;
    border-radius: 10px;
    margin-right: 30px;
}
.about-text {
    max-width: 500px;
}

/* How I Work */
.how {
    background: #f9f9f9;
    text-align: center;
    padding: 60px 20px;
}
.work-steps {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}
.step {
    flex: 1 1 200px;
    margin: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.step i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 10px;
}

/* Floating Icons */
.floating-icons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
}
.floating-icons a {
    background: #007bff;
    color: #fff;
    font-size: 1.5rem;
    margin: 5px 0;
    padding: 10px;
    border-radius: 50%;
    text-align: center;
    text-decoration: none;
}
.floating-icons a.whatsapp {
    background: #25D366;
}

/* Contact */
.contact {
    padding: 60px 20px;
    text-align: center;
}

/* Responsive */
@media(max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 60px;
        left: 0;
        background: #222;
        width: 100%;
        flex-direction: column;
        display: none;
    }
    .nav-links.show {
        display: flex;
    }
    .nav-links li {
        margin: 15px 0;
        text-align: center;
    }
    .menu-toggle {
        display: block;
    }
    .about {
        flex-direction: column;
    }
    .about-img {
        margin-bottom: 20px;
    }
}
