* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    background: #101010;
    color: white;
    font-family: Arial, sans-serif;
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 40px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0, 0, 0, 0.7);

    backdrop-filter: blur(15px);

    z-index: 1000;
}

.logo {
    font-size: 28px;
    font-weight: bold;
}

.links {
    display: flex;
    gap: 30px;
}

.links a {
    color: white;
    text-decoration: none;
    transition: 0.2s;
}

.links a:hover {
    color: #7cc4ff;
}

.hero {
    height: 100vh;

    background-image: url("/images/hero.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-overlay {

    text-align: center;

    background: rgba(0, 0, 0, 0.45);

    padding: 50px;

    border-radius: 24px;

    backdrop-filter: blur(20px);
}

.hero h1 {
    font-size: 72px;
}

.hero p {
    margin-top: 20px;
    font-size: 24px;
}

.buttons {
    margin-top: 35px;
}

.buttons button,
.buttons a {

    padding: 16px 32px;

    border: none;

    border-radius: 999px;

    background: #4ea9ff;

    color: white;

    text-decoration: none;

    cursor: pointer;

    font-size: 18px;

    margin: 0 10px;
}

.stats {

    display: flex;

    justify-content: center;

    gap: 30px;

    padding: 80px;
}

.stat-card {

    background: #181818;

    padding: 40px;

    border-radius: 20px;

    min-width: 220px;

    text-align: center;
}

.stat-card h2 {
    font-size: 48px;
}

.section {

    padding: 100px 50px;

    text-align: center;
}

.cards {

    margin-top: 50px;

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;
}

.card {

    width: 300px;

    background: #181818;

    padding: 30px;

    border-radius: 20px;
}

.gallery {

    margin-top: 50px;

    display: flex;

    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

.gallery img {

    width: 350px;

    height: 220px;

    object-fit: cover;

    border-radius: 18px;
}

footer {

    background: #080808;

    padding: 40px;

    text-align: center;
}