body, html {
    height: 100%;
    margin: 0;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

/* Navbar */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: white;
    transition: background-color 0.3s, box-shadow 0.3s;
    z-index: 10;
}

.navbar.navbar-scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-nav {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-item {
    margin: 0 20px;
}

.navbar-brand img {
    height: 40px;
}

/* Hero Section */
.hero-section {
    position: relative;
}

.hero-bg {
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    z-index: 2;
    position: relative;
}

/* Stat box */
.stat-box {
    background-color: rgba(255, 255, 255, 0.25);
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    color: white;
    transition: transform 0.3s ease-in-out;
}

.stat-box:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
}
