
    .open-btn{
    background:#28a745;
    color:#fff;
    border:none;
    padding:12px 25px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

.modal{
    display:none;
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.6);
    z-index:9999;
    overflow:auto;
}

.modal-content{
    background:#fff;
    width:90%;
    max-width:600px;
    margin:50px auto;
    padding:30px;
    border-radius:15px;
    position:relative;
}

.close-btn{
    position:absolute;
    right:20px;
    top:15px;
    font-size:30px;
    cursor:pointer;
    color:#333;
}

.form-group{
    margin-bottom:18px;
}

.form-group label{
    display:block;
    margin-bottom:6px;
    font-weight:600;
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    padding:12px;
    border:1px solid #ddd;
    border-radius:8px;
    box-sizing:border-box;
}

.btn-submit{
    width:100%;
    background:#28a745;
    color:#fff;
    border:none;
    padding:14px;
    border-radius:8px;
    cursor:pointer;
    font-size:16px;
}

    .hero{
    background: black;
  

    margin-bottom:15px;
    align-items: center;
}

.hero-box{
   
    padding: 30px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 30px;
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.hero-badge{
    display: inline-block;
    padding: 10px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,0.12);
    color: #fff;
    font-weight: 600;
    letter-spacing: 2px;
    font-size: 14px;
}

.hero-title{
    color: #fff;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
}

.hero-title span{
    color: #95d5b2;
}

.hero-sub{
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    line-height: 1.9;

    margin: auto;
}

.hero-tags{
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tag{
    background: rgba(255,255,255,0.10);
    color: #fff;
    padding: 12px 22px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.15);
    font-weight: 500;
}

.btn-outline-light:hover{
    color: #000;
}

@media (max-width:768px){
    .hero-box{
        padding: 40px 25px;
    }

    .hero-title{
        font-size: 2.4rem;
    }

    .hero-sub{
        font-size: 1rem;
    }
}
