* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Header */
.top-bar {
    background: #f8f8f8;
    text-align: center;
    padding: 10px;
}

.top-bar a {
    color: #007bff;
    text-decoration: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 26px;
    color: #007bff;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a.active {
    color: #007bff;
}

.menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    background: url('https://via.placeholder.com/1920x600?text=Hero+Image+Furniture') no-repeat center/cover;
    color: #fff;
    text-align: center;
    padding: 120px 20px;
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-button {
    background: #007bff;
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
    margin: 10px;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.whatsapp-btn {
    background: #25D366;
}

/* Welcome Section */
.welcome {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
}

.welcome h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

/* Services Section */
.services {
    padding: 50px 20px;
    text-align: center;
}

.services h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.services-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.service-card {
    width: 300px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.service-card h3 {
    margin: 15px 0;
    font-size: 20px;
}

/* Used Home Appliances Buyers Section */
.appliances-buyers {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.appliances-buyers h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.appliances-buyers p {
    margin-bottom: 40px;
}

.appliances-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.appliance-item {
    width: 300px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 5px;
}

.appliance-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.appliance-item h3 {
    font-size: 20px;
    margin: 15px 0;
}

/* Areas of Service Section */
.areas-service {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}

.areas-service h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.areas-service p {
    margin-bottom: 30px;
}

.areas-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.area-item {
    background: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
}

/* Why Choose Us Section */
.why-choose-us {
    padding: 50px 20px;
    background: #fff;
    text-align: center;
}

.why-choose-us h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.why-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.why-item {
    width: 300px;
    padding: 20px;
}

.why-item i {
    font-size: 40px;
    color: #007bff;
    margin-bottom: 15px;
}

.why-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 50px 20px;
    background: #f4f4f4;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 40px;
}

.testimonial-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.testimonial-card {
    width: 300px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

.testimonial-card h4 {
    margin-top: 15px;
    color: #007bff;
}

/* Contact Us Section */
.contact-us {
    padding: 50px 20px;
    text-align: center;
    background: #f4f4f4;
}

.contact-us h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-us p {
    font-size: 18px;
    margin-bottom: 40px;
}

.contact-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-details {
    width: 100%;
    max-width: 400px;
    text-align: left;
}

.contact-details h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-details p {
    font-size: 16px;
    margin: 15px 0;
}

.contact-details a {
    color: #007bff;
    text-decoration: none;
}

.contact-form {
    width: 100%;
    max-width: 500px;
    text-align: left;
}

.contact-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
}

/* Footer */
footer {
    background: #333;
    color: #fff;
    padding: 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul a {
    color: #fff;
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

.social-icons a {
    color: #fff;
    margin: 0 10px;
    font-size: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 20px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content h2 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .contact-container {
        flex-direction: column;
        align-items: center;
    }

    .contact-details,
    .contact-form {
        text-align: center;
    }

    .contact-form button {
        align-self: center;
    }
}