/**
 * 2026 Ecom Experts.
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Academic Free License (AFL 3.0)
 * that is bundled with this package in the file LICENSE.txt.
 * It is also available through the world-wide-web at this URL:
 * http://opensource.org/licenses/afl-3.0.php
 *
 * @author    Ecom Experts <ecomyseo@gmail.com>
 * @copyright 2026 Ecom Experts
 * @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
 */

.omnimind-bullet-points-container {
    margin: 1.5rem 0;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(230, 230, 230, 0.5);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.omnimind-bullet-points-container:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
}

.omnimind-bullet-points-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.omnimind-bullet-point-item {
    margin-bottom: 1rem;
    display: flex;
    align-items: flex-start;
    animation: fadeInSlide 0.5s ease forwards;
    opacity: 0;
}

.omnimind-bullet-point-item:last-child {
    margin-bottom: 0;
}

.omnimind-bullet-icon {
    flex-shrink: 0;
    margin-top: 2px;
    margin-right: 12px;
    color: #10b981;
    /* Premium Emerald Green */
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.omnimind-bullet-point-item:hover .omnimind-bullet-icon {
    transform: scale(1.1) rotate(5deg);
}

.omnimind-bullet-content {
    color: #374151;
    /* Cool Gray 700 */
    line-height: 1.6;
    font-size: 0.95rem;
    font-weight: 500;
}

.omnimind-bullet-content strong,
.omnimind-bullet-content b {
    color: #111827;
    /* Gray 900 */
    font-weight: 700;
    display: inline-block;
    margin-bottom: 2px;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Staggered animation for items */
.omnimind-bullet-point-item:nth-child(1) {
    animation-delay: 0.1s;
}

.omnimind-bullet-point-item:nth-child(2) {
    animation-delay: 0.2s;
}

.omnimind-bullet-point-item:nth-child(3) {
    animation-delay: 0.3s;
}

.omnimind-bullet-point-item:nth-child(4) {
    animation-delay: 0.4s;
}

.omnimind-bullet-point-item:nth-child(5) {
    animation-delay: 0.5s;
}

.omnimind-bullet-point-item:nth-child(n+6) {
    animation-delay: 0.6s;
}

/* Responsive adjustments */
@media (max-width: 767px) {
    .omnimind-bullet-points-container {
        padding: 1rem;
    }

    .omnimind-bullet-content {
        font-size: 0.9rem;
    }
}