/* HERO BANNER CSS */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, sans-serif;
}

.hero-banner{
    width:100%;
    min-height:100vh;
    background:url('https://i.pinimg.com/1200x/0a/db/37/0adb3722e722b445d0c6efba40420823.jpg') center center/cover no-repeat;
    position:relative;
    overflow:hidden;
}

/* DARK OVERLAY */
.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    top:0;
    left:0;
}

.hero-container{
    position:relative;
    z-index:2;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
    padding:40px 20px;
    min-height:100vh;
}

/* LEFT SIDE */

.hero-left{
    width:58%;
    color:#fff;
}

.top-tag{
    color:#ffb321;
    font-size:14px;
    font-weight:bold;
    letter-spacing:1px;
}

.hero-left h1{
    font-size:80px;
    line-height:0.95;
    font-weight:800;
    margin:20px 0;
		color:whitesmoke;
}

.hero-left p{
    max-width:700px;
    font-size:22px;
    line-height:1.6;
    margin-bottom:25px;
}

.trusted-box{
    display:inline-block;
    padding:16px 28px;
    border-radius:50px;
    background:rgba(255,255,255,0.15);
    border:1px solid rgba(255,255,255,0.3);
    backdrop-filter:blur(5px);
    font-size:20px;
    font-weight:700;
    margin-bottom:30px;
}

.hero-buttons{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

.btn{
    text-decoration:none;
    padding:18px 28px;
    border-radius:10px;
    font-size:20px;
    font-weight:700;
    transition:0.3s;
}

.orange{
    background:#f47b2a;
    color:#fff;
}

.transparent{
    background:transparent;
    border:1px solid #fff;
    color:#fff;
}

.green{
    background:#1fc34d;
    color:#fff;
}

.btn:hover{
    transform:translateY(-3px);
}

/* RIGHT SIDE FORM */

.hero-right{
    width:38%;
}

.form-card{
    background:#fff;
    border-radius:20px;
    padding:30px;
    box-shadow:0 10px 30px rgba(0,0,0,0.25);
}

.form-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
}

.quick-guide{
    background:#dff4e7;
    color:#007f5f;
    padding:8px 18px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
}

.phone-number{
    font-weight:700;
    color:#002b5c;
}

.form-card h2{
    color:#002b5c;
    font-size:40px;
    margin-bottom:20px;
}

.form-note{
    border:1px solid #d6e2df;
    padding:18px;
    border-radius:12px;
    color:#264653;
    line-height:1.6;
    margin-bottom:25px;
    background:#f8fcfb;
}

form{
    display:flex;
    flex-direction:column;
    gap:16px;
}

form input,
form select,
form textarea{
    width:100%;
    padding:18px;
    border:1px solid #d6d6d6;
    border-radius:12px;
    font-size:16px;
    outline:none;
}

form textarea{
    height:120px;
    resize:none;
}

form button{
    background:linear-gradient(90deg,#082567,#00796b);
    color:#fff;
    border:none;
    padding:18px;
    border-radius:12px;
    font-size:20px;
    font-weight:700;
    cursor:pointer;
    transition:0.3s;
}

form button:hover{
    opacity:0.9;
}

/* RESPONSIVE */

@media(max-width:992px){

    .hero-container{
        flex-direction:column;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left h1{
        font-size:55px;
    }

    .hero-left p{
        font-size:18px;
    }

    .form-card h2{
        font-size:30px;
    }

}

@media(max-width:600px){

    .hero-left h1{
        font-size:42px;
    }

    .trusted-box{
        font-size:16px;
        padding:14px 20px;
    }

    .btn{
        width:100%;
        text-align:center;
    }

}