.portfolio-fixed-trigger {
    /* The "Secret Sauce" for consistent placement */
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999; /* Ensures it stays above all other elements */

    /* Aesthetic Design */
    display: flex;
    align-items: center;
    background: #007bff; /* Primary Blue */
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Segoe UI', sans-serif;
    font-weight: 600;
    box-shadow: 0 10px 20px rgba(0, 123, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
}

.btn-icon {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

/* Hover & Interaction */
.portfolio-fixed-trigger:hover {
    transform: translateY(-5px);
    background: #0056b3;
    box-shadow: 0 15px 25px rgba(0, 123, 255, 0.4);
}

.portfolio-fixed-trigger:hover .btn-icon {
    transform: translateX(5px);
}

.portfolio-fixed-trigger:active {
    transform: translateY(-2px);
}

/* Optional Pulse Animation to grab attention */
@keyframes buttonPulse {
    0% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(0, 123, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 123, 255, 0); }
}

.portfolio-fixed-trigger {
    animation: buttonPulse 2s infinite;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .portfolio-fixed-trigger {
        bottom: 20px;
        right: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
}
