/* Custom styles */
html {
    scroll-behavior: smooth;
}

/* Mobile menu transition */
#mobile-menu {
    transition: all 0.3s ease;
}

/* Card hover effects */
.service-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

/* Statistics counter animation */
.stat-number {
    font-feature-settings: "tnum";
}

/* Image placeholder */
.img-placeholder {
    background: linear-gradient(135deg, #f6f9fc 0%, #e8f0f8 100%);
}

/* Admin panel styles */
.admin-sidebar-link {
    transition: all 0.2s ease;
}

.admin-sidebar-link:hover {
    background-color: #f0fdf4;
    color: #166534;
}

.admin-sidebar-link.active {
    background-color: #f0fdf4;
    color: #166534;
    border-right: 3px solid #166534;
}