/* =============================================
   Premium Animations — Makran
   White & Black Theme
   ============================================= */

/* ---- Base animation utility ---- */
.anim-ready {
    will-change: transform, opacity;
}

/* ---- Floating particles (hero background) ---- */
.hero-canvas {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
}
.section-title-page { position: relative; overflow: hidden; }
@media (max-width:767px) {
    .section-title-page { overflow: visible; min-height: auto; padding-bottom: 30px; }
    #heroParticles { display: none; }
    .section-title-page .b-title-page { padding-top: 15px; }
    .section-title-page .btn { display: inline-block; margin: 5px; position: relative; z-index: 5; }
}
.section-title-page > .area-bg__inner { position: relative; z-index: 1; }

/* ---- Typewriter cursor ---- */
.typewriter-cursor {
    display: inline-block;
    width: 2px;
    height: 1em;
    background: #222;
    margin-left: 3px;
    animation: blink 0.8s infinite;
    vertical-align: text-bottom;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ---- Fade up — smooth entrance ---- */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Text reveal — slower, smoother ---- */
.text-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.text-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Staggered children — longer delays ---- */
.stagger-children > * {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.stagger-children.visible > *:nth-child(1)  { transition-delay: 0.08s; }
.stagger-children.visible > *:nth-child(2)  { transition-delay: 0.20s; }
.stagger-children.visible > *:nth-child(3)  { transition-delay: 0.32s; }
.stagger-children.visible > *:nth-child(4)  { transition-delay: 0.44s; }
.stagger-children.visible > *:nth-child(5)  { transition-delay: 0.56s; }
.stagger-children.visible > *:nth-child(6)  { transition-delay: 0.68s; }
.stagger-children.visible > *:nth-child(7)  { transition-delay: 0.80s; }
.stagger-children.visible > *:nth-child(8)  { transition-delay: 0.92s; }
.stagger-children.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ---- Slide from left/right — smooth easing ---- */
.slide-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide-left.visible,
.slide-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* =============================================
   SWAP CONTAINER ANIMATIONS — Creative Directional Swaps
   ============================================= */

/* ---- Swap Left → Right (container slides out to right, new slides in from left) ---- */
.swap-left-to-right {
    animation: swapLTR 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapLTR {
    0% {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
    35% {
        transform: translateX(80px);
        opacity: 0.4;
        filter: blur(2px);
    }
    36% {
        transform: translateX(-80px);
        opacity: 0;
        filter: blur(4px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* ---- Swap Right → Left (container slides out to left, new slides in from right) ---- */
.swap-right-to-left {
    animation: swapRTL 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapRTL {
    0% {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
    35% {
        transform: translateX(-80px);
        opacity: 0.4;
        filter: blur(2px);
    }
    36% {
        transform: translateX(80px);
        opacity: 0;
        filter: blur(4px);
    }
    100% {
        transform: translateX(0);
        opacity: 1;
        filter: blur(0);
    }
}

/* ---- Swap Bottom → Top (slides down then up) ---- */
.swap-bottom-to-top {
    animation: swapBTT 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapBTT {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    35% {
        transform: translateY(60px);
        opacity: 0.4;
    }
    36% {
        transform: translateY(-60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---- Swap Top → Bottom (slides up then down) ---- */
.swap-top-to-bottom {
    animation: swapTTB 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapTTB {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    35% {
        transform: translateY(-60px);
        opacity: 0.4;
    }
    36% {
        transform: translateY(60px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ---- Swap with 3D flip perspective ---- */
.swap-flip-x {
    animation: swapFlipX 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapFlipX {
    0% {
        transform: perspective(600px) rotateX(0);
        opacity: 1;
    }
    40% {
        transform: perspective(600px) rotateX(70deg);
        opacity: 0.3;
    }
    41% {
        transform: perspective(600px) rotateX(-70deg);
        opacity: 0;
    }
    100% {
        transform: perspective(600px) rotateX(0);
        opacity: 1;
    }
}

/* ---- Swap with 3D flip Y (card flip style) ---- */
.swap-flip-y {
    animation: swapFlipY 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapFlipY {
    0% {
        transform: perspective(600px) rotateY(0);
        opacity: 1;
    }
    40% {
        transform: perspective(600px) rotateY(90deg);
        opacity: 0.3;
    }
    41% {
        transform: perspective(600px) rotateY(-90deg);
        opacity: 0;
    }
    100% {
        transform: perspective(600px) rotateY(0);
        opacity: 1;
    }
}

/* ---- Swap with scale and blur (zoom out/in) ---- */
.swap-zoom-blur {
    animation: swapZoomBlur 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapZoomBlur {
    0% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
    35% {
        transform: scale(0.85);
        opacity: 0.3;
        filter: blur(4px);
    }
    36% {
        transform: scale(0.85);
        opacity: 0;
        filter: blur(6px);
    }
    100% {
        transform: scale(1);
        opacity: 1;
        filter: blur(0);
    }
}

/* ---- Swap with rotation spin ---- */
.swap-spin {
    animation: swapSpin 0.75s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapSpin {
    0% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
    40% {
        transform: rotate(25deg) scale(0.9);
        opacity: 0.3;
    }
    41% {
        transform: rotate(-25deg) scale(0.9);
        opacity: 0;
    }
    100% {
        transform: rotate(0deg) scale(1);
        opacity: 1;
    }
}

/* ---- Elastic swap left → right (bouncy) ---- */
.swap-elastic-ltr {
    animation: swapElasticLTR 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes swapElasticLTR {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    30% {
        transform: translateX(120px);
        opacity: 0.2;
    }
    31% {
        transform: translateX(-100px);
        opacity: 0;
    }
    60% {
        transform: translateX(15px);
        opacity: 0.8;
    }
    80% {
        transform: translateX(-10px);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ---- Elastic swap right → left (bouncy) ---- */
.swap-elastic-rtl {
    animation: swapElasticRTL 0.9s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@keyframes swapElasticRTL {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    30% {
        transform: translateX(-120px);
        opacity: 0.2;
    }
    31% {
        transform: translateX(100px);
        opacity: 0;
    }
    60% {
        transform: translateX(-15px);
        opacity: 0.8;
    }
    80% {
        transform: translateX(10px);
        opacity: 0.9;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ---- Crossfade swap (dissolve between two states) ---- */
.swap-crossfade {
    animation: swapCrossfade 0.7s ease-in-out;
}
@keyframes swapCrossfade {
    0% { opacity: 1; }
    45% { opacity: 0; }
    55% { opacity: 0; }
    100% { opacity: 1; }
}

/* ---- Swap with skew/shear effect ---- */
.swap-skew {
    animation: swapSkew 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapSkew {
    0% {
        transform: skewX(0);
        opacity: 1;
    }
    35% {
        transform: skewX(15deg);
        opacity: 0.4;
    }
    36% {
        transform: skewX(-12deg);
        opacity: 0;
    }
    100% {
        transform: skewX(0);
        opacity: 1;
    }
}

/* ---- Staggered swap (children swap one by one) ---- */
.stagger-swap > * {
    animation: staggerSwapItem 0.6s cubic-bezier(0.77, 0, 0.175, 1) both;
}
.stagger-swap > *:nth-child(1) { animation-delay: 0s; }
.stagger-swap > *:nth-child(2) { animation-delay: 0.1s; }
.stagger-swap > *:nth-child(3) { animation-delay: 0.2s; }
.stagger-swap > *:nth-child(4) { animation-delay: 0.3s; }
.stagger-swap > *:nth-child(5) { animation-delay: 0.4s; }
.stagger-swap > *:nth-child(6) { animation-delay: 0.5s; }

@keyframes staggerSwapItem {
    0% {
        transform: translateX(60px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ---- Directional slide-swap pairs for section containers ---- */

/* Left column swaps out to left, right column slides in from right */
.col-swap-ltr {
    animation: colSwapLTR 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes colSwapLTR {
    0% {
        clip-path: inset(0 100% 0 0);
        opacity: 0;
    }
    40% {
        clip-path: inset(0 0 0 0);
        opacity: 0.7;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* Right column reveals from right to left */
.col-reveal-rtl {
    animation: colRevealRTL 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
@keyframes colRevealRTL {
    0% {
        clip-path: inset(0 0 0 100%);
        opacity: 0;
    }
    40% {
        clip-path: inset(0 0 0 0);
        opacity: 0.7;
    }
    100% {
        clip-path: inset(0 0 0 0);
        opacity: 1;
    }
}

/* =============================================
   SCROLL-TRIGGERED SECTION REVEALS
   ============================================= */

/* ---- Scale in — pop effect ---- */
.scale-in {
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* ---- Rotate in ---- */
.rotate-in {
    opacity: 0;
    transform: rotateY(20deg) scale(0.9);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rotate-in.visible {
    opacity: 1;
    transform: rotateY(0) scale(1);
}

/* ---- Card lift — refined hover ---- */
.card-lift {
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                border-color 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.card-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0,0,0,0.15) !important;
    border-color: #222 !important;
}

/* ---- Icon bounce — spring ---- */
.icon-bounce {
    display: inline-block;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.card-lift:hover .icon-bounce,
.icon-bounce:hover {
    transform: scale(1.35) translateY(-6px);
}

/* ---- Shimmer border ---- */
.shimmer-border {
    position: relative;
    overflow: hidden;
}
.shimmer-border::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, transparent, #222, transparent);
    transition: left 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.shimmer-border:hover::after {
    left: 100%;
}

/* ---- Border draw ---- */
.border-draw {
    position: relative;
}
.border-draw::before {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: #222;
    transition: width 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                left 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.border-draw:hover::before {
    width: 100%;
    left: 0;
}

/* ---- Testimonial carousel ---- */
.testimonial-track {
    display: flex;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 30px;
}
.testimonial-dot {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.4s ease, transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.testimonial-dot.active {
    background: #222;
    transform: scale(1.35);
}

/* ---- CTA pulse button — refined ---- */
.btn-pulse {
    animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
    0%   { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.2); }
    50%  { box-shadow: 0 0 0 20px rgba(0, 0, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(0, 0, 0, 0); }
}

/* ---- Float animation — softer ---- */
.float-anim {
    animation: float 4s ease-in-out infinite;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ---- Subtle continuous float ---- */
.float-subtle {
    animation: floatSubtle 6s ease-in-out infinite;
}
@keyframes floatSubtle {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-5px); }
    75% { transform: translateY(5px); }
}

/* ---- Glow text — breathing effect (black theme) ---- */
.glow-text {
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.08),
                 0 0 40px rgba(0, 0, 0, 0.05),
                 0 0 60px rgba(0, 0, 0, 0.03);
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 0, 0, 0.08),
                     0 0 40px rgba(0, 0, 0, 0.05);
    }
    50% {
        text-shadow: 0 0 35px rgba(0, 0, 0, 0.18),
                     0 0 70px rgba(0, 0, 0, 0.08),
                     0 0 100px rgba(0, 0, 0, 0.04);
    }
}

/* ---- Section title underline — draws on scroll ---- */
.title-underline {
    position: relative;
    display: inline-block;
}
.title-underline::after {
    content: '';
    position: absolute;
    bottom: -10px; left: 50%;
    width: 0; height: 2px;
    background: #222;
    transition: width 1s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                left 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.title-underline.visible::after {
    width: 70px;
    left: calc(50% - 35px);
}

/* ---- Image zoom — smooth ---- */
.img-zoom img {
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.img-zoom:hover img {
    transform: scale(1.1);
}

/* ---- Stats counter ---- */
.stat-item {
    text-align: center;
    padding: 35px 15px;
}
.stat-number {
    font-size: 3.2rem;
    font-weight: 700;
    color: #222;
    line-height: 1;
}
.stat-label {
    color: #666;
    margin-top: 10px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ---- Ripple button ---- */
.btn-ripple {
    position: relative;
    overflow: hidden;
}
.btn-ripple::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 0; height: 0;
    border-radius: 50%;
    background: rgba(0,0,0,0.06);
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
}
.btn-ripple:hover::after {
    width: 400px; height: 400px;
}

/* ---- Stats counter grow animation ---- */
.stat-number.pop {
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}
@keyframes popIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

/* ---- Section separator animated line ---- */
.section-divider {
    width: 60px; height: 2px;
    background: #222;
    margin: 20px auto;
    transform: scaleX(0);
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-divider.visible {
    transform: scaleX(1);
}

/* ---- Smooth fade between sections ---- */
section {
    transition: opacity 0.6s ease;
}

/* ---- Parallax slow drift on hero ---- */
@media (min-width:768px) {
    .parallax-slow {
        transform: translateY(0);
        transition: transform 0.1s linear;
    }
}

/* ---- Button hover lift ---- */
.btn-lift {
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

/* ---- Entrance from bottom (new section reveal) ---- */
.section-enter {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.section-enter.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   ADDITIONAL CREATIVE ANIMATIONS
   ============================================= */

/* ---- Wipe reveal left to right ---- */
.wipe-ltr {
    animation: wipeLTR 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes wipeLTR {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0 0 0); }
}

/* ---- Wipe reveal right to left ---- */
.wipe-rtl {
    animation: wipeRTL 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes wipeRTL {
    from { clip-path: inset(0 0 0 100%); }
    to   { clip-path: inset(0 0 0 0); }
}

/* ---- Wipe reveal top to bottom ---- */
.wipe-ttb {
    animation: wipeTTB 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes wipeTTB {
    from { clip-path: inset(0 0 100% 0); }
    to   { clip-path: inset(0 0 0 0); }
}

/* ---- Wipe reveal bottom to top ---- */
.wipe-btt {
    animation: wipeBTT 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
@keyframes wipeBTT {
    from { clip-path: inset(100% 0 0 0); }
    to   { clip-path: inset(0 0 0 0); }
}

/* ---- Continuous horizontal auto-scroll (marquee-like) ---- */
.auto-scroll-x {
    animation: autoScrollX 20s linear infinite;
}
@keyframes autoScrollX {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Shake on hover ---- */
.shake-on-hover:hover {
    animation: shake 0.6s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}
@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

/* ---- Morphing border radius ---- */
.morph-border {
    animation: morphBorder 8s ease-in-out infinite;
}
@keyframes morphBorder {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25%      { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50%      { border-radius: 40% 60% 30% 70% / 50% 30% 60% 40%; }
    75%      { border-radius: 50% 40% 60% 30% / 40% 60% 50% 60%; }
}

/* ---- Diagonal slide swap (both X and Y movement) ---- */
.swap-diagonal {
    animation: swapDiagonal 0.85s cubic-bezier(0.77, 0, 0.175, 1);
}
@keyframes swapDiagonal {
    0% {
        transform: translate(0, 0);
        opacity: 1;
    }
    35% {
        transform: translate(60px, 40px);
        opacity: 0.3;
    }
    36% {
        transform: translate(-60px, -40px);
        opacity: 0;
    }
    100% {
        transform: translate(0, 0);
        opacity: 1;
    }
}

/* ---- Stack swap (cards pile up then spread) ---- */
.stack-swap {
    animation: stackSwap 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
@keyframes stackSwap {
    0% {
        transform: translateY(0) scale(1);
        opacity: 1;
        z-index: 2;
    }
    45% {
        transform: translateY(-30px) scale(0.92);
        opacity: 0.2;
        z-index: 1;
    }
    46% {
        transform: translateY(40px) scale(1.05);
        opacity: 0;
        z-index: 3;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 1;
        z-index: 2;
    }
}

/* ---- Mobile performance ---- */
@media (max-width:767px) {
    .card-lift:hover {
        transform: translateY(-5px) scale(1.01) !important;
    }
    .stagger-children > * {
        transition-delay: 0s !important;
        transition-duration: 0.5s !important;
    }
    /* Reduce swap distance on mobile */
    .swap-left-to-right,
    .swap-right-to-left,
    .swap-diagonal {
        animation-duration: 0.55s !important;
    }
}
