.elementor-kit-11{--e-global-color-primary:#6EC1E4;--e-global-color-secondary:#54595F;--e-global-color-text:#7A7A7A;--e-global-color-accent:#61CE70;--e-global-color-ece446c:#F6FAFD;--e-global-color-6e2a452:#D6EFFA;--e-global-color-5cbccc6:#006CF0;--e-global-color-90e252a:#212020;--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-weight:500;}.elementor-kit-11 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;--container-default-padding-top:0px;--container-default-padding-right:0px;--container-default-padding-bottom:0px;--container-default-padding-left:0px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:768px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}
/* Start custom CSS */#backToTopBtn {
    position: fixed;
    bottom: 60px;
    left: 30px;
    right: auto;
    z-index: 9999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

#backToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTopBtn.hide {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}




.freebtn {
    position: relative;
    overflow: visible;
}

/* ── PC/Desktop Version (Right Side Fold) ── */
@media (min-width: 1025px) {
    .freebtn::before {
        content: "FREE";
        position: absolute;
        top: -15px;
        right: -8px;
        padding: 6px 14px 7px;
        background: linear-gradient(135deg, #34d399, #10b981);
        color: #fff;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.2px;
        line-height: 1;
        text-transform: uppercase;
        z-index: 12;
        white-space: nowrap;
        border-radius: 4px 4px 0 0;
        box-shadow:
            0 4px 14px rgba(16, 185, 129, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        animation: ribbonFloat 2.8s ease-in-out infinite;
        transition: filter 0.3s ease, box-shadow 0.3s ease;
    }

    /* Right-side fold triangle */
    .freebtn::after {
        content: "";
        position: absolute;
        top: 8px;
        right: -8px;
        width: 0;
        height: 0;
        border-left: 8px solid #0a7c5f;
        border-top: 8px solid transparent;
        z-index: 11;
        filter: drop-shadow(2px 3px 3px rgba(0, 0, 0, 0.18));
        animation: ribbonFloat 2.8s ease-in-out infinite;
    }

    .freebtn:hover::before {
        filter: brightness(1.12);
        box-shadow:
            0 6px 22px rgba(16, 185, 129, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

/* ── Mobile Version (Left Side Fold) ── */
@media (max-width: 1024px) {
    .freebtn::before {
        content: "FREE";
        position: absolute;
        top: -15px;
        left: -8px;
        padding: 6px 14px 7px;
        background: linear-gradient(135deg, #34d399, #10b981);
        color: #fff;
        font-size: 10px;
        font-weight: 900;
        letter-spacing: 1.2px;
        line-height: 1;
        text-transform: uppercase;
        z-index: 12;
        white-space: nowrap;
        /* Sharp bottom-left corner for the fold point */
        border-radius: 4px 4px 4px 0;
        box-shadow:
            0 4px 14px rgba(16, 185, 129, 0.4),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
        animation: ribbonFloat 2.8s ease-in-out infinite;
        transition: filter 0.3s ease, box-shadow 0.3s ease;
    }

    /* Left-side fold triangle */
    .freebtn::after {
        content: "";
        position: absolute;
        top: 8px;
        left: -8px;
        width: 0;
        height: 0;
        border-right: 8px solid #0a7c5f;
        border-top: 8px solid transparent;
        z-index: 11;
        /* Reversed shadow direction to match left fold */
        filter: drop-shadow(-2px 3px 3px rgba(0, 0, 0, 0.18));
        animation: ribbonFloat 2.8s ease-in-out infinite;
    }

    .freebtn:hover::before {
        filter: brightness(1.12);
        box-shadow:
            0 6px 22px rgba(16, 185, 129, 0.5),
            inset 0 1px 0 rgba(255, 255, 255, 0.35);
    }
}

/* Shared gentle floating bounce */
@keyframes ribbonFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-4px);
    }
}/* End custom CSS */