@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{
    background:#0b0f0c;
    color:white;
    scroll-behavior:smooth;
}

/* HERO */

.hero{
    position:relative;

    width:100%;

    height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    background:
    linear-gradient(rgba(0,0,0,0.65),
    rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;

    background-position:center;

}

/* OVERLAY */

.overlay{
    position:absolute;
    inset:0;

    background:
    radial-gradient(circle at center,
    transparent 0%,
    rgba(0,0,0,0.5) 100%);
}

/* NAVBAR */

.navbar{
    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    display:flex;

    align-items:center;

    justify-content:flex-start;

    gap:60px;

    padding:18px 60px;

    transition:0.4s ease;
}

  .logo-img{
    width:90px;

    height:auto;

    object-fit:contain;

    display:block;
}

.nav-links{
    display:flex;

    gap:45px;

    align-items:center;
}

.nav-links a{
    text-decoration:none;

    color:white;

    font-size:1rem;

    font-weight:500;

    transition:0.3s;
}

.nav-links a:hover{
    color:#9be15d;
}

/* HERO CONTENT */

.hero-content{
    position:relative;

    z-index:10;

    height:100vh;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:0 20px;

    margin-top:40px;
}

.hero-title{
    font-size:5rem;
    font-weight:700;

    max-width:900px;

    line-height:1.1;

    margin-bottom:25px;

    animation:fadeUp 1.2s ease;
}

.hero-text{
    max-width:750px;

    font-size:1.2rem;
    line-height:1.8;

    color:#d9d9d9;

    margin-bottom:40px;

    animation:fadeUp 1.6s ease;
}

/* BUTTONS */

.hero-buttons{
    display:flex;
    gap:20px;

    animation:fadeUp 2s ease;
}

.btn-green{
    text-decoration:none;
display:inline-block;
    padding:15px 35px;

    border:none;
    border-radius:50px;

    background:#3d8b5d;
    color:white;

    cursor:pointer;

    font-size:1rem;
    font-weight:500;

    transition:0.3s;
}

.btn-green:hover{
    transform:translateY(-3px);

    background:#4fa56f;
}

.btn-outline{
    text-decoration:none;
display:inline-block;
    padding:15px 35px;

    border-radius:50px;

    border:1px solid rgba(255,255,255,0.4);

    background:transparent;

    color:white;

    cursor:pointer;

    transition:0.3s;
}

.btn-outline:hover{
    background:white;
    color:black;
}

/* ANIMATION */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* MOBILE */

@media(max-width:900px){

    .navbar{
        padding:25px;
    }

    .nav-links{
        display:none;
    }

    .hero-title{
        font-size:3rem;
    }

    .hero-text{
        font-size:1rem;
    }

    .hero-buttons{
        flex-direction:column;
    }
}
/* ABOUT */

.about{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:60px;

    align-items:center;

    padding:120px 10%;

    background:#101512;
}

.about-image img{
    width:100%;
    border-radius:25px;

    box-shadow:0 10px 40px rgba(0,0,0,0.4);
}

.about-content h2{
    font-size:3rem;

    margin-bottom:25px;

    color:#9be15d;
}

.about-content p{
    color:#d5d5d5;

    line-height:1.9;

    margin-bottom:20px;

    font-size:1.05rem;
}

/* VISION */

.vision-section{
    display:grid;
    grid-template-columns:1fr 1fr;

    gap:40px;

    padding:100px 10%;

    background:#0b0f0c;
}

.vision-card{
    background:rgba(255,255,255,0.04);

    border:1px solid rgba(255,255,255,0.08);

    padding:50px;

    border-radius:25px;

    backdrop-filter:blur(10px);
}

.vision-card h2{
    color:#9be15d;

    margin-bottom:20px;

    font-size:2rem;
}

.vision-card p{
    color:#d7d7d7;

    line-height:1.8;
}

/* INNOVATION */

.innovation{
    text-align:center;

    padding:120px 15%;

    background:
    linear-gradient(rgba(0,0,0,0.75),
    rgba(0,0,0,0.75)),
    url('https://images.unsplash.com/photo-1523741543316-beb7fc7023d8?q=80&w=1974&auto=format&fit=crop');

    background-size:cover;
    background-position:center;
}

.innovation h2{
    font-size:3rem;

    margin-bottom:30px;

    color:#9be15d;
}

.innovation p{
    font-size:1.2rem;

    line-height:2;

    color:#e4e4e4;

    max-width:900px;

    margin:auto;
}

/* VALUES */

.values{
    padding:120px 10%;

    background:#101512;

    text-align:center;
}

.values h2{
    font-size:3rem;

    margin-bottom:60px;

    color:#9be15d;
}

.values-grid{
    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));

    gap:25px;
}

.value-card{
    background:rgba(255,255,255,0.05);

    padding:40px;

    border-radius:20px;

    border:1px solid rgba(255,255,255,0.08);

    transition:0.3s;

    font-size:1.1rem;
}

.value-card:hover{
    transform:translateY(-8px);

    background:rgba(61,139,93,0.15);
}

/* CONTACT */

.contact{
    padding:120px 10%;

    text-align:center;

    background:#0b0f0c;
}

.contact h2{
    font-size:3rem;

    margin-bottom:30px;

    color:#9be15d;
}

.contact p{
    margin-bottom:15px;

    color:#d5d5d5;

    font-size:1.1rem;
}

.contact-buttons{
    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:40px;
}

/* MOBILE */

@media(max-width:900px){

    .about{
        grid-template-columns:1fr;
    }

    .vision-section{
        grid-template-columns:1fr;
    }

    .about-content h2,
    .innovation h2,
    .values h2,
    .contact h2{
        font-size:2.2rem;
    }

    .innovation{
        padding:100px 8%;
    }

    .contact-buttons{
        flex-direction:column;
    }
}/* NAVBAR ACTIVE */

.navbar.active{
    background:rgba(10,15,12,0.75);

    backdrop-filter:blur(12px);

    box-shadow:0 5px 25px rgba(0,0,0,0.25);
}

/* FOOTER */

.footer{
    background:#070a08;

    text-align:center;

    padding:80px 10%;

    border-top:1px solid rgba(255,255,255,0.08);
}

.footer-logo{
    width:180px;

    margin:auto;

    margin-bottom:25px;
}

.footer h3{
    font-size:2rem;

    margin-bottom:15px;

    color:#9be15d;
}

.footer p{
    color:#cfcfcf;

    margin-bottom:10px;
}

.footer-contact{
    margin-top:30px;
    margin-bottom:30px;
}

.copyright{
    opacity:0.6;

    font-size:0.9rem;
}

/* WHATSAPP */

.whatsapp{
    position:fixed;

    bottom:30px;
    right:30px;

    z-index:999;

    background:#25D366;

    color:white;

    padding:16px 24px;

    border-radius:50px;

    text-decoration:none;

    font-weight:600;

    box-shadow:0 0 25px rgba(37,211,102,0.45);

    transition:0.3s;
}

.whatsapp:hover{
    transform:translateY(-5px) scale(1.05);
}

/* SCROLL ANIMATION */

.fade-section{
    opacity:0;

    transform:translateY(50px);

    transition:all 1s ease;
}

.fade-section.visible{
    opacity:1;

    transform:translateY(0);
}