.dropdown_scroll{
          max-height:400px;  
          overflow-y:auto;   
          overflow-x:hidden;
          padding-right:6px;
        }
        
        /* SCROLLBAR DESIGN */
        .dropdown_scroll::-webkit-scrollbar{
          width:6px;
        }
        
        .dropdown_scroll::-webkit-scrollbar-track{
          background:#f1f1f1;
          border-radius:10px;
        }
        
        .dropdown_scroll::-webkit-scrollbar-thumb{
          background:#2563eb;
          border-radius:10px;
        }
        
        .dropdown_scroll::-webkit-scrollbar-thumb:hover{
          background:#1d4ed8;
        }
        
.hero{
padding:120px 0;
position:relative;
overflow:hidden;

background:
linear-gradient(rgba(255,255,255,.92),rgba(255,255,255,.95)),
url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?q=80&w=1600&auto=format&fit=crop');

background-size:cover;
background-position:center;
}

.hero::before{
content:'';
position:absolute;
width:420px;
height:420px;
background:#0ea5e9;
filter:blur(150px);
opacity:.15;
top:-120px;
left:-120px;
border-radius:50%;
}

.hero::after{
content:'';
position:absolute;
width:400px;
height:400px;
background:#2563eb;
filter:blur(150px);
opacity:.15;
bottom:-120px;
right:-120px;
border-radius:50%;
}

.hero-content{
position:relative;
z-index:2;
text-align:center;
}

.badge-career{
display:inline-block;
padding:12px 25px;
background:#e0f2fe;
border-radius:50px;
font-weight:600;
color:#0284c7;
margin-bottom:25px;
border:1px solid #bae6fd;
}

.hero h1{
font-size:72px;
font-weight:800;
line-height:85px;
margin-bottom:20px;
}

.hero h1 span{
background:linear-gradient(90deg,#0ea5e9,#2563eb,#7c3aed);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.hero p{
max-width:850px;
margin:auto;
font-size:18px;
line-height:34px;
color:#475569;
}

/* SECTION */

.section-padding{
padding:100px 0;
}

.title{
text-align:center;
margin-bottom:60px;
}

.title h2{
font-size:50px;
font-weight:700;
margin-bottom:15px;
}

.title p{
font-size:18px;
color:#64748b;
}

/* JOB CARD */

.job-card{
background:#fff;
padding:35px;
border-radius:32px;
height:100%;
position:relative;
overflow:hidden;
border:1px solid #e2e8f0;
box-shadow:0 15px 40px rgba(0,0,0,.05);
transition:.4s;
}

.job-card:hover{
transform:translateY(-12px);
border-color:#0ea5e9;
}

.job-card::before{
content:'';
position:absolute;
width:140px;
height:140px;
background:#e0f2fe;
border-radius:50%;
top:-50px;
right:-50px;
}

.job-card i{
font-size:42px;
margin-bottom:20px;
background:linear-gradient(90deg,#0ea5e9,#2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.job-card h3{
font-size:28px;
margin-bottom:15px;
font-weight:700;
}

.job-card p{
line-height:30px;
color:#475569;
margin-bottom:20px;
}

.job-card ul{
padding-left:0;
}

.job-card ul li{
list-style:none;
padding:12px 0;
border-bottom:1px solid #e2e8f0;
color:#475569;
font-size:15px;
}

/* FORM */

.form-box{
background:#fff;
padding:50px;
border-radius:35px;
box-shadow:0 20px 50px rgba(0,0,0,.06);
border:1px solid #e2e8f0;
}

.form-box h2{
font-size:42px;
margin-bottom:15px;
font-weight:700;
}

.form-box p{
color:#64748b;
margin-bottom:35px;
}

.form-control,
.form-select{
height:58px;
border-radius:16px;
border:1px solid #dbe4f0;
padding-left:18px;
box-shadow:none !important;
}

textarea.form-control{
height:150px;
padding-top:15px;
resize:none;
}

.form-control:focus,
.form-select:focus{
border-color:#0ea5e9;
}

.submit-btn{
border:none;
padding:18px 40px;
border-radius:60px;
background:linear-gradient(90deg,#0ea5e9,#2563eb);
color:#fff;
font-weight:600;
font-size:17px;
transition:.4s;
width:100%;
}

.submit-btn:hover{
transform:translateY(-6px);
}

/* BENEFITS */

.benefit-box{
background:#fff;
padding:35px;
border-radius:30px;
text-align:center;
height:100%;
border:1px solid #e2e8f0;
transition:.4s;
box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.benefit-box:hover{
transform:translateY(-10px);
border-color:#0ea5e9;
}

.benefit-box i{
font-size:42px;
margin-bottom:20px;
background:linear-gradient(90deg,#0ea5e9,#2563eb);
-webkit-background-clip:text;
-webkit-text-fill-color:transparent;
}

.benefit-box h4{
font-size:24px;
margin-bottom:15px;
font-weight:700;
}

.benefit-box p{
color:#64748b;
line-height:30px;
}

/* SUCCESS MESSAGE */

.success-message{
display:none;
margin-top:25px;
padding:18px;
background:#dcfce7;
color:#166534;
border-radius:16px;
font-weight:600;
text-align:center;
}

/* FOOTER */

.footer{
padding:35px 20px;
text-align:center;
background:#fff;
border-top:1px solid #e2e8f0;
margin-top:70px;
color:#64748b;
}

/* MOBILE */

@media(max-width:768px){

.hero{
padding:90px 0;
}

.hero h1{
font-size:42px;
line-height:58px;
}

.hero p{
font-size:16px;
line-height:30px;
}

.title h2{
font-size:35px;
}

.form-box{
padding:30px 20px;
}

.form-box h2{
font-size:32px;
}

}