:root {
    --bs-primary: #3b82f6;
    /* Tech Blue */
    --bs-primary-rgb: 59, 130, 246;
    --bs-body-bg: #f8f9fa;
}

body {
    font-family: 'Inter', sans-serif;
}

/* Card Image Fix */
.card-img-top {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

/* Hover Lift Effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Floating WhatsApp */
.fixed {
    position: fixed !important;
}

.bottom-8 {
    bottom: 2rem !important;
}

.right-8 {
    right: 2rem !important;
}

.left-8 {
    left: 2rem !important;
}

.z-50 {
    z-index: 50 !important;
}

.w-14 {
    width: 3.5rem;
}

.h-14 {
    height: 3.5rem;
}

.w-12 {
    width: 3rem;
}

.h-12 {
    height: 3rem;
}