body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #0F172A;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism */
.glass {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* Bento Card Hover Effect */
.bento-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E31E24;
    border-radius: 10px;
}

/* Navigation Links Animation */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #E31E24;
    transition: all 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Philanthropist Table */
#philanthropist-table-body tr {
    transition: all 0.3s ease;
}

#philanthropist-table-body tr:hover {
    background: rgba(238, 44, 0, 0.02);
    cursor: pointer;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.status-received {
    background: #f3f4f6;
    color: #6b7280;
}

.status-repair {
    background: #fff7ed;
    color: #f97316;
}

.status-delivered {
    background: #ecfdf5;
    color: #10b981;
}

/* Timeline */
.timeline-dot {
    position: absolute;
    left: -9px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: white;
    border: 2px solid #EE2C2C;
    z-index: 1;
}

.timeline-dot.active {
    background: #EE2C2C;
    box-shadow: 0 0 0 4px rgba(238, 44, 44, 0.1);
}

/* Payment Tabs */
.payment-tab.active {
    background: white;
    color: #EE2C2C;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Line Clamping for multi-line text truncation */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Transitions for views */
#home-view,
#partners-view {
    transition: opacity 0.5s ease-in-out;
}