.btn {
    border-radius: 20px;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 180px;
}

.btn-success {
    background-color: #25D366;
    border-color: #25D366;
    border: 1px solid var(--light);
}

.btn-success:hover {
    background-color: #1EBE5B;
    border-color: #1EBE5B;
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--light);
    border-color: var(--light);
    border: 1px solid;
    background-color: transparent;

}

.btn-outline-primary:hover {
    background-color: var(--myPrimary);
    color: #fff;
    box-shadow: 0 0 12px rgba(0, 123, 255, 0.4);
    transform: translateY(-2px);
}

.btn-lg {
    font-size: 1.4rem;
    font-weight: 700;
    padding: 16px 40px;
    letter-spacing: 0.5px;
}

/* Pulsing animation for buttons */
.contact-btn {
    animation: pulse 2s infinite;
}

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