/* Additional custom styles */
.hero-logo {
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1); 
    }
    50% { 
        transform: scale(1.1); 
    }
}

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px #999;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    color: white;
}

/* Smooth transitions for all interactive elements */
.transition {
    transition: all 0.3s ease;
}

/* Custom hover effects */
.hover-lift:hover {
    transform: translateY(-5px);
}

/* Responsive improvements */
@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2.5rem;
    }
    
    .hero-section p {
        font-size: 1.1rem;
    }
}