/* Floating WhatsApp */
.float-whatsapp {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding: 12px;
    border-radius: 50%;
    z-index: 1000;
}

.float-whatsapp img {
    width: 28px;
    height: 28px;
}

/* Floating Call */
.float-call {
    position: fixed;
    bottom: 80px;
    right: 20px;
    background: #e11d48;
    padding: 12px;
    border-radius: 50%;
    z-index: 1000;
}

.float-call img {
    width: 28px;
    height: 28px;
}body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background: #f8fafc;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.logo img { height: 60px; }

.nav a {
    margin-left: 20px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.hero {
    background: #e11d48;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.section {
    padding: 50px 20px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    background: #22c55e;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 20px;
}