/* Why Choose Section */
    .why-section {
       /*background: linear-gradient(180deg, var(--dark-bg) 0%, rgb(43, 0, 78) 100%);*/
       background-color: #000;
    background-image: radial-gradient(circle at 50% 50%, rgba(83, 70, 199, 0.5) 0%, rgba(20, 20, 40, 0.7) 50%, rgba(0, 0, 0, 1) 100%);
        padding: 100px 0;
        position: relative;
        overflow: hidden;
    }

    /* Animated Background Pattern */
    .why-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: 
            radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 80% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
            radial-gradient(circle at 50% 20%, rgba(236, 72, 153, 0.05) 0%, transparent 50%);
        animation: floatBackground 20s ease-in-out infinite;
    }

    @keyframes floatBackground {
        0%, 100% { transform: translate(0, 0) scale(1); }
        33% { transform: translate(-20px, -20px) scale(1.1); }
        66% { transform: translate(20px, -10px) scale(0.95); }
    }

    /* .section-title {
        font-family: 'Bebas Neue', cursive;
        font-size: clamp(2.5rem, 5vw, 4rem);
        text-align: center;
        margin-bottom: 4rem;
        background: linear-gradient(90deg, #8B5CF6, #A855F7, #EC4899);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        position: relative;
        z-index: 1;
        filter: drop-shadow(0 0 30px rgba(139, 92, 246, 0.5));
    } */

    /* Bento Grid Container */
    .bento-grid {
        display: grid;
        grid-template-columns: repeat(12, 1fr);
        grid-auto-rows: 120px;
        gap: 25px;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
        position: relative;
        z-index: 1;
    }

    /* Bento Items - Base Styles */
    .bento-item {
        background: linear-gradient(135deg, 
            rgba(139, 92, 246, 0.1) 0%, 
            rgba(168, 85, 247, 0.05) 100%);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(139, 92, 246, 0.2);
        border-radius: 30px;
        padding: 35px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    /* Animated Border Gradient */
    .bento-item::before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(45deg, #2A014C, #372263, #54018f, transparent);
        border-radius: 30px;
        opacity: 0;
        transition: opacity 0.3s ease;
        z-index: -1;
        animation: rotateBorder 4s linear infinite;
    }

    @keyframes rotateBorder {
        /* 0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); } */
    }

    .bento-item:hover::before {
        opacity: 1;
    }

    /* Inner Glow Effect */
    .bento-item::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle, 
            rgba(222, 208, 254, 0.2) 0%, 
            transparent 70%);
        transform: translate(-50%, -50%);
        opacity: 0;
        transition: opacity 0.3s ease;
        pointer-events: none;
    }

    .bento-item:hover::after {
        opacity: 1;
    }

    .bento-item:hover {
        transform: translateY(-10px) scale(1.02);
        border-color: rgba(139, 92, 246, 0.5);
        box-shadow: 
            0 20px 40px rgba(139, 92, 246, 0.3),
            0 0 60px rgba(139, 92, 246, 0.2),
            inset 0 0 30px rgba(139, 92, 246, 0.1);
    }

    /* Grid Positioning */
    .bento-item:nth-child(1) {
        grid-column: span 5;
        grid-row: span 2;
    }

    .bento-item:nth-child(2) {
        grid-column: span 4;
        grid-row: span 3;
    }

    .bento-item:nth-child(3) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .bento-item:nth-child(4) {
        grid-column: span 3;
        grid-row: span 2;
    }

    .bento-item:nth-child(5) {
        grid-column: span 5;
        grid-row: span 2;
    }

    .bento-item:nth-child(6) {
        grid-column: span 4;
        grid-row: span 2;
    }

    /* Feature Content */
    .feature-icon {
        font-size: 3rem;
        background: linear-gradient(45deg, white, var(--neon-purple));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 20px;
        filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
        animation: iconFloat 3s ease-in-out infinite;
    }

    @keyframes iconFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-10px); }
    }

    .bento-item:hover .feature-icon {
        animation-duration: 1s;
    }

    .feature-title {
        font-size: 1.4rem;
        font-weight: 700;
        margin-bottom: 15px;
        color: #fff;
        position: relative;
    }

    .feature-description {
        color: rgba(255, 255, 255, 0.7);
        line-height: 1.6;
        font-size: 0.95rem;
    }

    /* Special Large Item Styling */
    .bento-item:nth-child(1) .feature-icon,
    .bento-item:nth-child(2) .feature-icon {
        font-size: 4rem;
    }

    /* Floating Elements */
    .floating-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #8B5CF6, #4c194a);
        color: white;
        padding: 5px 15px;
        border-radius: 20px;
        font-size: 0.75rem;
        font-weight: 600;
        animation: pulse 2s ease-in-out infinite;
    }

    @keyframes pulse {
        0%, 100% { transform: scale(1); opacity: 0.9; }
        50% { transform: scale(1.05); opacity: 1; }
    }

    /* Stats Numbers */
    .stat-number {
        font-size: 2.5rem;
        font-weight: 900;
        background: linear-gradient(135deg, #ffffff, #ff5af9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
        font-family: 'Orbitron', sans-serif;
    }

    /* Animated Lines */
    .connection-lines {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        pointer-events: none;
        z-index: 0;
    }

    .connection-line {
        position: absolute;
        height: 1px;
        background: linear-gradient(90deg, 
            transparent, 
            rgba(139, 92, 246, 0.3), 
            transparent);
        transform-origin: left center;
        animation: drawLine 3s ease-in-out infinite;
    }

    @keyframes drawLine {
        0%, 100% { transform: scaleX(0); opacity: 0; }
        50% { transform: scaleX(1); opacity: 1; }
    }

    /* Responsive Design */
    @media (max-width: 992px) {
        .bento-grid {
            grid-template-columns: repeat(6, 1fr);
            grid-auto-rows: 150px;
        }

        .bento-item:nth-child(1),
        .bento-item:nth-child(2) {
            grid-column: span 3;
            grid-row: span 2;
        }

        .bento-item:nth-child(3),
        .bento-item:nth-child(4),
        .bento-item:nth-child(5),
        .bento-item:nth-child(6) {
            grid-column: span 3;
            grid-row: span 1;
        }
    }

    @media (max-width: 768px) {
        .bento-grid {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
            gap: 20px;
        }

        .bento-item {
            grid-column: span 1 !important;
            grid-row: span 1 !important;
            min-height: 200px;
        }

        .feature-icon {
            font-size: 2.5rem !important;
        }
    }

    /* Hover Wave Effect */
    @keyframes wave {
        0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
        100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
    }

    .bento-item .wave-effect {
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: linear-gradient(45deg, 
            transparent, 
            rgba(255, 255, 255, 0.1), 
            transparent);
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
        transition: none;
        pointer-events: none;
    }

    .bento-item:hover .wave-effect {
        animation: wave 0.6s ease;
    }
    
    
    

/* ---------------------------------bento modal----------- */
.zica-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.60);
  backdrop-filter: blur(8px);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

.zica-modal-box {
  background: rgba(255, 255, 255, 0.12);
  padding: 35px 40px;
  border-radius: 18px;
  max-width: 480px;
  width: 90%;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 0 25px rgba(255, 219, 88, 0.45);
  color: #fff;
  animation: modalPop 0.35s ease;
  position: relative;
}

@keyframes modalPop {
  0% { transform: scale(0.8); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-icon {
  font-size: 48px;
  margin-bottom: 15px;
  color: #ffcc33;
  text-shadow: 0 0 18px rgba(255, 204, 51, 0.8);
}

.zica-modal-box h2 {
  font-weight: 700;
  margin-bottom: 10px;
}

.zica-modal-box p {
  opacity: 0.9;
  line-height: 1.6;
}

.zica-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #fff;
  transition: 0.3s;
}
.zica-close:hover {
  color: #ffcc33;
}
