/* style.css */

/* 🔹 Reset and basic setup */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  color: #333;
}
a {
  text-decoration: none;
  color: inherit;
}

/* 🔹 Topbar */
.topbar {
  background-color: #003366;
  padding: 8px 20px;
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: #eaf3ff;
}
.topbar a {
  margin-right: 15px;
  color: #eaf3ff;
  transition: color 0.3s;
}
.topbar a:hover {
  color: #0056b3;
}
.social-icons a {
  margin-left: 10px;
  font-size: 16px;
}

/* 🔹 Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background-color: #f9fbff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.logo {
  display: flex;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  color: #003366;
}
.logo-icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/* 🔹 Navigation */
.navbar a {
  margin-left: 20px;
  font-weight: 500;
  color: #005fa3;
}
.navbar a:hover {
  color: #003366;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  background: #F3F4F6;
  color: #1F2937;
  line-height: 1.6;
}

/* Hero Section */
.hero {
  background: url('image/joblist.jpg') no-repeat center center/cover;
  height: 400px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  padding-bottom: 80px;
  position: relative;
  color: #0370fe;
}

.hero-content {
  background: rgba(255, 255, 255, 0.1); /* হালকা পানির মত সাদা ব্যাকগ্রাউন্ড */
  padding: 20px 40px;
  border-radius: 12px;
  backdrop-filter: blur(10px); /* কাচের মত ব্লার করে দেয় */
  -webkit-backdrop-filter: blur(10px); /* Safari সাপোর্ট */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3); /* হালকা বর্ডার */
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: #0370fe;
}

.hero p {
  font-size: 1.5rem;
  color: #0370fe;
}


/* Jobs Section */
.jobs {
  padding: 2rem 1rem;
  max-width: 1000px;
  margin: auto;
}

.jobs h2 {
  font-size: 1.75rem;
  color: #1E3A8A;
  margin-bottom: 1.5rem;
  text-align: center;
}

.job-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
  font-size: 1.25rem;
  color: #111827;
  margin-bottom: 0.5rem;
}

.job-card p {
  font-size: 1rem;
  color: #4B5563;
  margin-bottom: 1rem;
}

.apply-btn {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: #2563EB;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.apply-btn:hover {
  background: #1E40AF;
}

/* Responsive */
@media (min-width: 768px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .job-card {
    padding: 2rem;
  }
}







/* 🔹 Footer */
.footer {
  background-color: #f9fbff;
  padding: 10px 05px;
  text-align: center;
  border-top: 1px solid #ddd;
}
.footer .social-icons a {
  margin: 0 10px;
  font-size: 18px;
  color: #003366;
  transition: color 0.3s ease;
}
.footer .social-icons a:hover {
  color: #0077cc;
}
.footer p {
  margin-top: 10px;
  font-size: 14px;
  color: #555;
}
.footer a {
  color: #0077cc;
}
.footer a:hover {
  text-decoration: underline;
}
