* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7f7f7;
    color: #222;
}

/* NAVBAR */
.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    backdrop-filter: blur(10px);
    background: rgba(0,0,0,0.3);
    z-index: 100;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    color: white;
}

.nav-content nav a {
    margin: 0 12px;
    color: white;
    text-decoration: none;
    font-size: 14px;
}

.nav-content nav a:hover {
    color: #ff6a00;
}

.btn-primary {
    background: linear-gradient(135deg, #ff6a00, #ff9a3c);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* HERO */
.hero {
    position: relative;
    height: 85vh;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.4),
        rgba(0,0,0,0.6)
    );
}

.hero-content {
    position: absolute;
    bottom: 20%;
    color: white;
    z-index: 2;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
}

.hero-content p {
    opacity: 0.9;
}

/* GENESIS */
.genesis {
    display: flex;
    gap: 40px;
    padding: 80px 0;
}

.genesis-image img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
}

.highlight-box {
    margin-top: 20px;
    background: #ff6a00;
    color: white;
    padding: 15px;
    border-radius: 10px;
}

/* TEAM */
.team {
    padding: 80px 0;
}

.team-grid {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.team-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.team-card img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    margin-bottom: 10px;
}

/* SUSTAIN */
.sustain {
    display: flex;
    justify-content: space-between;
    padding: 80px 0;
}

.sustain-icons {
    display: flex;
    gap: 20px;
}

.icon-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
}

.icon-box img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

/* SAFETY */
.safety {
    background: #eaeaea;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 80px;
}

/* CTA */
.cta {
    background: #222;
    color: white;
    text-align: center;
    padding: 60px 0;
}

.cta button {
    margin-top: 20px;
    padding: 10px 20px;
    background: #ff6a00;
    border: none;
    color: white;
    border-radius: 20px;
    cursor: pointer;
}

/* RESPONSIVE */
@media(max-width: 768px) {
    .genesis,
    .sustain,
    .team-grid {
        flex-direction: column;
    }

    .nav-content nav {
        display: none;
    }
}