@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

body {
    min-height: 100vh;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.37);
}

.bm-card {
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 1.25rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation-duration: 0.6s;
}

.bm-card.animate__animated {
    animation-duration: 0.6s;
}

.bm-card-item {
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.header-animate {
    animation-name: fadeInDown;
    animation-duration: 0.6s;
    animation-fill-mode: both;
}

.subtitle-animate {
    animation-name: fadeIn;
    animation-duration: 0.6s;
    animation-delay: 1s;
    animation-fill-mode: both;
}

.footer-animate {
    animation-name: fadeInUp;
    animation-duration: 0.6s;
    animation-delay: 0.7s;
    animation-fill-mode: both;
}

.bm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transition: left 0.5s;
}

.bm-card:hover {
    background: #ffffff;
    border-color: #d1d5db;
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .bm-card {
        padding: 1.5rem;
    }
}

.bm-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    height: 100%;
}

.bm-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.bm-icon i {
    color: white;
    font-size: 1.25rem;
}

@media (min-width: 768px) {
    .bm-icon {
        width: 3.5rem;
        height: 3.5rem;
    }

    .bm-icon i {
        font-size: 1.5rem;
    }
}

.bm-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
    .bm-title {
        font-size: 1.25rem;
    }
}

.bm-desc {
    font-size: 0.875rem;
    color: #4b5563;
    line-height: 1.625;
}

.icon-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.gradient-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (max-width: 768px) {
    .grid-cols-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .bm-card p {
        display: none;
    }
}
