/* ========================================
   INDEX PAGE - CSS VARIABLES
   ======================================== */

:root {
    --index-primary: #FF6B35;
    --index-secondary: #E93C05;
    --index-light: #FFF4F0;
    --index-white: #FFFFFF;
    --index-dark: #1A1A1A;
    --index-gray: #555555;
    --index-border: rgba(255, 107, 53, 0.15);
    --index-shadow: rgba(0, 0, 0, 0.1);
    --index-shadow-hover: rgba(255, 107, 53, 0.2);
    --index-gradient-primary: linear-gradient(135deg, #FF6B35 0%, #E93C05 100%);
    --index-gradient-light: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(233, 60, 5, 0.05) 100%);
}

/* ========================================
   KEYFRAME ANIMATIONS (7 Total)
   ======================================== */

/* Animation 1: Vertical Float */
@keyframes index-float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-25px);
    }
}

/* Animation 2: Diagonal Float with Horizontal Drift */
@keyframes index-float-diagonal {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(15px, -20px);
    }
    50% {
        transform: translate(-10px, -35px);
    }
    75% {
        transform: translate(12px, -15px);
    }
}

/* Animation 3: Pulse with Scale */
@keyframes index-pulse {
    0%, 100% {
        opacity: 0.6;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.08);
    }
}

/* Animation 4: Shimmer Sweep */
@keyframes index-shimmer {
    0% {
        background-position: -200% center;
    }
    100% {
        background-position: 200% center;
    }
}

/* Animation 5: Growth (Bottom to Top) */
@keyframes index-growth {
    0% {
        transform: scaleY(0) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scaleY(1) translateY(0);
        opacity: 1;
    }
}

/* Animation 6: Slow Rotation */
@keyframes index-rotate-slow {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Animation 7: Icon Bounce */
@keyframes index-bounce-icon {
    0%, 100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-12px);
    }
    50% {
        transform: translateY(-6px);
    }
    75% {
        transform: translateY(-10px);
    }
}

/* ========================================
   HERO/CAROUSEL SECTION ENHANCEMENTS
   ======================================== */

/* Carousel Container Positioning */
.carousel-container {
    position: relative;
    overflow: hidden;
}

/* Decoration Layer Container */
.index-decoration-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

/* Ensure carousel content appears above decorations */
.carousel-inner,
.carousel-caption {
    position: relative;
    z-index: 2;
}

/* Floating Circles */
.index-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.12) 0%, transparent 70%);
    pointer-events: none;
    animation: index-float 7s ease-in-out infinite;
}

.index-circle-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.index-circle-2 {
    width: 180px;
    height: 180px;
    animation-delay: 1s;
}

.index-circle-3 {
    width: 250px;
    height: 250px;
    animation-delay: 2s;
}

/* Growth Arrows */
.index-growth-arrow {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 40px solid rgba(255, 107, 53, 0.25);
    position: absolute;
    pointer-events: none;
    animation: index-growth 2s ease-out;
    transform-origin: bottom center;
}

.index-arrow-1 {
    animation-delay: 0.3s;
}

.index-arrow-2 {
    animation-delay: 0.6s;
}

.index-arrow-3 {
    animation-delay: 0.9s;
}

/* Chart Lines with Dots */
.index-chart-line {
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.4) 50%, transparent 100%);
    position: absolute;
    pointer-events: none;
    animation: index-pulse 4s ease-in-out infinite;
}

.index-chart-line::before,
.index-chart-line::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--index-primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.index-chart-line::before {
    left: 0;
}

.index-chart-line::after {
    right: 0;
}

.index-chart-1 {
    animation-delay: 0s;
}

.index-chart-2 {
    animation-delay: 1s;
}

.index-chart-3 {
    animation-delay: 2s;
}

.index-chart-4 {
    animation-delay: 3s;
}

/* Currency Symbols */
.index-currency-symbol {
    font-size: 80px;
    color: rgba(255, 107, 53, 0.08);
    font-weight: 700;
    position: absolute;
    pointer-events: none;
    animation: index-float 8s ease-in-out infinite;
    font-family: 'Jost', sans-serif;
}

/* Graffiti Decorations */
.index-graffiti {
    position: absolute;
    padding: 15px 25px;
    border: 2px dashed rgba(255, 255, 255, 0.6);
    border-radius: 18px;
    pointer-events: none;
    backdrop-filter: blur(4px);
    background: rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.index-graffiti span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.index-graffiti-1 {
    transform: rotate(-8deg);
}

.index-graffiti-2 {
    transform: rotate(10deg);
}

/* Hero Pill Badge */
.index-hero-pill {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    color: var(--index-white);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(8px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.index-hero-pill:hover {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* Carousel Placeholder Backgrounds */
.index-carousel-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.index-carousel-bg-1 {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 244, 240, 0.9) 50%,
        rgba(255, 107, 53, 0.15) 100%);
}

.index-carousel-bg-2 {
    background: linear-gradient(135deg,
        rgba(255, 244, 240, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 50%,
        rgba(233, 60, 5, 0.12) 100%);
}

/* Carousel Item Positioning */
.carousel-item {
    position: relative;
    min-height: 100vh;
}

/* Enhanced Carousel Caption */
.carousel-caption {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    padding: 40px 20px;
    z-index: 2;
}

/* ========================================
   ABOUT SECTION ENHANCEMENTS
   ======================================== */

/* Image Frame with Scanning Effect */
.index-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    border: 2px solid var(--index-border);
    padding: 12px;
    background: var(--index-white);
    box-shadow: 0 10px 40px var(--index-shadow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.index-image-frame img {
    border-radius: 12px;
    transition: transform 0.4s ease;
}

.index-image-frame:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px var(--index-shadow-hover);
    border-color: var(--index-primary);
}

.index-image-frame:hover img {
    transform: scale(1.05);
}

/* Scanning Line Animation */
.index-scan-line {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 107, 53, 0.2) 50%, transparent 100%);
    pointer-events: none;
    transition: left 0.8s ease;
}

.index-image-frame:hover .index-scan-line {
    left: 100%;
}

/* Ledger Decoration Background */
.index-ledger-decoration {
    position: absolute;
    top: 50%;
    right: -50px;
    width: 300px;
    height: 400px;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(255, 107, 53, 0.03) 30px, rgba(255, 107, 53, 0.03) 31px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(255, 107, 53, 0.03) 40px, rgba(255, 107, 53, 0.03) 41px);
    transform: translateY(-50%) rotate(-5deg);
    opacity: 0.5;
    pointer-events: none;
    z-index: -1;
}

/* Enhanced Tab Buttons */
.nav-tabs .nav-link {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.nav-tabs .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--index-gradient-primary);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-tabs .nav-link:hover,
.nav-tabs .nav-link.active {
    transform: scale(1.05);
    color: var(--index-primary);
}

.nav-tabs .nav-link:hover::before,
.nav-tabs .nav-link.active::before {
    width: 80%;
}

/* Enhanced About Feature Boxes (3 boxes at bottom) */
.container-xxl.py-5 .border.rounded.p-4 {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.container-xxl.py-5 .border.rounded.p-4 .col-lg-4:hover .h-100 {
    transform: translateY(-8px);
}

.container-xxl.py-5 .border.rounded.p-4 .btn-lg-square {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.container-xxl.py-5 .border.rounded.p-4 .col-lg-4:hover .btn-lg-square {
    transform: scale(1.15) rotate(360deg);
    background: var(--index-gradient-primary) !important;
    box-shadow: 0 10px 30px var(--index-shadow-hover);
}

.container-xxl.py-5 .border.rounded.p-4 .col-lg-4:hover h4 {
    color: var(--index-primary);
}

/* ========================================
   FEATURES SECTION ENHANCEMENTS
   ======================================== */

/* Network Container */
.index-network-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* Network Nodes */
.index-network-node {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--index-primary);
    position: absolute;
    animation: index-pulse 3s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(255, 107, 53, 0.5);
}

.index-network-node:nth-child(1) { animation-delay: 0s; }
.index-network-node:nth-child(2) { animation-delay: 0.5s; }
.index-network-node:nth-child(3) { animation-delay: 1s; }
.index-network-node:nth-child(4) { animation-delay: 1.5s; }
.index-network-node:nth-child(5) { animation-delay: 2s; }

/* Network Lines (connecting nodes) */
.index-network-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, transparent 48%, rgba(255, 107, 53, 0.1) 48%, rgba(255, 107, 53, 0.1) 52%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 107, 53, 0.1) 48%, rgba(255, 107, 53, 0.1) 52%, transparent 52%);
    pointer-events: none;
}

/* Enhanced Feature Boxes */
.feature-box {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    background: var(--index-white);
    border-color: var(--index-border) !important;
}

.feature-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--index-gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-box:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 25px 60px var(--index-shadow-hover);
    border-color: var(--index-primary) !important;
}

.feature-box:hover::before {
    transform: scaleX(1);
}

/* Feature Box Icons */
.feature-box i {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.feature-box:hover i {
    animation: index-bounce-icon 1s infinite;
    color: var(--index-secondary) !important;
    transform: scale(1.15);
}

/* Percentage Circles */
.index-percentage-circle {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--index-gradient-light);
    border: 2px solid var(--index-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--index-primary);
    transition: all 0.3s ease;
}

.feature-box:hover .index-percentage-circle {
    transform: scale(1.2) rotate(360deg);
    background: var(--index-gradient-primary);
    color: var(--index-white);
}

/* ========================================
   SERVICES SECTION ENHANCEMENTS
   ======================================== */

/* Service Section Position Context */
.service-section {
    position: relative;
}

/* Currency Container for Services */
.index-currency-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.index-currency-container .index-currency-symbol {
    font-size: 120px;
    opacity: 0.04;
}

/* Enhanced Service Buttons */
.service-btn {
    position: relative;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.service-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--index-gradient-primary);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.service-btn:hover::before,
.service-btn.active::before {
    left: 0;
    opacity: 1;
}

.service-btn:hover,
.service-btn.active {
    transform: scale(1.08);
    color: var(--index-white) !important;
    box-shadow: 0 8px 25px var(--index-shadow-hover);
}

/* Tab Content Enhancements */
.tab-content {
    position: relative;
    z-index: 1;
}

.tab-pane {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.tab-pane.show {
    animation: index-fade-in-up 0.6s ease-out;
}

@keyframes index-fade-in-up {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   PROJECTS SECTION ENHANCEMENTS
   ======================================== */

/* Shield Decorations */
.index-shield-decoration {
    position: absolute;
    width: 80px;
    height: 90px;
    pointer-events: none;
    z-index: 0;
    opacity: 0.1;
}

.index-shield-decoration::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-top: 60px solid var(--index-primary);
}

.index-shield-decoration::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 40px solid var(--index-primary);
    border-right: 40px solid var(--index-primary);
    border-bottom: 30px solid transparent;
}

.index-shield-1 {
    top: 50px;
    left: 10%;
    animation: index-float 8s ease-in-out infinite;
}

.index-shield-2 {
    bottom: 50px;
    right: 10%;
    animation: index-float-diagonal 10s ease-in-out infinite;
}

/* Enhanced Project Items */
.project-item {
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-item:hover {
    transform: translateY(-10px) scale(1.05);
}

.project-img {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.4s ease;
}

.project-img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--index-gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.project-item:hover .project-img::before {
    opacity: 0.7;
}

.project-img a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    z-index: 2;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.project-item:hover .project-img a {
    transform: translate(-50%, -50%) scale(1) rotate(360deg);
    opacity: 1;
}

.project-img img {
    transition: transform 0.4s ease;
}

.project-item:hover .project-img img {
    transform: scale(1.1);
}

/* ========================================
   CONTACT SECTION ENHANCEMENTS
   ======================================== */

/* Enhanced Form Inputs */
.form-floating input,
.form-floating textarea {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-color: var(--index-border);
}

.form-floating input:focus,
.form-floating textarea:focus {
    border-color: var(--index-primary);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.15);
    transform: scale(1.02);
}

/* Submit Button with Ripple Effect */
.form-floating + .col-12 .btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-floating + .col-12 .btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.form-floating + .col-12 .btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.form-floating + .col-12 .btn-primary:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 35px var(--index-shadow-hover);
}

/* Map Frame with Glass-morphism */
.index-map-frame {
    border-radius: 20px;
    padding: 8px;
    background: var(--index-white);
    border: 2px solid var(--index-border);
    box-shadow: 0 10px 40px var(--index-shadow);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

.index-map-frame:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px var(--index-shadow-hover);
    border-color: var(--index-primary);
}

.index-map-frame iframe {
    border-radius: 14px;
}

/* Form Response Message Animations */
.form-message {
    padding: 20px;
    border-radius: 12px;
    animation: index-fade-in-up 0.4s ease-out;
    border: 2px solid;
}

.form-success {
    background: rgba(40, 167, 69, 0.1);
    border-color: #28a745;
    color: #155724;
}

.form-error {
    background: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
    color: #721c24;
}

/* ========================================
   RESPONSIVE MEDIA QUERIES
   ======================================== */

/* Tablet (991px and below) */
@media (max-width: 991px) {
    /* Hide complex CSS art on tablets */
    .index-growth-arrow,
    .index-chart-line,
    .index-graffiti,
    .index-ledger-decoration,
    .index-network-container,
    .index-currency-container,
    .index-shield-decoration {
        display: none;
    }

    /* Reduce circle sizes */
    .index-circle-1 {
        width: 80px;
        height: 80px;
    }

    .index-circle-2 {
        width: 120px;
        height: 120px;
    }

    .index-circle-3 {
        width: 150px;
        height: 150px;
    }

    /* Reduce currency symbol size */
    .index-currency-symbol {
        font-size: 60px;
    }

    /* Adjust carousel caption padding */
    .carousel-caption {
        padding: 30px 15px;
    }

    /* Reduce hero pill size */
    .index-hero-pill {
        font-size: 11px;
        padding: 6px 18px;
    }

    /* Adjust feature box hover effects */
    .feature-box:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

/* Mobile (767px and below) */
@media (max-width: 767px) {
    /* Hide all decorative CSS art */
    .index-decoration-layer,
    .index-circle,
    .index-growth-arrow,
    .index-chart-line,
    .index-currency-symbol,
    .index-graffiti,
    .index-ledger-decoration,
    .index-network-container,
    .index-currency-container,
    .index-shield-decoration {
        display: none !important;
    }

    /* Simplify carousel caption */
    .carousel-caption {
        background: rgba(0, 0, 0, 0.5);
        backdrop-filter: none;
        padding: 20px 10px;
    }

    /* Reduce hero pill */
    .index-hero-pill {
        font-size: 10px;
        padding: 5px 15px;
        margin-bottom: 15px;
    }

    /* Simplify image frame hover */
    .index-image-frame:hover {
        transform: translateY(-5px) scale(1.01);
    }

    /* Reduce feature box hover effects */
    .feature-box:hover {
        transform: translateY(-6px) scale(1.01);
    }

    /* Simplify percentage circles */
    .index-percentage-circle {
        width: 40px;
        height: 40px;
        font-size: 10px;
        top: 10px;
        right: 10px;
    }

    /* Reduce service button scaling */
    .service-btn:hover {
        transform: scale(1.03);
    }

    /* Simplify project item hover */
    .project-item:hover {
        transform: translateY(-5px) scale(1.02);
    }

    /* Reduce map frame hover */
    .index-map-frame:hover {
        transform: translateY(-5px);
    }

    /* Simplify form input focus */
    .form-floating input:focus,
    .form-floating textarea:focus {
        transform: scale(1.01);
    }

    /* Reduce button hover effects */
    .form-floating + .col-12 .btn-primary:hover {
        transform: scale(1.05);
    }
}

/* Small Mobile (575px and below) */
@media (max-width: 575px) {
    /* Further reduce animations */
    .index-hero-pill {
        font-size: 9px;
        padding: 4px 12px;
    }

    /* Minimal hover effects */
    .feature-box:hover,
    .project-item:hover,
    .index-map-frame:hover {
        transform: translateY(-3px);
    }

    /* Smaller percentage circles */
    .index-percentage-circle {
        width: 35px;
        height: 35px;
        font-size: 9px;
    }

    /* Reduce tab hover effects */
    .nav-tabs .nav-link:hover {
        transform: scale(1.02);
    }

    /* Simplify service button */
    .service-btn:hover {
        transform: scale(1.02);
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Ensure relative positioning for sections */
.container-xxl.feature,
.service-section,
.projects-section,
.container-xxl.py-5 {
    position: relative;
}

/* Smooth transitions for all interactive elements */
a, button, .btn {
    transition: all 0.3s ease;
}

/* Prevent decorative elements from blocking interactions */
.index-decoration-layer *,
.index-network-container *,
.index-currency-container *,
.index-shield-decoration,
.index-ledger-decoration {
    pointer-events: none;
}

/* Enhanced smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Performance optimization for animations */
.index-circle,
.index-growth-arrow,
.index-chart-line,
.index-currency-symbol,
.index-graffiti,
.index-network-node {
    will-change: transform;
}
