/* Import Orbitron font */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400..900&display=swap');

:root {
    --neon-blue: #00ffff;
    --neon-pink: #ff1493;
    --neon-green: #39ff14;
    --dark-bg: #0a0a0a;
    --light-color: #f8f9fa;
    --tech-accent: var(--neon-blue);
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --dark-color: #343a40;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}
.card-body {
    padding-bottom: 0.2rem!important;
}
.bg-grid {
    position: relative;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 1;
    background-color: var(--dark-bg);
    color: var(--light-color);
    transition: all 0.3s ease;
}

.bg-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 1) 100%);
    pointer-events: none;
    z-index: -1;
}

.bg-grid::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(0deg, rgba(0, 0, 0, 0) 0px, rgba(0, 0, 0, 0.15) 1px, rgba(0, 0, 0, 0) 2px);
    animation: scanline 10s linear infinite;
    pointer-events: none;
    z-index: 2;
}

@keyframes scanline {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

.glitch {
    position: relative;
    color: var(--light-color);
    text-shadow: 0 0 3px var(--neon-blue), 0 0 5px var(--neon-blue);
}

.glitch:before,
.glitch:after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    overflow: hidden;
}

.glitch:before {
    left: 2px;
    text-shadow: -2px 0 var(--neon-pink);
    animation: glitch-anim-1 2s infinite linear alternate-reverse;
}

.glitch:after {
    left: -2px;
    text-shadow: -2px 0 var(--neon-green), 2px 2px;
    animation: glitch-anim-2 2s infinite linear alternate-reverse;
}

@keyframes glitch-anim-1 {
    0% { clip-path: inset(5% 0 90% 0); }
    10% { clip-path: inset(78% 0 15% 0); }
    20% { clip-path: inset(20% 0 40% 0); }
    30% { clip-path: inset(45% 0 5% 0); }
    40% { clip-path: inset(10% 0 85% 0); }
    50% { clip-path: inset(95% 0 2% 0); }
    60% { clip-path: inset(30% 0 60% 0); }
    70% { clip-path: inset(88% 0 8% 0); }
    80% { clip-path: inset(50% 0 30% 0); }
    90% { clip-path: inset(70% 0 20% 0); }
    100% { clip-path: inset(92% 0 3% 0); }
}

@keyframes glitch-anim-2 {
    0% { clip-path: inset(80% 0 5% 0); }
    10% { clip-path: inset(10% 0 88% 0); }
    20% { clip-path: inset(60% 0 30% 0); }
    30% { clip-path: inset(25% 0 70% 0); }
    40% { clip-path: inset(90% 0 8% 0); }
    50% { clip-path: inset(2% 0 95% 0); }
    60% { clip-path: inset(75% 0 10% 0); }
    70% { clip-path: inset(12% 0 80% 0); }
    80% { clip-path: inset(40% 0 45% 0); }
    90% { clip-path: inset(65% 0 22% 0); }
    100% { clip-path: inset(85% 0 7% 0); }
}

.feature-card {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--tech-accent);
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: var(--light-color);
}

.feature-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.feature-card h3 {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    animation: pulse-glow 2s infinite alternate;
}

.feature-card .fw-bold {
    color: var(--light-color);
    text-shadow: 0 0 2px var(--light-color);
}

@keyframes pulse-glow {
    from {
        text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    }
    to {
        text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
    }
}

.feature-card img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.lead {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typer {
    transition: all 0.3s ease;
}

.cursor {
    opacity: 1;
    animation: blink 0.7s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* from clients.css */
.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, var(--tech-accent), transparent);
    border-radius: 50%;
    animation: float 15s infinite linear;
    opacity: 0.6;
    box-shadow: 0 0 10px var(--tech-accent);
}

@keyframes float {
    0% {
        transform: translateY(100vh) translateX(0px) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.6;
    }

    90% {
        opacity: 0.6;
    }

    100% {
        transform: translateY(-100px) translateX(100px) rotate(360deg);
        opacity: 0;
    }
}

.metrics-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 0.5rem;
    flex-wrap: wrap;
}

.metric-card {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid var(--tech-accent);
    border-radius: 15px;
    text-align: center;
    min-width: 150px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

    .metric-card::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
        transform: rotate(45deg);
        transition: all 0.6s ease;
        opacity: 0;
    }

    .metric-card:hover::before {
        animation: shimmer 1.5s ease-in-out;
    }

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        opacity: 0;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
        opacity: 0;
    }
}

.metric-number {
    font-size: 1.6rem;
    font-weight: bold;
    color: var(--tech-accent);
    display: block;
    text-shadow: 0 0 10px var(--tech-accent);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--light-color);
}

.country-filter {
    margin-bottom: 1rem;
}

    .country-filter ul {
        margin: 0;
        padding: 0;
        list-style: none !important;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
        align-items: center;
    }

        .country-filter ul li {
            flex-shrink: 0;
            list-style: none !important;
            list-style-type: none !important;
            margin: 0;
            padding: 0;
        }

.filter-item {
    display: inline-block;
    padding: 0.5rem 0.75rem; /* Reduced from 0.5rem 1rem (25% smaller) */
    color: var(--light-color);
    text-decoration: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.656rem; /* Reduced from 0.875rem (25% smaller) */
    font-weight: 500;
    min-width: fit-content;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

    .filter-item:hover,
    .filter-item.active {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 20px var(--tech-accent);
        border-color: var(--tech-accent);
    }

    .filter-item[data-filter="*"] {
        border-color: var(--primary-color);
    }

        .filter-item[data-filter="*"]:hover,
        .filter-item[data-filter="*"].active {
            background-color: #3B2E74;
            color: #ffffff;
        }

    .filter-item::after {
        padding-bottom: 0.2rem !important;
        content: attr(data-count);
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: #3b2e74eb;
        color: white;
        border-radius: 4.5px 4.5px 0 0; 
        font-size: 0.563rem;
        font-weight: 600;
        font-size: 0.6rem;
        line-height: 0.45; 
        text-align: center;
        padding: 0.19rem 0; 
        box-sizing: border-box;
    }

    .filter-item[data-filter="*"]::after {
        margin-block-start: 2px;
        content: attr(data-total);
    }

.flag-icon {
    margin-right: 0.5rem;
    border-radius: 2px;
}

@media (max-width: 768px) {
    .country-filter ul {
        gap: 0.5rem; 
    }

    .filter-item {
        padding: 0.281rem 0.563rem; 
        font-size: 0.6rem;
    }
}

@media (max-width: 576px) {
    .country-filter ul {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        scrollbar-width: thin;
    }

        .country-filter ul::-webkit-scrollbar {
            height: 4px;
        }

        .country-filter ul::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 2px;
        }

        .country-filter ul::-webkit-scrollbar-thumb {
            background: var(--primary-color);
            border-radius: 2px;
        }

    .filter-item {
        padding: 0.5rem 0.563rem; 
        font-size: 0.563rem;
    }
}

.clients-swiper {
    overflow: hidden;
    position: relative;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    transition: all 0.5s ease;
    opacity: 0;
    transform: translateY(30px);
}

    .swiper-slide.slide-visible {
        opacity: 1;
        transform: translateY(0);
    }

    .swiper-slide.filtered-hidden {
        display: none !important;
    }

.client-logo {
    background: #f3f4fe;
    backdrop-filter: blur(10px);
    border: 2px solid var(--glass-border);
    border-radius: 15px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--light-color);
    text-decoration: none;
    transition: all 0.3s ease;
    min-height: 100px;
    width: 100%;
    max-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    flex-direction: column;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

    .client-logo img {
        max-width: 140px;
        max-height: 70px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(70%);
        transition: filter 0.3s ease, transform 0.3s ease;
        display: block;
    }

    .client-logo.magnetic {
        transition: transform 0.1s ease-out;
    }

    .client-logo:hover {
        border-color: var(--tech-accent);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 25px rgba(0, 123, 255, 0.25), 0 0 30px var(--tech-accent);
    }

        .client-logo:hover img {
            filter: grayscale(0%);
            transform: rotate(360deg) scale(1.1);
        }

    .client-logo::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.9) 0%, rgba(0, 123, 255, 0.3) 30%, rgba(135, 206, 235, 0.2) 50%, rgba(255, 255, 255, 0.1) 70%, transparent 100%);
        border-radius: 50%;
        transform: translate(-50%, -50%);
        transition: none;
        z-index: 1;
        opacity: 0;
        pointer-events: none;
}

.client-logo:hover::before {
    animation: smokeSwirl 1.5s ease-out forwards;
}

.client-logo::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient( circle, rgba(0, 123, 255, 0.4) 0%, rgba(255, 255, 255, 0.2) 40%, transparent 70% );
    border-radius: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    opacity: 0;
    pointer-events: none;
}

.client-logo:hover::after {
    animation: smokeSwirl 1s ease-out 0.1s forwards;
}

.logo-text-fallback {
    display: inline-block;
    width: 100px;
    height: 50px;
    font-size: 11px;
    font-weight: 600;
    color: #6c757d;
    text-align: center;
    line-height: 1.2;
    word-break: break-word;
    vertical-align: middle;
}

.debug-info {
    position: fixed;
    top: 10px;
    right: 10px;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    color: var(--dark-color);
    padding: 10px;
    border-radius: 10px;
    font-size: 12px;
    z-index: 1000;
    max-width: 200px;
}

.clients-wrapper {
    animation: slideLeft 20s linear infinite;
}

@keyframes slideLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slide-enter {
    animation: slideInUp 0.6s ease-out forwards;
}

.text-logo {
    display: inline-block;
    width: 64px;
    height: 64px;
    object-fit: contain;
}

/* Styles for Pricing.cshtml */
.pricing-wrapper .card.pricing {
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--tech-accent);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transition: all 0.3s ease;
    color: var(--light-color); /* Make text inside the card light */
}

.pricing-wrapper .card.pricing:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.5);
}

.pricing-wrapper .card.pricing .card-title {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

.edition-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.edition-icon {
    font-size: 2.5rem;
    color: var(--neon-pink);
    text-shadow: 0 0 8px var(--neon-pink), 0 0 15px var(--neon-pink), 0 0 2px #fff;
    margin-bottom: 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.pricing-wrapper .card.pricing:hover .edition-icon {
    transform: scale(1.1) rotate(-5deg);
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-green), 0 0 20px var(--neon-green);
}

.pricing-wrapper .card.pricing .icon-list li {
    color: var(--light-color);
}

.pricing-wrapper .card.pricing .icon-list .uil {
    color: #39ff14;
    font-size: 1.35rem;
    vertical-align: middle;
    margin-right: 0.35rem;
    text-shadow:
        0 0 8px #39ff14,
        0 0 16px #39ff14,
        0 0 2px #fff;
    filter: brightness(1.4) contrast(1.3);
    transition: transform 0.2s;
    background: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
}

.pricing-wrapper .card.pricing .icon-list .uil::after {
    content: none;
}

.pricing-wrapper .card.pricing .btn-primary {
    background-color: var(--neon-blue);
    border-color: var(--neon-blue);
    color: #ffffff;
    text-shadow: 0 0 2px #000, 0 0 5px #000;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.pricing-wrapper .card.pricing .btn-primary:hover {
    background-color: var(--neon-green);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2), 0 0 20px var(--neon-green);
}

/* Discount Offer Styling */
.discount-offer {
    background: rgba(255, 20, 147, 0.1); /* Light pinkish glow */
    border: 1px solid var(--neon-pink);
    border-radius: 10px;
    padding: 0.75rem;
    margin-bottom: 1rem;
    color: var(--light-color);
    text-shadow: 0 0 3px var(--neon-pink);
    font-size: 0.9rem;
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.3);
}

.discount-offer .offer-expiry {
    font-size: 0.8rem;
    color: var(--neon-blue);
    text-shadow: 0 0 3px var(--neon-blue);
    margin-top: 0.25rem;
}

/* Tech/neon style for alert boxes */
.alert {
    background: rgba(10, 10, 10, 0.85) !important;
    border: 2px solid var(--neon-blue) !important;
    color: var(--light-color) !important;
    box-shadow: 0 0 18px var(--neon-blue), 0 0 2px #fff;
    border-radius: 14px;
    padding: 1.1rem 1.5rem;
    margin-bottom: 1.5rem;
}

.alert-icon {
    color: var(--neon-blue) !important;
    vertical-align: middle;
    margin-right: 0.5rem;
}

.alert-link {
    color: var(--neon-green) !important;
    text-shadow: 0 0 2px var(--neon-green);
    font-weight: 600;
}

/* Hide the close icon in alert boxes */
.alert .btn-close {
    display: none !important;
}

/* Align FAQ section with page style */
.faq-section {
    background: rgba(10, 10, 10, 0.85);
    color: var(--light-color);
    transition: all 0.3s ease;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 18px var(--neon-blue), 0 0 2px #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

/* Ensure FAQ accordion text is always light for readability */
.faq-section .card-body,
.faq-section .accordion-item.card,
.faq-section .accordion-item.card .card-header,
.faq-section .accordion-item.card .card-body {
    color: var(--light-color) !important;
    text-shadow: 0 0 0.5px var(--neon-blue), 0 0 2px #fff;
    filter: brightness(1.2) contrast(1.2);
}

.faq-section .accordion-item.card {
    background: transparent;
    border: 2px solid var(--neon-blue);
    box-shadow: 0 0 0.5px var(--neon-blue);
    border-radius: 12px;
    margin-bottom: 1.2rem;
    transition: all 0.3s ease;
}

.faq-section .accordion-item.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 15px var(--neon-blue), 0 0 25px var(--neon-blue);
    border-color: var(--neon-blue);
}

.accordion-wrapper .card-header button {
    position: relative;
    padding-left: 2em; /* adjust as needed for spacing */
}

    .accordion-wrapper .card-header button:before {
        position: absolute;
        left: 0.5em; /* adjust as needed */
        top: 50%;
        transform: translateY(-50%);
        color: var(--secondary-color) !important;
        text-shadow: 0 0 6px var(--secondary-color), 0 0 2px #fff;
        opacity: 1 !important;
        filter: none !important;
    }

    .accordion-wrapper .card-header button.collapsed {
        color: var(--light-color) !important;
        text-shadow: 0 0 0.5px var(--secondary-color), 0 0 1px #fff;
        filter: brightness(1.3) contrast(1.2);
    }



    .accordion-wrapper .card-header button.collapsed .icon,
    .accordion-wrapper .card-header button.collapsed svg,
    .accordion-wrapper .card-header button.collapsed i,
    .accordion-wrapper .card-header button.collapsed::after {
        color: var(--secondary-color) !important;
        filter: none !important;
        text-shadow: none !important;
        opacity: 1 !important;
    }

    .accordion-wrapper .card-header button:before {
        color: var(--secondary-color) !important;
        text-shadow: 0 0 1px var(--secondary-color), 0 0 1px #fff;
        opacity: 1 !important;
        filter: none !important;
    }

.bp-heading {
    color: var(--light-color) !important;
    text-shadow: 0 0 8px var(--neon-blue), 0 0 2px #fff;
    font-family: inherit;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.bp-lead {
    color: var(--light-color) !important;
    text-shadow: 0 0 4px var(--neon-blue), 0 0 1px #fff;
    font-size: 1.25rem;
    font-weight: 400;
    font-family: inherit;
}

.feature-theme {
    --neon-blue: #00ffff;
    --neon-pink: #ff1493;
    --neon-green: #39ff14;
    --dark-bg: #0a0a0a;
    --light-color: #f8f9fa;
    --tech-accent: var(--neon-blue);
    --secondary-color: #6c757d;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
    --info-color: #17a2b8;
    --dark-color: #343a40;
    --glass-bg: rgba(255, 255, 255, 0.25);
    --glass-border: rgba(255, 255, 255, 0.18);
}

/* Futuristic Price Display */
.price-futuristic {
    position: relative;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    min-height: 100px; /* Adjust as needed */
}

    .price-futuristic .price-original {
        margin-bottom: -1.5rem; /* Adjust this value to control the vertical distance */
    }

    .price-futuristic .price h2 {
        margin: 0;
        font-size: 2.8rem;
        font-weight: 700;
        font-family: 'Orbitron', sans-serif; /* A futuristic font */
        color: var(--light-color);
        text-shadow: 0 0 0.2px var(--neon-blue), 0 0 0.5px var(--neon-blue), 0 0 0.8px var(--neon-blue);
        transition: all 0.3s ease;
    }

    .price-futuristic .price-original h2 {
        font-size: 1.8rem;
        color: var(--secondary-color);
        text-shadow: 0 0 0.5px var(--danger-color);
    }

        .price-futuristic .price-original h2 .price-value {
            text-decoration-color: var(--danger-color);
        }

    .price-futuristic .price-discounted h2 {
        color: var(--neon-green);
        text-shadow: 0 0 0.5px var(--neon-green), 0 0 1px var(--neon-green), 0 0 1.5px var(--neon-green);
    }

    .price-futuristic .price-show h2 {
        font-size: 2.8rem;
        font-family: 'Orbitron', sans-serif;
        color: var(--light-color);
        text-shadow: 0 0 0.2px var(--neon-blue), 0 0 0.5px var(--neon-blue), 0 0 0.8px var(--neon-blue);
    }

    .price-futuristic .price-currency {
        font-size: 0.8em;
        vertical-align: super;
        margin-right: 0.2em;
    }



/* Price Slash Effect */
.price-slash-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
}

.price-slash-original {
    font-size: 1.5rem;
    color: var(--secondary-color);
    position: relative;
    margin-right: 1rem;
    animation: price-shadow-glow 3s ease infinite;
}

    .price-slash-original::after {
        content: '';
        position: absolute;
        top: 50%;
        left: -10%;
        width: 120%;
        height: 3px;
        background: linear-gradient(90deg, rgba(255, 20, 147, 0.7), rgba(0, 255, 255, 0.7), rgba(255, 20, 147, 0.7));
        background-size: 200% auto;
        transform: rotate(-15deg);
        animation: slash-glow 1.5s infinite alternate, gradient-animation 3s ease infinite;
    }

@keyframes slash-glow {
    0% {
        box-shadow: 0 0 2px rgba(255, 20, 147, 0.7), 0 0 2px rgba(0, 255, 255, 0.7);
    }
    to {
        box-shadow: 0 0 4px rgba(255, 20, 147, 0.7), 0 0 6px rgba(0, 255, 255, 0.7), 0 0 1px #fff;
    }
}

@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes price-shadow-glow {
    0% {
        text-shadow: 0 0 2px var(--neon-pink);
    }
    50% {
        text-shadow: 0 0 2px var(--neon-blue);
    }
    100% {
        text-shadow: 0 0 2px var(--neon-pink);
    }
}

@keyframes earthquake-then-bounce {
    /* Earthquake for 4s */
    0% { transform: translate(0, 0) rotate(0); }
    4% { transform: translate(-2px, -2px) rotate(-0.5deg); }
    8% { transform: translate(2px, 0px) rotate(0.5deg); }
    12% { transform: translate(-2px, 2px) rotate(0deg); }
    16% { transform: translate(2px, -2px) rotate(0.5deg); }
    20% { transform: translate(-2px, 0px) rotate(-0.5deg); }
    24% { transform: translate(2px, 2px) rotate(0deg); }
    28% { transform: translate(-2px, -2px) rotate(0.5deg); }
    32% { transform: translate(2px, 0px) rotate(-0.5deg); }
    36% { transform: translate(-2px, 2px) rotate(0deg); }
    
    /* Return to origin and calm down for 1s */
    40%, 50% { transform: translate(0, 0) rotate(0); }

    /* Bounce for 5s */
    60% { transform: translateX(3px); }
    80% { transform: translateX(-3px); }
    100% { transform: translate(0, 0); }
}


.price-slash-discounted {
    font-size: 3rem;
    font-weight: 700;
    color: var(--neon-green);
    text-shadow: 0 0 1px var(--neon-green), 0 0 2px var(--neon-green), 0 0 2px var(--neon-green);
    animation: earthquake-then-bounce 10s ease-in-out infinite;
}

.price-slash-currency {
    font-size: 0.6em;
    vertical-align: super;
    margin-right: 0.2em;
}

.price-decimal {
    font-size: 0.8em;
    position: relative;
    top: -0.0em;
}

.btn-glow {
    position: relative;
    display: inline-block;
    padding: 15px 30px;
    color: var(--neon-blue);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 1.2rem;
    overflow: hidden;
    transition: 0.2s;
    border: 2px solid var(--neon-blue);
    border-radius: 8px;
    box-shadow: 0 0 10px var(--neon-blue), inset 0 0 10px var(--neon-blue);
}

    .btn-glow:hover {
        color: var(--dark-bg);
        background: var(--neon-blue);
        box-shadow: 0 0 20px var(--neon-blue), 0 0 40px var(--neon-blue), 0 0 80px var(--neon-blue);
        transition-delay: 0.2s;
        -webkit-box-reflect: below 15px linear-gradient(transparent, #0004);
    }

    .btn-glow span {
        position: absolute;
    }

        .btn-glow span:nth-child(1) {
            top: 0;
            left: -100%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, var(--neon-blue));
            animation: animate1 1s linear infinite;
        }

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%, 100% {
        left: 100%;
    }
}

.btn-glow span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--neon-blue));
    animation: animate2 1s linear infinite;
    animation-delay: 0.25s;
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%, 100% {
        top: 100%;
    }
}

.btn-glow span:nth-child(3) {
    bottom: 0;
    right: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(270deg, transparent, var(--neon-blue));
    animation: animate3 1s linear infinite;
    animation-delay: 0.5s;
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%, 100% {
        right: 100%;
    }
}

.btn-glow span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(360deg, transparent, var(--neon-blue));
    animation: animate4 1s linear infinite;
    animation-delay: 0.75s;
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%, 100% {
        bottom: 100%;
    }
}

/* Media Queries for Responsiveness */

@media (max-width: 992px) {
    .glitch {
        font-size: 2.5rem; /* Adjust glitch effect font size for tablets */
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.75rem;
    }

    .pricing-wrapper .card.pricing {
        margin-bottom: 2rem;
    }

    .price-slash-discounted {
        font-size: 2.5rem;
    }

    .price-slash-original {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .glitch {
        font-size: 2rem; /* Further reduce for smaller tablets and large phones */
    }

    .display-1 {
        font-size: 3rem;
    }

    .lead {
        font-size: 1rem;
    }

    .feature-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }

    .feature-card .row {
        flex-direction: column;
    }

    .feature-card .col-lg-6 {
        width: 100%;
    }

    .feature-card .order-lg-2 {
        order: 0 !important; /* Stack image and text vertically */
    }

    .faq-section {
        padding: 1.5rem 1rem;
    }

    .price-slash-discounted {
        font-size: 2.2rem;
    }

    .price-slash-original {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .glitch {
        font-size: 1.8rem; /* Smallest size for mobile phones */
    }

    .display-1 {
        font-size: 2.5rem;
    }

    .bp-heading {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.5rem;
    }

    .pricing-wrapper .card.pricing .icon-list {
        font-size: medium; /* Adjust font size for better readability on small screens */
    }

    .alert {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faq-section {
        padding: 1rem 0.5rem;
    }

    .price-slash-container {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-slash-original {
        margin-right: 0;
    }

    .price-slash-discounted {
        font-size: 2rem;
    }
}