.btnG {
    background-color: #ffcc04 !important;
    border-color: #ffcc04 !important;
    width: 100%;
    color: rgb(0, 0, 0);
    font-size: 150% !important;
    padding: 7%;
    border-radius: 15px;
    font-family: Arial;
}

.btnG:hover {
    background-color: #ffdf5e !important;
    border-color: #ffdf5e !important;
    color: rgb(255, 255, 255) !important;
}


/* Regular styling */

#dynamicText {
    text-align: center;
    color: #259c7c;
}

.btnHelp {
    background-color: #ffcc04;
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 50px;
    padding: 20px;
    font-size: 20px;
    width: 100%;
}

.btnHelp:hover {
    color: white !important;
}

.link-116 {
    color: #737373;
    font-size: 20px;
    text-decoration: none;
    padding: 10px 20px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
}

.link-116::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    background-color: #737373;
    width: 0;
    transition: width 0.3s ease;
}

.link-116:hover::after {
    width: 100%;
    animation: heartbeat116 1.5s infinite;
}

@keyframes heartbeat116 {
    0%,
    100% {
        width: 100%;
    }
    50% {
        width: 60%;
    }
}

.btnNav:hover {
    background-color: #205c7886;
}


/* ----------------------- */

.donate-btn {
    position: relative;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    background-color: #9AC13B;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    z-index: 1;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    padding: 16px 36px;
    font-size: 20px;
    border-radius: 10px;
}


/* Dove background easing in */

.donate-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 70%;
    /* Move dove slightly to right */
    width: 200%;
    height: 200%;
    background: url("/images/donateHands.png") no-repeat center;
    background-size: contain;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.95);
    /* Start slightly smaller */
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 0;
    pointer-events: none;
}

.donate-btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    /* Light overlay */
    z-index: 1;
    pointer-events: none;
}

.donate-btn:hover::before {
    transform: translate(-50%, -50%) scale(1.05);
    /* Scale up on hover */
    opacity: 0.6;
    /* Slight fade in for more presence */
}

.donate-btn:hover {
    background-color: #ffcc04;
    transform: scale(1.05);
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.donate-btn:active {
    transform: scale(0.98);
}


/* Ripple Effect */

.donate-btn .ripple {
    position: absolute;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    z-index: 2;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}




/* --------------------------------- */


.btn-2 {
    position: relative;
    display: inline-block;
    padding: 15px 40px;
    font-size: 20px;
    font-weight: bold;
    color: white;
    background-color: #9AC13B;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    width: 100%;
  }

  .btn-2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 33.4%;
    background-color: #8eae3d;
    clip-path: polygon(0 0, 85% 0, 100% 100%, 0% 100%);
    z-index: 0;
    transition: all 0.4s ease;
  }

  .btn-2:hover::before {
    width: 100%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }

  .btn-2 span {
    position: relative;
    z-index: 1;
  }