/* Hero Section Styles */
.hero-section-wrapper {
    padding: 80px 0;
    background-color: var(--color-white);
}
.hero-section-wrapper1 {
    padding: 80px 0;
    background-color: var(--color-white);
}
/* Award Banner */
.hero-section-award-container {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
}

.hero-section-award-badge {
    background: var(--award-bg);
    border: 1px solid var(--award-border);
    padding: 10px 24px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    /* Keep original colors */
    --sparkle-color-1: var(--sparkle-1);
    --sparkle-color-2: var(--sparkle-2);
    --sparkle-color-3: var(--sparkle-3);
}

.hero-section-award-text {
    font-size: 18px;
    font-weight: 400;
    color: var(--award-text);
    margin: 0;
    position: relative;
    z-index: 2;
    /* Gradient text animation */
    background: linear-gradient(90deg,
            var(--award-text),
            var(--award-anim-1),
            var(--award-anim-2),
            var(--award-anim-3),
            var(--award-anim-1),
            var(--award-text));
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    animation: textShimmer 3s ease-in-out infinite;
}

.hero-section-award-icon img {
    width: 18px;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 0 2px var(--shadow-purple-30));
    animation: iconFloat 2s ease-in-out infinite;
}

/* Circular border animation */
.border-animation-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    border: 1px solid transparent;
    background: linear-gradient(90deg,
            var(--sparkle-color-1),
            var(--sparkle-color-2),
            var(--sparkle-color-3),
            var(--sparkle-color-1)) border-box;
    background-origin: border-box;
    background-clip: border-box;
    -webkit-mask:
        linear-gradient(var(--color-white) 0 0) padding-box,
        linear-gradient(var(--color-white) 0 0);
    mask:
        linear-gradient(var(--color-white) 0 0) padding-box,
        linear-gradient(var(--color-white) 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotateBorder 4s linear infinite;
    opacity: 0.7;
}

.border-animation-circle.delay-1 {
    animation: rotateBorder 4s linear infinite reverse;
    opacity: 0.5;
}

.border-animation-circle.delay-2 {
    animation: rotateBorder 6s linear infinite;
    animation-delay: 1s;
    opacity: 0.3;
}

/* Sparkle particles */
.hero-section-award-badge::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background:
        radial-gradient(circle at 20% 50%, var(--sparkle-color-1) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, var(--sparkle-color-2) 0%, transparent 50%),
        radial-gradient(circle at 40% 70%, var(--sparkle-color-3) 0%, transparent 50%);
    opacity: 0.1;
    animation: sparklePulse 3s ease-in-out infinite;
    z-index: 1;
}

/* Animations */
@keyframes rotateBorder {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes textShimmer {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

@keyframes sparklePulse {

    0%,
    100% {
        opacity: 0.1;
        filter: blur(2px);
    }

    50% {
        opacity: 0.2;
        filter: blur(0px);
    }
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-2px) rotate(5deg);
    }
}

/* Optional: Add hover effects */
.hero-section-award-badge:hover .border-animation-circle {
    opacity: 1;
    animation-duration: 2s;
}

.hero-section-award-badge:hover .hero-section-award-text {
    animation-duration: 1.5s;
}

.hero-section-award-badge:hover::before {
    opacity: 0.3;
}

/* Trust Logos */
.hero-section-trust-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.mobile-marquee-item {
    display: none !important;
}

@media (max-width: 768px) {
    .mobile-marquee-item {
        display: flex !important;
    }
}

.hero-section-trust-item {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section-trust-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
}



/* Main Heading */
.hero-section-main-title {
    font-size: 64px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-section-text-green {
    color: var(--navbar-primary-green);
}

.category-hero{
color: var(--color-black);
}

.counter-wrapper {
    position: relative;
    display: inline-block;
}

.counter {
    display: inline-block;
    position: relative;
    min-width: 30px;
    text-align: center;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Optional: Add a subtle digital effect */
.counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            transparent 0%,
            var(--color-green-pure-10) 50%,
            transparent 100%);
    opacity: 0.5;
    pointer-events: none;
}

/* Smash effect animations */
@keyframes smashEffect {
    0% {
        transform: scale(1);
    }

    25% {
        transform: scale(1.3);
    }

    50% {
        transform: scale(0.9);
    }

    75% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes smashGlow {

    0%,
    100% {
        text-shadow: 0 0 5px var(--shadow-emerald-50);
    }

    50% {
        text-shadow: 0 0 20px var(--shadow-emerald-80),
            0 0 30px var(--shadow-emerald-60);
    }
}

@keyframes shakeEffect {

    0%,
    100% {
        transform: translateX(0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-2px);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translateX(2px);
    }
}

.smash-animation {
    animation: smashEffect 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both,
        smashGlow 0.5s ease-in-out;
}

.shake-animation {
    animation: shakeEffect 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

/* Particle effect for smash */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--navbar-primary-green);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
}

@keyframes particleFly {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(var(--tx, 0), var(--ty, 0)) scale(0);
        opacity: 0;
    }
}

/* Description */
.hero-section-sub-desc {
    font-size: 22px;
    color: var(--color-gray-warm);
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

/* Buttons */
.hero-section-btn-group {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-section-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-section-btn-fill {
    background-color: var(--navbar-primary-green);
    color: var(--color-white);
    box-shadow: 0 4px 14px var(--shadow-primary-25);
}

.hero-section-btn-fill:hover {
    background-color: var(--navbar-primary-green-hover);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow-primary-35);
}

.hero-section-btn-outline {
    background-color: transparent;
    color: var(--color-gray-900);
    border: 2px solid var(--color-border-gray-200);
}

.hero-section-btn-outline:hover {
    background-color: var(--color-gray-50);
    border-color: var(--color-border-gray-medium);
    transform: translateY(-2px);
}

.hero-section-action-btn svg {
    transition: transform 0.3s ease;
}

.hero-section-action-btn:hover svg {
    transform: translateX(4px);
}

/* Simple fade in with slight upward movement */
@keyframes gentleFadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply gentle animations */
.hero-section-award-container {
    animation: gentleFadeIn 0.6s ease-out 0.2s both;
}

.hero-section-trust-row {
    animation: gentleFadeIn 0.6s ease-out 0.4s both;
}

.hero-section-main-title {
    animation: gentleFadeIn 0.8s ease-out 0.6s both;
}

.hero-section-sub-desc {
    animation: gentleFadeIn 0.6s ease-out 0.8s both;
}

.hero-section-btn-group {
    animation: gentleFadeIn 0.6s ease-out 1s both;
}

/* Dashboard Section */
.hero-section-dashboard {
    margin-top: 80px;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    perspective: 1000px;
}

.hero-section-dashboard-image {
    background: var(--color-white);
    border: 1.5px solid var(--color-border-gray-medium);
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 30px 60px var(--shadow-black-12);
    position: relative;
    overflow: hidden;
    padding: 0;
    transition: transform 0.5s ease;
}

.hero-section-dashboard-head {
    width: 100%;
    border-bottom: 1px solid var(--color-bg-lighter);
}

.hero-section-dashboard-head img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-section-dashboard-money-boxes {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 15px 25px;
}

.hero-section-box1 {
    background: var(--color-white);
    border-top: 35px solid var(--navbar-primary-green);
    /* Light purple header */
    border-radius: 25px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 4px 6px var(--shadow-black-02);
    border-left: 1px solid var(--color-border-gray);
    border-right: 1px solid var(--color-border-gray);
    border-bottom: 1px solid var(--color-border-gray);
}

.hero-section-box-header {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    width: 100%;
    text-align: center;
}

.hero-section-box-body {
    color: var(--color-gray-muted);
    width: 100%;
    --ticker-height: 75px;
    height: var(--ticker-height);
    /* Exact match to ticker-item height */
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;

    /* Fill Animation Context */
    position: relative;
    overflow: hidden;
    z-index: 1;
    background: transparent;
    /* Move bg to pseudo */
}

/* Base Mint Background */
.hero-section-box-body::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--color-bg-mint-light);
    z-index: -2;
}

/* Flowing Fill Animation */
.hero-section-box-body::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: var(--fill-progress, 0%);
    background: var(--color-bg-green-header);
    /* Theme Light Green */
    z-index: -1;
    transition: height 0.1s linear;
    pointer-events: none;
}

.hero-section-box-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 65%;
    margin: 0 auto;
}

.hero-section-box-icon {
    width: 38px;
    height: 38px;
    object-fit: contain;
    flex-shrink: 0;
}

.hero-section-count {
    font-size: 28px;
    font-weight: 750;
    color: var(--color-black);
    text-align: right;
    flex-grow: 1;
}

.hero-section-currency-ticker {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    /* Align to the right side center */
    height: var(--ticker-height);
    /* Set height to match viewing window for perfect centering */
    animation: currencySlide 15s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.hero-section-ticker-item {
    height: var(--ticker-height);
    /* Match viewing window */
    min-height: var(--ticker-height);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Right side center */
    font-size: 20px;
    font-weight: 750;
    color: var(--color-black);
    width: 100%;
    text-align: right;
}

@keyframes currencySlide {

    0%,
    15% {
        transform: translateY(0);
    }

    16.6%,
    31.6% {
        transform: translateY(calc(var(--ticker-height) * -1));
    }

    33.3%,
    48.3% {
        transform: translateY(calc(var(--ticker-height) * -2));
    }

    50%,
    65% {
        transform: translateY(calc(var(--ticker-height) * -3));
    }

    66.6%,
    81.6% {
        transform: translateY(calc(var(--ticker-height) * -4));
    }

    83.3%,
    98.3% {
        transform: translateY(calc(var(--ticker-height) * -5));
    }

    100% {
        transform: translateY(calc(var(--ticker-height) * -5));
    }
}

.hero-section-dashboard-clients {
    width: 100%;
    padding: 0 5px;
}

.hero-section-dashboard-clients img {
    width: 100%;
    height: auto;
    display: block;
}

/* page1 css start */
.page1-hero-container {
    padding-top: 0;
    padding-bottom: 0;
    overflow-x: hidden;
}

/* Left side wrapper to simulate container alignment */
.page1-hero-left-wrapper {
    padding-right: 20px;
    padding-top: 60px;
    padding-bottom: 60px;
}

@media (min-width: 992px) {
    .page1-hero-left-wrapper {
        padding-left: calc((100vw - 960px) / 2 + 15px);
    }
}

@media (min-width: 1200px) {
    .page1-hero-left-wrapper {
        padding-left: calc((100vw - 1140px) / 2 + 15px);
    }

    /* Dashboard Desktop Enhancements */
    .hero-section-dashboard-image {
        max-width: 1250px;
    }

    .hero-section-box-body {
        --ticker-height: 85px;
    }

    .hero-section-box-header {
        font-size: 14px;
        top: -28px;
    }

    .hero-section-box1 {
        border-top: 40px solid var(--navbar-primary-green);
    }

    .hero-section-count {
        font-size: 32px;
    }

    .hero-section-ticker-item {
        font-size: 24px;
    }

    .hero-section-box-icon {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 1400px) {
    .page1-hero-left-wrapper {
        padding-left: calc((100vw - 1520px) / 2 + 15px);
    }

    /* Dashboard Large Desktop Enhancements */
    .hero-section-dashboard-image {
        max-width: 1390px;
    }

    .hero-section-dashboard-money-boxes {
        padding: 20px 45px;
        gap: 25px;
    }

    .hero-section-box-body {
        --ticker-height: 100px;
    }

    .hero-section-box-header {
        font-size: 16px;
        top: -34px;
    }

    .hero-section-box1 {
        border-top: 50px solid var(--navbar-primary-green);
    }

    .hero-section-count {
        font-size: 40px;
    }

    .hero-section-ticker-item {
        font-size: 28px;
    }

    .hero-section-box-icon {
        width: 56px;
        height: 56px;
    }

    .hero-section-box-content-wrapper {
        width: 75%;
    }
}

.page1-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.page1-hero-desc {
    font-size: 18px;
    color: var(--color-gray-warm);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;
}

.page1-hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 50px;
}

.page1-hero-badges-container {
    width: 100%;
    overflow: hidden;
}

.page1-hero-badges {
    display: flex;
    gap: 20px;
    /* Reduced from 30px */
    align-items: center;
    flex-wrap: wrap;
}

.page1-hero-badges img {
    height: 60px;

    width: auto;
    object-fit: contain;

    transition: all 0.3s ease;
}

.mobile-only-badge {
    display: none;
}

.page1-hero-badges img:hover {
    cursor: pointer;
}

.page1-right-image-bg {
    background-color: #F0FAF6;
    padding: 50px 0 50px 50px;
    display: flex;
    align-items: center;
    height: 100%;
    min-height: 600px;
    margin-top: 30px;
}

.page1-dashboard-img {
    position: relative;
    border-top-left-radius: 26px;
    border-bottom-left-radius: 26px;
    box-shadow: -15px 15px 40px rgba(0, 0, 0, 0.06);
    width: 115%;
    display: block;
    max-width: none;
    opacity: 0;
    animation: dashboardSlideIn 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

@keyframes dashboardSlideIn {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Simpler animation for title and description */
.page1-hero-title {
    font-size: 56px;
    font-weight: 700;
    color: var(--color-gray-900);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -1px;

    /* Animation */
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out forwards;
    animation-delay: 0.3s;
}

.page1-hero-desc {
    font-size: 18px;
    color: var(--color-gray-warm);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 90%;

    /* Animation */
    opacity: 0;
    animation: slideInFromBottom 0.8s ease-out forwards;
    animation-delay: 0.6s;
}

@keyframes slideInFromBottom {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered word animation (simulated) */
.page1-hero-title {
    position: relative;
    overflow: hidden;
}

.page1-hero-title::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 50%,
            rgba(255, 255, 255, 0) 100%);
    animation: sweep 1.5s ease-in-out forwards;
    animation-delay: 0.5s;
}

@keyframes sweep {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .page1-hero-title {
        animation-delay: 0.2s;
    }

    .page1-hero-desc {
        animation-delay: 0.4s;
    }

    .page1-hero-title::after {
        animation-duration: 1s;
    }

    /* Mobile Marquee for Badges */
    .page1-hero-badges-container {
        margin-top: 30px;
        position: relative;
    }

    .page1-hero-badges {
        flex-wrap: nowrap !important;
        width: max-content;
        gap: 40px;
        animation: badgeMarquee 15s linear infinite;
        padding: 10px 0;
    }

    .page1-hero-badges img {
        height: 65px;
        /* Increased from 48px to match large style */
        flex-shrink: 0;
    }

    .mobile-only-badge {
        display: block;
    }
}

@keyframes badgeMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 20px));
        /* Half of the container width minus half gap */
    }
}

/* Beauty Salon Dashboard - White Gradient Shade Overlay */
.beauty-salon-dashboard-image {
    position: relative;
    /* Remove shadow for beauty salon dashboard */
    box-shadow: none !important;
}

/* Mask to hide border in gradient area */
.beauty-salon-dashboard-image {
    -webkit-mask-image: linear-gradient(to top,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 5%,
            rgba(0, 0, 0, 0.5) 10%,
            rgba(0, 0, 0, 0.7) 15%,
            rgba(0, 0, 0, 0.85) 20%,
            rgba(0, 0, 0, 0.95) 25%,
            rgb(0, 0, 0) 30%);
    mask-image: linear-gradient(to top,
            transparent 0%,
            rgba(0, 0, 0, 0.3) 5%,
            rgba(0, 0, 0, 0.5) 10%,
            rgba(0, 0, 0, 0.7) 15%,
            rgba(0, 0, 0, 0.85) 20%,
            rgba(0, 0, 0, 0.95) 25%,
            rgb(0, 0, 0) 30%);
}

/* White gradient shade that fades to transparent */
.beauty-salon-dashboard-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 70%;
    /* Covers enough to hide all bottom and side borders */
    background: linear-gradient(to top,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 255, 255, 0.98) 5%,
            rgba(255, 255, 255, 0.95) 10%,
            rgba(255, 255, 255, 0.9) 15%,
            rgba(255, 255, 255, 0.85) 20%,
            rgba(255, 255, 255, 0.78) 25%,
            rgba(255, 255, 255, 0.7) 30%,
            rgba(255, 255, 255, 0.6) 35%,
            rgba(255, 255, 255, 0.5) 40%,
            rgba(255, 255, 255, 0.4) 45%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.2) 55%,
            rgba(255, 255, 255, 0.12) 60%,
            rgba(255, 255, 255, 0.06) 70%,
            rgba(255, 255, 255, 0.02) 80%,
            transparent 100%);
    pointer-events: none;
    z-index: 10;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    animation: whiteGradientFlow 6s ease-in-out infinite;
}

/* Smooth flowing animation for white gradient */
@keyframes whiteGradientFlow {

    0%,
    100% {
        background: linear-gradient(to top,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.98) 5%,
                rgba(255, 255, 255, 0.95) 10%,
                rgba(255, 255, 255, 0.9) 15%,
                rgba(255, 255, 255, 0.85) 20%,
                rgba(255, 255, 255, 0.78) 25%,
                rgba(255, 255, 255, 0.7) 30%,
                rgba(255, 255, 255, 0.6) 35%,
                rgba(255, 255, 255, 0.5) 40%,
                rgba(255, 255, 255, 0.4) 45%,
                rgba(255, 255, 255, 0.3) 50%,
                rgba(255, 255, 255, 0.2) 55%,
                rgba(255, 255, 255, 0.12) 60%,
                rgba(255, 255, 255, 0.06) 70%,
                rgba(255, 255, 255, 0.02) 80%,
                transparent 100%);
    }

    50% {
        background: linear-gradient(to top,
                rgba(255, 255, 255, 1) 0%,
                rgba(255, 255, 255, 0.97) 5%,
                rgba(255, 255, 255, 0.93) 10%,
                rgba(255, 255, 255, 0.88) 15%,
                rgba(255, 255, 255, 0.82) 20%,
                rgba(255, 255, 255, 0.75) 25%,
                rgba(255, 255, 255, 0.67) 30%,
                rgba(255, 255, 255, 0.58) 35%,
                rgba(255, 255, 255, 0.48) 40%,
                rgba(255, 255, 255, 0.38) 45%,
                rgba(255, 255, 255, 0.28) 50%,
                rgba(255, 255, 255, 0.18) 55%,
                rgba(255, 255, 255, 0.1) 60%,
                rgba(255, 255, 255, 0.05) 70%,
                rgba(255, 255, 255, 0.01) 80%,
                transparent 100%);
    }
}