/* ================================
   Fiverr Box Inside Hero Section
   ================================ */

.hero {
    position: relative;
}

/* Right-Side Floating Box */
.hero-right-box {
    position: absolute;
    right: 40px;
    top: 70%;               /* safe lower position */
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    padding: 18px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 20;
}


.hero-right-box:hover {
    background: rgba(0,0,0,0.75);
    transform: translateY(-50%) scale(1.05);
}

/* Fiverr Icon */
.hero-fiverr-icon {
    width: 48px;
    height: 48px;
    object-fit: contain;
    filter: brightness(1.2); /* ensures visibility */
}
/* Fiverr Text */
.hero-fiverr-text {
    color: #1DBF73;    /* Fiverr green */
    font-size: 18px;
    font-weight: 600;
}




/* ================================
   Fiverr Popup
   ================================ */

/* Overlay */
.popup-overlay {
    display: none;
    position: fixed;
    z-index: 99998;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
}

/* Popup Window */
.hero-right-box {
    position: absolute;
    right: 40px;
    top: 70%;               /* exact control now */
    transform: none;        /* removed Y-shift */
    background: rgba(0,0,0,0.55);
    padding: 18px 25px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: 0.3s ease;
    z-index: 20;
}


/* Slide-in effect */
.popup-content.active {
    right: 50px;
}

/* Close Button */
.close-button {
    float: right;
    font-size: 26px;
    cursor: pointer;
    color: #444;
}

.close-button:hover {
    color: #000;
}

/* Fiverr Button Inside Popup */
.fiverr-link {
    display: inline-block;
    background: #1dbf73;
    color: #fff;
    padding: 12px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-top: 10px;
    font-size: 18px;
}
