/* Custom Styles that go beyond Tailwind */

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Base text styling */
p {
    line-height: 1.6;
}

/* Custom button hover effects */
.btn-green-hover {
    transition: all 0.3s ease;
}
.btn-green-hover:hover {
    background-color: #2b8c34;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(55, 170, 65, 0.3);
}

.btn-blue-hover {
    transition: all 0.3s ease;
}
.btn-blue-hover:hover {
    background-color: #011d4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 6px rgba(1, 41, 101, 0.3);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background-color: #20b858;
}

/* Mobile specific fixes */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 25px;
    }
}
