:root {
            --primary: #2D3748;
            --secondary: #4A5568;
            --accent: #ED8936;
            --bg: #FAFAFA;
            --text: #1A202C;
        }
        
        body {
            font-family: 'Source Sans Pro', sans-serif;
            background-color: var(--bg);
            color: var(--text);
        }
        
        .font-display { font-family: 'Inter', sans-serif; }
        .font-mono { font-family: 'JetBrains Mono', monospace; }
        
        .nav-blur {
            background: rgba(250, 250, 250, 0.95);
            backdrop-filter: blur(10px);
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
        }
        .img-about img{
            width: 100%;
            height: auto;
            border-radius: 8px;
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }
        
        .team-card {
            position: relative;
            overflow: hidden;
        }
        
        .team-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(transparent, rgba(0,0,0,0.8));
            color: white;
            padding: 2rem;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .team-card:hover .team-overlay {
            transform: translateY(0);
        }

#hero-carousel {
    height: 500px; /* choose the height you want */
}

#hero-carousel .splide__track,
#hero-carousel .splide__list,
#hero-carousel .splide__slide {
    height: 100%;
}

#hero-carousel .splide__slide img {
    width: 100%;
    height: 100%;
    display: block;
}