/* ===== Layout common extra CSS: block 1 ===== */
.setcontactcolor{
            background-color: #34a853;
            color: #fff;
        }
        .sandy-v2-social-icons a {
    transition: opacity 0.2s ease-in-out;
}
.sandy-v2-social-icons a:hover {
    opacity: 0.8; /* Subtle fade on hover */
}

/* Initial state: Hidden before scrolling into view */
.addanimation {
    opacity: 0;
}

/* Triggered state */
.addanimation.active {
    animation: panMove 1.8s ease forwards, fadeReveal 1.5s ease forwards;
}

@keyframes panMove {
    0% {
        opacity: 0;
        transform: translateX(-120px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeReveal {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
/* Initial hidden state for list items */
.avx-list-box .avx-list-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

/* Revealed state when the list comes into view */
.avx-list-box.reveal-active .avx-list-item {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays so they appear one by one */
.avx-list-box.reveal-active .avx-list-item:nth-child(1) { transition-delay: 0.1s; }
.avx-list-box.reveal-active .avx-list-item:nth-child(2) { transition-delay: 0.25s; }
.avx-list-box.reveal-active .avx-list-item:nth-child(3) { transition-delay: 0.4s; }
.avx-list-box.reveal-active .avx-list-item:nth-child(4) { transition-delay: 0.55s; }
.avx-list-box.reveal-active .avx-list-item:nth-child(5) { transition-delay: 0.7s; }

/* ===== Layout common extra CSS: block 2 ===== */
/* Toast Container */
    .network-toast {
        position: fixed;
        top: -100px; /* Hidden above screen initially */
        left: 50%;
        transform: translateX(-50%);
        z-index: 99999;
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 28px;
        border-radius: 50px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.05);
        font-family: 'Inter', system-ui, -apple-system, sans-serif;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    /* Active Visibility Class */
    .network-toast.show {
        top: 24px;
    }

    /* THEME 1: Strong Connection (SaaS Teal/Green) */
    .toast-strong {
        background-color: rgba(240, 253, 250, 0.95);
        border: 1px solid #67e8f9;
        color: #0f766e;
    }

    /* THEME 2: Weak Connection (Premium Amber/Yellow) */
    .toast-weak {
        background-color: rgba(255, 251, 235, 0.95);
        border: 1px solid #fde047;
        color: #b45309;
    }

    /* THEME 3: Offline Connection (Modern Crimson/Red) */
    .toast-offline {
        background-color: rgba(254, 242, 242, 0.95);
        border: 1px solid #fecaca;
        color: #b91c1c;
    }

    .network-icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    /* OPTIONAL: Developer Test Dock (Remove this block before moving to production) */
    .dev-test-dock {
        position: fixed;
        bottom: 15px;
        right: 15px;
        background: #1e293b;
        padding: 10px;
        border-radius: 8px;
        z-index: 99999;
        display: flex;
        gap: 8px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    .dev-test-dock span { color: #94a3b8; font-size: 11px; font-family: sans-serif; align-self: center; margin-right: 5px;}
    .btn-test { border: none; padding: 6px 12px; font-size: 11px; font-weight: bold; border-radius: 4px; cursor: pointer; color: white;}
    .btn-strong { background: #10b981; }
    .btn-weak { background: #f59e0b; }
    .btn-offline { background: #ef4444; }
