body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    background-color: #fff;
    color: #333;
    text-align: center;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FFD700, #FF8C00, #FF4500);
    color: white;
    padding: 50px 20px;
    animation: fadeIn 1s ease-in-out;
}
.hero .logo {
    width: 120px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.hero h1 {
    font-size: 2.5rem;
}
.hero p {
    font-size: 1.2rem;
}

/* Services Section */
.services {
    padding: 50px 20px;
}
.services h2 {
    font-size: 2rem;
    margin-bottom: 30px;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}
.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.service-card img {
    width: 80px;
    margin-bottom: 10px;
}

/* Contact Form */
.contact {
    padding: 50px 20px;
    background-color: #f8f8f8;
}
.contact form {
    max-width: 400px;
    margin: auto;
}
.contact input, 
.contact button {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}
.contact button {
    background: linear-gradient(135deg, #FFD700, #FF8C00, #FF4500);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
}
.contact button:hover {
    opacity: 0.9;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: transform 0.3s;
}
.whatsapp-btn:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background: #222;
    color: white;
    padding: 15px;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
