* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f6fb;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to right, #1f4cff, #0056d6);
    padding: 15px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
}

.logo-text {
    color: white;
    font-size: 22px;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
    background: white;
}

.hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    margin-bottom: 20px;
    font-size: 18px;
}

button {
    background-color: #25D366;
    color: white;
    border: none;
    padding: 12px 25px;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
}

/* SECTIONS */
section {
    padding: 60px 20px;
    text-align: center;
}

.service-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.card {
    background: white;
    padding: 30px;
    width: 260px;
    border-radius: 10px;
    box-shadow: 0px 5px 15px rgba(0,0,0,0.1);
    text-decoration: none;
    color: black;
    font-size: 18px;
    font-weight: bold;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

/* FOOTER */
footer {
    background: #1f4cff;
    color: white;
    text-align: center;
    padding: 20px;
}

/* WHATSAPP FLOAT */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    text-align: center;
    line-height: 55px;
    text-decoration: none;
}
.service-page {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
    max-width: 1100px;
    margin: auto;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-content ul {
    list-style: none;
    padding: 0;
}

.service-content ul li {
    margin-bottom: 10px;
    font-size: 18px;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    border-radius: 10px;
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {

    header img {
        width: 60px;
    }

    nav {
        display: block;
        margin-top: 15px;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    .service-box {
        width: 80%;
        display: block;
        margin: 15px auto;
    }

    form input,
    form textarea {
        width: 80%;
    }

}
/* MOBILE FIX */
@media (max-width: 768px) {

    body {
        text-align: center;
    }

    .service-container {
        display: block;
        padding: 20px;
    }

    .service-container img {
        width: 90%;
        height: auto;
        margin: 20px auto;
        display: block;
    }

    .service-container ul {
        padding: 0;
        list-style: none;
    }

    form {
        margin-top: 20px;
    }

    form input,
    form textarea {
        width: 90%;
        margin: 10px auto;
        display: block;
        padding: 10px;
    }

    .btn {
        width: 60%;
        margin: 10px auto;
    }

}
