/* =========================
   CONTACT FORM
========================= */

.form-section{
max-width:700px;
margin:40px auto;
}

.form-section label{
display:block;
margin-bottom:6px;
font-weight:600;
}

.form-section input,
.form-section textarea{
width:100%;
padding:12px;
border:1px solid #d1d5db;
border-radius:8px;
margin-bottom:15px;
font-size:15px;
}

.form-section textarea{
resize:vertical;
min-height:120px;
}

.form-section button{
background:#2563eb;
color:white;
border:none;
padding:12px 18px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.form-section button:hover{
background:#1d4ed8;
}

/* =========================
   POPUP
========================= */
/* ===== POPUP MODERN UI ===== */

.popup-overlay{
display:none;
position:fixed;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(4px);
z-index:999;
}

.popup{
display:none;
position:fixed;
top:50%;
left:50%;
transform:translate(-50%,-50%) scale(0.8);
z-index:1000;
animation:popupFade 0.3s ease forwards;
}

.popup-box{
background:white;
padding:30px 25px;
border-radius:16px;
box-shadow:0 20px 60px rgba(0,0,0,0.3);
text-align:center;
max-width:380px;
width:90%;
position:relative;
}

/* animation */
@keyframes popupFade{
to{
transform:translate(-50%,-50%) scale(1);
opacity:1;
}
}

/* close button */
.close-btn{
position:absolute;
top:10px;
right:12px;
font-size:18px;
cursor:pointer;
color:#555;
}

/* success icon */
.success-icon{
width:70px;
height:70px;
border-radius:50%;
background:#22c55e;
margin:0 auto 15px;
display:flex;
align-items:center;
justify-content:center;
}

.checkmark{
width:25px;
height:12px;
border-left:4px solid white;
border-bottom:4px solid white;
transform:rotate(-45deg);
animation:tick 0.4s ease forwards;
}

@keyframes tick{
0%{opacity:0; transform:rotate(-45deg) scale(0.5);}
100%{opacity:1; transform:rotate(-45deg) scale(1);}
}

.popup-box h2{
margin-bottom:10px;
color:#111;
}

.popup-box p{
color:#555;
font-size:14px;
margin-bottom:20px;
}

.close-popup-btn{
background:#2563eb;
color:white;
border:none;
padding:10px 18px;
border-radius:8px;
cursor:pointer;
}

.close-popup-btn:hover{
background:#1d4ed8;
}

/* =========================
   CAREER PAGE
========================= */

.career-box{
background:white;
padding:25px;
border-radius:12px;
box-shadow:0 6px 20px rgba(0,0,0,0.08);
margin:20px 0;
text-align:center;
transition:.3s;
}

.career-box:hover{
transform:translateY(-4px);
box-shadow:0 10px 25px rgba(0,0,0,0.12);
}

.career-box h3{
color:#1e293b;
margin-bottom:10px;
}

.career-box p{
color:#475569;
margin-bottom:15px;
}

.career-box a{
background:#2563eb;
color:white;
padding:10px 16px;
border-radius:6px;
text-decoration:none;
display:inline-block;
}

.career-box a:hover{
background:#1d4ed8;
}

/* =========================
   SEARCH BOX
========================= */

.search-box{
margin-bottom:25px;
}

.search-box input{
width:100%;
padding:12px;
border:2px solid #2563eb;
border-radius:10px;
font-size:16px;
}

/* =========================
   FILTER MENU
========================= */

.filter-menu{
display:flex;
flex-wrap:wrap;
gap:10px;
margin-bottom:25px;
}

.filter-menu button{
background:#f1f5f9;
border:none;
padding:8px 14px;
border-radius:8px;
cursor:pointer;
font-weight:600;
}

.filter-menu button.active{
background:#2563eb;
color:white;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width:768px){

.form-section{
padding:0 10px;
}

.career-box{
padding:20px;
}

}