.header-glass {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    /* Glass effect */
    background: rgba(255, 255, 255, 0.15); /* Light transparency */
    backdrop-filter: blur(25px) saturate(180%);
    -webkit-backdrop-filter: blur(25px) saturate(180%);

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);

    /* Optional padding & transition */
    padding: 0.4rem 1rem;
    transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
/* Wrapper */
.login-wrapper {
    background: linear-gradient(135deg, #f4f9ff, #e8fff3);
}

/* Card container */
.login-card {
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}

/* Right panel (Gradient side) */
.gradient-panel {
    background: linear-gradient(135deg, #00C6FF, #00E676);
    position: relative;
}

/* Glass overlay */
.overlay-glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px) saturate(160%);
    -webkit-backdrop-filter: blur(25px) saturate(160%);
}

/* Button (BillXo gradient style) */
.btn-four {
    border: 1px solid #00B4D8;
    background: linear-gradient(135deg, #00C6FF 0%, #00E676 100%);
    color: #fff;
    font-weight: 500;
    letter-spacing: 1px;
    border-radius: 10px;
    transition: all 0.35s ease;
    box-shadow: 0 4px 12px rgba(0, 180, 216, 0.25);
}
.btn-four:hover {
    background: linear-gradient(135deg, #00E676 0%, #00C6FF 100%);
    border-color: #00E676;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 230, 118, 0.3);
}

/* Inputs */
.form-control {
    border: 1px solid #e0e6ed;
    padding: 10px 14px;
    transition: border 0.25s ease, box-shadow 0.25s ease;
}
.form-control:focus {
    border-color: #00C6FF;
    box-shadow: 0 0 0 3px rgba(0,198,255,0.15);
    outline: none;
}
@keyframes float {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}
img.img-login,.img-register{ animation: float 4s ease-in-out infinite; }
.fl-wrapper {
    z-index: 1000 !important;
}
.paid {
    position: relative;
    background-color: #fff;
    cursor: pointer;
}
.paid::before {
    content: '';
    inset: 0;
    left: -5px;
    margin: auto;
    border-radius: 10px;
    background: linear-gradient(-45deg, #e81cff 0%, #40c9ff 100% );
    z-index: -10;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.paid::after {
    content: "";
    z-index: -1;
    position: absolute;
    inset: 0;
    background: linear-gradient(-45deg, #fc00ff 0%, #00dbde 100% );
    transform: translate3d(0, 0, 0) scale(0.95);
    filter: blur(30px);
}


.paid:hover::after {
    filter: blur(40px);
}

.release-card {
    background: #fff;
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
}
.release-card:hover {
    box-shadow: 0 6px 20px rgba(0, 180, 216, 0.15);
    transform: translateY(-2px);
}
.release-card ul li {
    margin-bottom: 6px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.15);
}

.testimonial-card i.fa-star {
    color: #FFC107;
}

.testimonial-card img {
    object-fit: cover;
}
.cta-box {
    background: linear-gradient(135deg, #00C6FF 0%, #00B4D8 40%, #00E676 100%);
    color: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 180, 216, 0.25);
}
.cta-box {
    background-size: 200% 200%;
    animation: gradientMove 8s ease infinite;
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.btn-cta {
    display: inline-block;
    background: #fff;
    color: #00B4D8;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 10px rgba(0, 180, 216, 0.2);
}

.btn-cta:hover {
    background: #00E676;
    color: #fff;
    transform: translateY(-2px);
}
.checkout-section {
    background: #f9fafb;
}

.pricing-summary {
    background: linear-gradient(135deg, #00C6FF, #00B4D8, #00E676);
    color: #fff;
    position: relative;
}

.pricing-summary .gradient-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.15);
    border-radius: 16px;
    z-index: 0;
}

.pricing-summary * {
    position: relative;
    z-index: 1;
}
.success-section {
    background: #f9fafb;
}

.success-card {
    background: #fff;
    max-width: 786px;
}


@keyframes checkmarkDraw {
    0% {
        opacity: 0;
        transform: rotate(-45deg) scale(0.5);
    }
    50% {
        opacity: 1;
        transform: rotate(-45deg) scale(1.1);
    }
    100% {
        transform: rotate(-45deg) scale(1);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0.5);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(0, 230, 118, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 230, 118, 0);
    }
}

.details-card {
    background: rgba(0, 180, 216, 0.05);
    border: 1px solid rgba(0, 180, 216, 0.15);
}
.failure-section {
    background: #f9fafb;
}

.failure-card {
    background: #fff;
    max-width: 600px;
}

.failure-icon {
    width: 90px;
    height: 90px;
    position: relative;
}

.failure-icon .circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 4px solid #ff3b30;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse-fail 1.8s infinite ease-in-out;
}

.failure-icon .cross {
    position: relative;
    width: 40px;
    height: 40px;
}

.failure-icon .cross::before,
.failure-icon .cross::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 40px;
    background: #ff3b30;
    top: 0;
    left: 18px;
    border-radius: 2px;
}

.failure-icon .cross::before {
    transform: rotate(45deg);
}

.failure-icon .cross::after {
    transform: rotate(-45deg);
}

@keyframes pulse-fail {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
    }
    70% {
        box-shadow: 0 0 0 12px rgba(255, 59, 48, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0);
    }
}

.partner-logo-one .item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px; /* controls vertical alignment */
}

.partner-logo-one .item img {
    max-height: 50px;      /* 👈 key line */
    width: 100%;
    max-width: 100%;
    object-fit: contain;
     filter: grayscale(100%) contrast(1.2);
    opacity: 0.9;
}






