Assam Career
Assam Police Recruitment
Last Date: April 25, 2025
Govt
Teacher Vacancy - SEBA
Last Date: April 30, 2025
Education
Junior Assistant in PWD
Last Date: May 05, 2025
Govt
Data Entry Operator - Guwahati
Last Date: April 20, 2025
Private
body {
margin: 0;
font-family: 'Nunito', sans-serif;
background: linear-gradient(to right, #e3ffe7, #d9e7ff);
color: #333;
}
header {
text-align: center;
padding: 30px 20px;
background-color: #00897b;
color: white;
}
header h1 {
font-size: 2.5em;
margin: 0;
}
header p {
margin: 10px 0;
}
header input {
width: 80%;
max-width: 400px;
padding: 10px 15px;
margin-top: 15px;
border-radius: 25px;
border: none;
font-size: 1em;
box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
main {
padding: 20px;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 20px;
}
.job-card {
background-color: white;
border-left: 6px solid #00897b;
border-radius: 12px;
padding: 20px;
box-shadow: 0 4px 10px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.job-card:hover {
transform: translateY(-5px);
}
.job-card h3 {
margin: 0 0 10px;
color: #00695c;
}
.job-card p {
margin: 0;
color: #555;
}
.badge {
display: inline-block;
margin-top: 10px;
padding: 5px 10px;
background-color: #ff7043;
color: white;
border-radius: 20px;
font-size: 0.8em;
}
footer {
text-align: center;
padding: 15px;
background-color: #004d40;
color: white;
font-size: 0.9em;
}
function searchJobs() {
const input = document.getElementById('searchInput').value.toLowerCase();
const cards = document.querySelectorAll('.job-card');
cards.forEach(card => {
const title = card.querySelector('h3').textContent.toLowerCase();
card.style.display = title.includes(input) ? 'block' : 'none';
});
}