File size: 955 Bytes
0a1d0f6
 
 
 
111edc5
0a1d0f6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
111edc5
 
0a1d0f6
 
 
111edc5
 
0a1d0f6
 
111edc5
 
0a1d0f6
 
 
111edc5
 
0a1d0f6
 
111edc5
0a1d0f6
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
}

/* Helper Classes */
.section-padding {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

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

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

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

::-webkit-scrollbar-track {
    background: #1f2937;
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4338ca;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-content {
        padding-top: 4rem;
        padding-bottom: 6rem;
    }
    
    .showcase-item {
        margin-bottom: 3rem;
    }
}