@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

:root {
    --blue-600: #2563EB;
    --slate-900: #0F172A;
}

html {
    scroll-behavior: smooth;
    font-family: 'Outfit', sans-serif;
}

body {
    -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: #E2E8F0;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #CBD5E1;
}

/* Glassmorphism Classes */
.glass {
    background: rgba(255, 255, 255, 0.8) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(241, 245, 249, 0.8) !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05) !important;
}

/* Modern Range Slider Styling */
.slider-container {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 20px;
    background: #F1F5F9;
    outline: none;
    cursor: pointer;
}

.slider-container::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563EB;
    border: 6px solid #FFFFFF;
    box-shadow: 0 10px 15px -3px rgba(37, 99, 235, 0.3);
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.slider-container::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

/* Scroll Animations */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform, opacity;
}
.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Pie Chart Styling */
.pie-chart {
    position: relative;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: conic-gradient(#2563EB var(--percentage), #F1F5F9 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s ease;
}

.pie-chart::after {
    content: '';
    position: absolute;
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 50%;
}

/* Hover Effects */
.service-card:hover i {
    transform: scale(1.1) rotate(-5deg);
}

.mobile-nav-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#mobile-menu {
    box-shadow: -20px 0 60px -15px rgba(15, 23, 42, 0.2);
}