* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}


body {
    background: #063911;
    color: #eaf7ee;
    line-height: 1.6;
}

nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 35px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

nav h1 {
    color: #fed4e1;
    font-size: 1.8rem;
    letter-spacing: 2px;
}

nav ul {
    display: flex;
    gap: 20px;
    list-style: none;
}

nav ul li a {
    text-decoration: none;
    color: #eaf7ee;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #fccae5;
}

.hero {
    height: 120vh;
    background: linear-gradient(
        rgba(0, 0, 0, 0.493),
        rgba(0, 0, 0, 0.614)
    ),
    url('hero.png');
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-family: 'Georgia';
    font-size: 4rem;
    color: #b9f6ca;
}

.hero p {
    max-width: 700px;
    margin-top: 15px;
    font-size: 1.2rem;
    color: #eaf7ee;
}

.hero button {
    font-size:25px;
    font-family: 'Times new roman';
    margin-top: 25px;
    padding: 15px 30px;
    border: none;
    background: #012f14;
    color: rgba(255, 255, 255, 0.785);
    cursor: pointer;
    border-radius: 30px;
    transition: 0.3s;
}

.hero button:hover {
    background: #05ec62;
    color: #071a10;
}


section {
    padding: 80px 20px;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #7dffb2;
    margin-bottom: 40px;
}


.story {
    background: #125321;
}

.story p {
    max-width: 900px;
    margin: 15px auto;
    text-align: center;
    font-size: 1.1rem;
}


.mission {
    background: #071a10;
}

.mission-box {
    max-width: 900px;
    margin: auto;
    text-align: center;
    font-size: 1.1rem;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
}

.card {
    background: rgba(255,255,255,0.05);
    padding: 25px;
    border-radius: 15px;
    transition: 0.3s;
    border: 1px solid rgba(125,255,178,0.2);
}

.card:hover {
    transform: translateY(-5px);
    border-color: #7dffb2;
}

.card h3 {
    color: #b9f6ca;
    margin-bottom: 10px;
}

.card p {
    font-size: 0.95rem;
    color: #dff7e5;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 30px;
    background: #000;
    color: #7dffb2;
}
