﻿.home-banner2 {
    text-align: center;
    margin: 30px auto;
}

.fiverr-ad {
    display: inline-block;
    padding: 25px 40px;
    background: linear-gradient(135deg, #1dbf73, #13a05f);
    color: #fff;
    border-radius: 18px;
    text-decoration: none;
    font-family: Arial, sans-serif;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

    .fiverr-ad:hover {
        transform: scale(1.05);
    }

.fiverr-logo {
    font-size: 40px;
    font-weight: bold;
    display: block;
    animation: slideIn 1s ease;
}

.fiverr-text {
    font-size: 18px;
    margin-top: 8px;
    display: block;
    animation: fadeIn 1.5s ease;
}

.fiverr-btn {
    display: inline-block;
    margin-top: 15px;
    background: #fff;
    color: #1dbf73;
    font-weight: bold;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 16px;
    transition: background 0.3s, color 0.3s;
    animation: bounceIn 2s ease;
}

    .fiverr-btn:hover {
        background: #13a05f;
        color: #fff;
    }

/* Animations */
@keyframes slideIn {
    from {
        transform: translateX(-50px);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }

    60% {
        transform: scale(1.1);
        opacity: 1;
    }

    100% {
        transform: scale(1);
    }
}
