body {
    font-family: 'Poppins', sans-serif;
    color: #333;
}

/* Hero section with wood texture or carpenter image */
.hero-section {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1533090161767-e6ffed986c88?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    height: 80vh;
}

.feature-card {
    transition: all 0.3s ease;
    border: none !important;
    background: #f8f9fa;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
}

.feature-card.bg-primary:hover {
    background-color: #0d6efd !important;
}

.icon {
    font-size: 50px;
}

.app-img {
    border: 8px solid #333;
    border-radius: 30px;
    transition: transform 0.3s;
}

.app-img:hover {
    transform: scale(1.05);
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 10000;
}

.whatsapp-float:hover {
    color: white;
    background-color: #1ebe57;
}

.whatsapp-float img {
    width: 25px;
    margin-right: 10px;
}

@media (max-width: 768px) {
    .whatsapp-float span { display: none; }
    .whatsapp-float { padding: 15px; border-radius: 50%; }
    .whatsapp-float img { margin-right: 0; }
}