/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    color: #0f172a;

    /* GRID BACKGROUND */
    background-image:
        linear-gradient(#e5e7eb 1px, transparent 1px),
        linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
    background-size: 40px 40px;
}

/* NAVBAR */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
}

.nav-center a {
    margin: 0 15px;
    text-decoration: none;
    color: #0f172a;
}

.nav-center .active {
    color: #ff6b00;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}
.nav-left img {
    width: 150px;
    height: 120px;
}

/* BUTTON */
.btn-primary {
    background: #ff6b00;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
}
.login-link {
    background: #ff6b00;
    color: white;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
}

.btn-outline {
    border: 1px solid #000;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    color: #000;
}

/* HERO */
.hero {
    text-align: center;
    padding: 80px 20px;
}

.badge {
    border: 1px solid #ccc;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.hero h1 {
    font-size: 40px;
    margin: 20px 0;
}

.highlight {
    color: #ff6b00;
    border-bottom: 4px solid #ff6b00;
}

.hero-buttons {
    margin-top: 20px;
}

/* CLIENT */
.clients {
    text-align: center;
    padding: 40px 0;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.client-logos img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    padding-top: 10px;
}

/* SERVICES */
.services {
    padding: 60px 20px;
    text-align: center;
}

.service-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.service-card {
    background: white;
    padding: 25px;
    border-radius: 10px;
    flex: 1;
}
.service-card img {
    width: 100px;
    height: 100px;
}

.service-icon {
    width: 40px;
    margin-bottom: 10px;
}

/* FLOAT CHAT */
.floating-chat {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: green;
    color: white;
    padding: 15px;
    border-radius: 50%;
    text-decoration: none;
}

/* FOOTER */
.footer {
    background: #0f172a;
    color: white;
    display: flex;
    justify-content: space-between;
    padding: 40px;
}

.footer a {
    color: #ccc;
    margin-left: 15px;
    text-decoration: none;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-center {
        display: none;
    }

    .service-grid {
        flex-direction: column;
    }

    .footer {
        flex-direction: column;
        gap: 20px;
    }
}
