body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
}

/* HERO BACKGROUND */

.hero {
    height: 100vh;
    background-image: url("Picture/BG.png"); /* your image */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* LOGO */

.logo {
    position: absolute;
    top: 20px;
    left: 25px;
    width: 70px;
}

.logo img {
    width: 100%;
}

/* NAVIGATION */

.nav {
    display: flex;
    justify-content: center;
    padding-top: 25px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
    background: rgba(0,0,0,0.4);
    padding: 10px 25px;
    border-radius: 6px;
}

.nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    transition: 0.3s;
}

.nav a:hover,
#active {
    color: #00cc33;
}

/* EXPLORE BUTTON */

.explore-btn {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #00cc33;
    color: white;
    padding: 12px 22px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 3px;
}

/* LEFT TEXT */

.left-text {
    position: absolute;
    top: 120px;
    left: 50px;
    max-width: 420px;
}

.left-text h1 {
    font-size: 60px;
    line-height: 1.1;
}

.green {
    color: #00cc33;
}

.left-text p {
    margin-top: 20px;
    background: rgba(0,0,0,0.6);
    padding: 12px;
    font-size: 15px;
}

/* RIGHT FEATURE CARD */

.feature-card {
    position: absolute;
    right: 60px;
    top: 180px;
    width: 340px;
    background: rgba(0,0,0,0.6);
    padding: 25px;
    border-radius: 6px;
    backdrop-filter: blur(5px);
}

.feature-card h3 {
    color: #9cff57;
    margin-bottom: 5px;
}

.feature-card p {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}