/* HERO SECTION */

.hero-section{
    background:linear-gradient(135deg,#111827,#1f2937);
    color:#fff;
    min-height:90vh;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.hero-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(40,167,69,0.08);
    border-radius:50%;
    top:-150px;
    right:-150px;
}

.hero-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
    width:100%;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:25px;
    font-weight:700;
}

.hero-content p{
    font-size:20px;
    color:#d1d5db;
    margin-bottom:35px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-secondary{
    border:2px solid #fff;
    color:#fff;
}

.btn-secondary:hover{
    background:#fff;
    color:#111827;
}