/* css/index.css */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Arial, Helvetica, sans-serif;
}

body{
    background:#000;
    color:white;
}

/* NAVBAR */

.navbar{
    width:100%;
    height:90px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:0 80px;

    background:#000;

    border-bottom:1px solid #161616;

    position:fixed;
    top:0;
    z-index:999;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:14px;
}

.logo{
    width:45px;
    height:45px;
    object-fit:cover;
    border-radius:10px;
}

.logo-area h2{
    color:#14a800;
    font-size:40px;
    font-weight:900;
}

.nav-links{
    display:flex;
    align-items:center;
    gap:40px;
}

.nav-links a{
    color:white;
    text-decoration:none;
    font-size:18px;
    transition:0.3s;
}

.nav-links a:hover{
    color:#14a800;
}

.signup-btn{
    background:#14a800;
    padding:14px 30px;
    border-radius:14px;
    font-weight:bold;
}

.signup-btn:hover{
    background:#0d6601;
    color: #000;
}

/* HERO */

.hero-section{
    width:100%;
    min-height:100vh;

    background:
    linear-gradient(
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.85)),
    url('../images/hire-bg.jpeg');

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center; 

    padding:160px 100px 100px;

    position:relative;

    transition:0.5s;
}

.overlay{
    position:absolute;
    inset:0;
}

.hero-content{
    max-width:850px;
    position:relative;
    z-index:2;
}

.hero-badge{
    display:inline-block;

    padding:14px 24px;

    border-radius:999px;

    background:#103c12;

    border:1px solid #14a800;

    color:#14a800;

    font-weight:700;

    margin-bottom:30px;
}

.hero-content h1{
    font-size:88px;
    line-height:1.05;

    margin-bottom:30px;

    font-weight:900;
}

.hero-content p{
    font-size:24px;
    line-height:1.7;

    color:#d2d2d2;

    margin-bottom:40px;
}

/* TOGGLE */

.mode-toggle{
    display:flex;
    gap:20px;
    margin-bottom:35px;
}

.toggle-btn{
    width:220px;
    height:65px;

    border:none;

    border-radius:18px;

    background:#151515;

    color:white;

    font-size:18px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s;
}

.toggle-btn.active{
    background:#14a800;
}

/* SEARCH */

.search-box{
    width:100%;

    display:flex;
    gap:20px;

    margin-bottom:35px;
}

.search-box input{
    flex:1;

    height:75px;

    border:none;

    border-radius:20px;

    padding:0 30px;

    background:#111;

    color:white;

    font-size:18px;
}

.search-box button{
    width:220px;

    border:none;

    border-radius:20px;

    background:#14a800;

    color:white;

    font-size:20px;
    font-weight:700;

    cursor:pointer;
}

/* TAGS */

.hero-tags{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.hero-tags span{
    padding:12px 20px;

    background:#151515;

    border:1px solid #242424;

    border-radius:999px;

    color:#d0d0d0;
}

/* FEATURES */

.features-section{
    padding:120px 100px;
}

.section-title{
    text-align:center;
    margin-bottom:70px;
}

.section-title span{
    color:#14a800;
    font-weight:700;
}

.section-title h2{
    font-size:60px;
    margin-top:15px;
}

.features-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
    gap:30px;
}

.feature-card{
    background:#111;

    border:1px solid #202020;

    border-radius:30px;

    padding:50px 40px;

    transition:0.3s;
}

.feature-card:hover{
    transform:translateY(-10px);
    border-color:#14a800;
}

.feature-card i{
    font-size:50px;
    color:#14a800;
    margin-bottom:25px;
}

.feature-card h3{
    font-size:32px;
    margin-bottom:20px;
}

.feature-card p{
    color:#c9c9c9;
    line-height:1.7;
}

/* STATS */

.stats-section{
    padding:0 100px 120px;

    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:25px;
}

.stat-card{
    background:#111;

    border-radius:25px;

    padding:50px;

    text-align:center;

    border:1px solid #202020;
}

.stat-card h2{
    font-size:60px;
    color:#14a800;
    margin-bottom:15px;
}

.stat-card p{
    font-size:22px;
}

/* CTA */

.cta-section{
    padding:140px 100px;

    text-align:center;

    background:#0c0c0c;
}

.cta-section h2{
    font-size:70px;
    margin-bottom:30px;
}

.cta-section p{
    font-size:24px;
    color:#cfcfcf;

    max-width:900px;
    margin:auto auto 40px;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    width:260px;
    height:75px;

    border-radius:20px;

    background:#14a800;

    color:white;

    text-decoration:none;

    font-size:22px;
    font-weight:700;
}

/* FOOTER */

.footer{
    padding:50px;
    text-align:center;
    border-top:1px solid #161616;
}

.footer h2{
    color:#14a800;
    margin-bottom:15px;
}

/* MOBILE */

@media(max-width:900px){

    .navbar{
        padding:0 20px;
    }

    .hero-section{
        padding:150px 25px 100px;
    }

    .hero-content h1{
        font-size:55px;
    }

    .hero-content p{
        font-size:18px;
    }

    .mode-toggle{
        flex-direction:column;
    }

    .search-box{
        flex-direction:column;
    }

    .search-box button{
        width:100%;
        height:70px;
    }

    .features-section,
    .stats-section,
    .cta-section{
        padding-left:25px;
        padding-right:25px;
    }

    .section-title h2{
        font-size:42px;
    }

    .cta-section h2{
        font-size:45px;
    }

}
/* =========================================
   ABOUT PAGE
========================================= */

.about-wrapper{
    padding:140px 100px 100px;
    background:#0b0b0b;
    min-height:100vh;
}

/* HERO */

.about-hero{
    max-width:900px;
    margin-bottom:90px;
}

.about-badge{
    display:inline-block;

    padding:14px 24px;

    border-radius:999px;

    background:#103c12;

    border:1px solid #14a800;

    color:#14a800;

    font-weight:700;

    margin-bottom:30px;
}

.about-hero h1{
    font-size:78px;
    line-height:1.05;

    margin-bottom:30px;

    font-weight:900;
}

.about-hero p{
    font-size:22px;
    line-height:1.8;

    color:#cfcfcf;

    max-width:850px;
}

/* ABOUT GRID */

.about-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;

    margin-bottom:110px;
}

.about-card{
    background:#111;

    border:1px solid #202020;

    border-radius:30px;

    padding:45px;

    transition:0.3s;
}

.about-card:hover{
    transform:translateY(-10px);
    border-color:#14a800;
}

.about-icon{
    width:80px;
    height:80px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:22px;

    background:#103c12;

    color:#14a800;

    font-size:34px;

    margin-bottom:28px;
}

.about-card h3{
    font-size:34px;
    margin-bottom:20px;
}

.about-card p{
    color:#c9c9c9;
    line-height:1.8;
    font-size:17px;
}

/* TEAM */

.team-wrapper h2{
    font-size:58px;
    text-align:center;
    margin-bottom:60px;
}

.team-grid{
    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(250px,1fr));

    gap:30px;
}

.team-card{
    background:#111;

    border:1px solid #202020;

    border-radius:30px;

    padding:40px 30px;

    text-align:center;

    transition:0.3s;
}

.team-card:hover{
    transform:translateY(-10px);
    border-color:#14a800;
}

.team-card img{
    width:140px;
    height:140px;

    object-fit:cover;

    border-radius:50%;

    border:5px solid #14a800;

    margin-bottom:25px;
}

.team-card h4{
    font-size:26px;
    margin-bottom:12px;
}

.team-card span{
    color:#14a800;
    font-weight:700;
}

/* RESPONSIVE */

@media(max-width:900px){

    .about-wrapper{
        padding:140px 25px 80px;
    }

    .about-hero h1{
        font-size:50px;
    }

    .about-hero p{
        font-size:18px;
    }

    .team-wrapper h2{
        font-size:42px;
    }

}
