.payoneer-icon {
    width: 26px;
    height: 26px;
    background: #ff6a00; /* Payoneer orange */
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.payoneer-icon {
  width: 22px;
  height: 22px;
  background: #ff4800; /* Payoneer orange */
  border-radius: 50%;
  position: relative;
}

/* White "P" outer stroke */
.payoneer-icon::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 10px;
  height: 14px;
  border: 3px solid #fff;
  border-left: none;
  border-radius: 0 10px 10px 0;
}

/* Inner cut to shape the P */
.payoneer-icon::after {
  content: "";
  position: absolute;
  top: 6px;
  left: 9px;
  width: 6px;
  height: 8px;
  background: #ff4800;
  border-radius: 0 6px 6px 0;
}




/* chatbox */
/* Chat box styling */
#chat-box {
    display: none;
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 350px;
    max-width: 95vw;
    height: 480px;
    max-height: 80vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    font-family: sans-serif;
}

/* Header */
#chat-header {
    background: #2563eb;
    color: white;
    padding: 12px;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
}

/* Chat icon sticky */
#chat-icon {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #06e789;
    color: white;
    font-size: 26px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile view */
@media (max-width: 480px) {
    #chat-box {
        bottom: 0;
        right: 0;
        width: 100vw;
        height: 100vh;
        border-radius: 0;
    }
}


/* Chatboxend */
/* Custom styles and animations */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.text-black {
    color: #000;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease-out forwards;
}

/* Custom gradient animation for hero section */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.gradient-bg {
    background: linear-gradient(-45deg, #0056b3, #1a73e8, #0ea5e9, #2563eb);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Float animation for elements */
@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

.float-animation {
    animation: float 5s ease-in-out infinite;
}

/* Pulse animation for CTAs */
@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.pulse-glow {
    animation: pulse-glow 2s infinite;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #0056b3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #003d82;
}

/* Ad container styling */
.ad-container {
    background: linear-gradient(90deg, #f8fafc 0%, #e2e8f0 100%);
    border-left: 4px solid #ff6b35;
}

/* Service card hover effect */
.service-card {
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile menu animation */
.mobile-menu {
    transition: all 0.5s ease;
}

/* Typewriter effect for hero */
@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: #ff6b35;
    }
}

.typewriter {
    overflow: hidden;
    border-right: .15em solid #ff6b35;
    white-space: nowrap;
    animation:
        typing 3.5s steps(40, end),
        blink-caret .75s step-end infinite;
}

/* Counter animation */
.counter {
    transition: all 2s ease;
}