/* ============================================================
   Tricolor Sidebar Gradient & Animated Circle Cards Styling
============================================================ */

/* 1. Tricolor Sidebar Gradient effect (Saffron, White, Green) */
.aside-menu {
    background: linear-gradient(to bottom, #FF9933 0%, #FFFFFF 40%, #138808 100%) !important;
}

/* 2. Tricolor Gradient Header effect (For Cards or Tables) */
.tricolor-header {
    background: linear-gradient(90deg, #FF9933 0%, #FFFFFF 50%, #138808 100%) !important;
    color: #000 !important;
    text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.6);
}
.tricolor-header .btn-dark {
    background-color: #212529;
    color: #fff;
}

/* 3. Animated Circle Cards Styles */
.animated-circle-card {
    border-radius: 15px;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: none;
    overflow: hidden;
    background: #ffffff;
}
.animated-circle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* 4. Circular Icon Box with Pulse Animation */
.circle-icon-box {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
    color: #fff;
    font-size: 28px;
    position: relative;
    animation: pulse-animation 2s infinite;
}

/* 5. Pulse Keyframe Animation */
@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(0, 123, 255, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 123, 255, 0);
    }
}