body {
    font-family: 'Inter', sans-serif;
    background-color: #F0F2F0;
    color: #0D140D;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Tab content logic removed as we are using separate pages, 
   but keeping generic classes if needed for future use */
.tab-content {
    /* display: none; */
    /* No longer needed to hide by default since pages isolate content */
}

.tab-content.active {
    display: block;
}

.sidebar-btn.active {
    background-color: #BAFF29;
    color: #0D140D;
    font-weight: 900;
}

.sidebar-btn i,
.service-card i,
.value-icon-box i {
    color: #0D140D;
    transition: color 0.2s ease;
}

.sidebar-btn:not(.active):hover i,
.service-card:hover i,
.value-card:hover i {
    color: #BAFF29 !important;
}

#mobile-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Horizontal Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-scroll {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scroll 20s linear infinite;
}

.animate-scroll:hover {
    animation-play-state: paused;
}

.mission-hero {
    background: linear-gradient(135deg, #0D140D 0%, #1a2e1a 100%);
    border-radius: 3rem;
}

.post-card {
    background: white;
    border-radius: 2rem;
    overflow: hidden;
    transition: transform 0.2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
}

/* Admin Specific Styles */
.admin-stat-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1.5rem;
    border: 1px solid #e2e8f0;
}

.admin-action-btn {
    transition: all 0.2s;
}

.admin-action-btn:hover {
    transform: scale(1.05);
}