/* Layout */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  display: flex;
  background: #f0f2f5;
}

/* Sidebar */
.sidebar {
  width: 220px;
  background: linear-gradient(180deg, #0077b6, #0096c7);
  color: white;
  min-height: 100vh;
  padding: 20px;
  position: fixed;
}

.sidebar .logo {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 30px;
}

.sidebar nav a {
  display: block;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 8px;
  transition: background 0.3s;
}

.sidebar nav a:hover,
.sidebar nav a.active {
  background: rgba(255, 255, 255, 0.2);
}

/* Main */
main {
  margin-left: 240px;
  padding: 20px;
  flex: 1;
}

/* Topbar */
.topbar {
  background: #00b4d8;
  padding: 15px;
  border-radius: 10px;
  color: white;
  margin-bottom: 20px;
}

/* Jobs */
.jobs .job-snippet {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.jobs h2 {
  margin-top: 0;
  color: #0077b6;
}

.expand-btn {
  background: #00b4d8;
  border: none;
  color: white;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
}

.expand-btn:hover {
  background: #0077b6;
}

.job-details {
  display: none;
  margin-top: 10px;
  border-top: 1px solid #eee;
  padding-top: 10px;
}

/* Blogs */
.blogs .blog-post {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 15px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Submit Form */
.contact-form {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  max-width: 600px;
}

.contact-form label {
  font-weight: bold;
  margin-top: 12px;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 8px;
}

.contact-form button {
  margin-top: 15px;
  background: #0077b6;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #0096c7;
}

/* Floating Button */
.floating-btn {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #ff595e;
  color: white;
  font-size: 18px;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: background 0.3s;
}

.floating-btn:hover {
  background: #d90429;
}
