/* Career Page Specific Styles - Enhanced with blue theme */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&display=swap");

:root {
  --primary-color: #1c2e58; /* Deep blue */
  --primary-darker: #172448;
  --primary-lighter: #2a4380;
  --secondary-color: #3959a5;
  --accent-color: #4a76e8;
  --accent-light: #5a86f8;
  --text-dark: #333333;
  --text-medium: #555555;
  --text-light: #777777;
  --background-light: #f0f5ff; /* Light blue background */
  --background-white: #ffffff;
  --border-light: #e0e8ff; /* Light blue border */
  --shadow-light: 0 5px 15px rgba(74, 118, 232, 0.05);
  --shadow-medium: 0 15px 30px rgba(74, 118, 232, 0.1);
  --shadow-dark: 0 15px 40px rgba(28, 46, 88, 0.2);
  --radius-small: 8px;
  --radius-medium: 10px;
  --radius-large: 20px;
  --radius-round: 50px;
  --transition: all 0.3s ease;
}

body {
  font-family: "Hind Siliguri", sans-serif;
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--background-light);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Active navbar item */
.nav-item.active {
  font-weight: 600;
  position: relative;
}

.nav {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-left: -50px;
}

.nav-item {
  color: white;
  text-decoration: none;
  font-size: 20px;
  font-weight: 400;
  white-space: nowrap;
}

.nav-item.active::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: white;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: white;
}

/* Sidebar Menu Styles */
.sidebar-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100vh;
  background-color: var(--background-white);
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  transition: var(--transition);
  padding: 20px;
  overflow-y: auto;
}

.sidebar-menu.open {
  right: 0;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.sidebar-logo img {
  height: 40px;
}

.sidebar-close {
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-dark);
}

.sidebar-menu-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-menu-item {
  display: flex;
  align-items: center;
  padding: 12px 15px;
  border-radius: var(--radius-small);
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

.sidebar-menu-item:hover {
  background-color: rgba(74, 118, 232, 0.05);
}

.sidebar-menu-icon {
  margin-right: 12px;
  font-size: 1.1rem;
  color: var(--text-medium);
}

.sidebar-menu-text {
  font-size: 1rem;
}

.sidebar-language {
  display: flex;
  margin-top: 20px;
  gap: 10px;
}

.sidebar-lang-btn {
  padding: 8px 15px;
  border-radius: var(--radius-small);
  background-color: #f5f5f5;
  cursor: pointer;
  font-size: 0.9rem;
}

.sidebar-app-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px;
  background-color: var(--primary-color);
  color: white;
  border-radius: var(--radius-small);
  text-decoration: none;
  font-weight: 500;
}

/* Career Hero Section - Updated for full width */
.career-hero {
  margin-top: 60px;
  position: relative;
  background-color: var(--background-light);
  padding: 0;
}

.hero-banner {
  width: 100%;
  position: relative;
  overflow: hidden;
  height: 500px;
}

.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.career-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background: linear-gradient(
    90deg,
    rgba(28, 46, 88, 0.8) 0%,
    rgba(28, 46, 88, 0.6) 50%,
    rgba(28, 46, 88, 0.4) 100%
  );
}

.career-text {
  max-width: 600px;
  padding: 40px;
  color: white;
}

.career-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.career-text h1::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin-top: 15px;
  border-radius: var(--radius-small);
}

.career-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.btn-primary {
  display: inline-block;
  background: linear-gradient(to right, #3959a5, #4a76e8);
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-round);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(74, 118, 232, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(to right, #304c8e, #3965d6);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 118, 232, 0.4);
}

.btn-primary:active {
  transform: translateY(1px);
}

/* Career Stats Section */
.career-stats {
  background-color: var(--background-white);
  padding: 60px 0;
  box-shadow: 0 -5px 15px rgba(28, 46, 88, 0.05);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.stat-item {
  flex: 1;
  min-width: 200px;
  padding: 25px 15px;
  transition: var(--transition);
  border-radius: var(--radius-medium);
  background-color: white;
  box-shadow: var(--shadow-light);
}

.stat-item:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  background-color: var(--background-light);
}

.stat-icon {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 15px;
}

.stat-count {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 1rem;
  color: var(--text-medium);
}

/* Social Media Section */
.social-section {
  padding: 80px 0;
  background-color: var(--background-white);
}

.social-content {
  display: flex;
  align-items: center;
  gap: 50px;
  background-color: white;
  border-radius: var(--radius-large);
  padding: 40px;
  box-shadow: var(--shadow-light);
}

.social-text {
  flex: 1;
}

.social-text h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
  position: relative;
}

.social-text h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin-top: 15px;
  border-radius: var(--radius-small);
}

.social-text p {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  color: white;
  font-size: 1.25rem;
  transition: var(--transition);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.social-icons .facebook {
  background-color: #1877f2;
}

.social-icons .linkedin {
  background-color: #0a66c2;
}

.social-icons .instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}

.social-icons .youtube {
  background-color: #ff0000;
}

.social-image {
  flex: 1;
  max-width: 45%;
  position: relative;
}

.social-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

.social-image::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: rgba(74, 118, 232, 0.1);
  z-index: -1;
}

.social-image::after {
  content: "";
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background-color: rgba(74, 118, 232, 0.1);
  z-index: -1;
}

/* Employee Testimonials */
.employee-testimonials {
  padding: 80px 0;
  background-color: var(--background-light);
}

.employee-testimonials h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.employee-testimonials h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: var(--radius-small);
}

.testimonial-carousel {
  position: relative;
  padding: 20px 0;
}

.testimonial-navigation {
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: -20px;
  right: -20px;
  transform: translateY(-50%);
  z-index: 10;
}

.prev-btn,
.next-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  color: var(--primary-color);
  border: none;
  box-shadow: 0 4px 10px rgba(28, 46, 88, 0.1);
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.prev-btn:hover,
.next-btn:hover {
  background-color: var(--accent-color);
  color: white;
  transform: scale(1.1);
}

.testimonial-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 20px 10px;
}

.testimonial-slider::-webkit-scrollbar {
  display: none;
}

.testimonial-card {
  min-width: 300px;
  flex: 1;
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  padding: 25px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  border: 1px solid var(--border-light);
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-light);
}

.testimonial-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 4px solid var(--accent-color);
}

.testimonial-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-content {
  text-align: center;
}

.testimonial-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 20px;
  position: relative;
}

.testimonial-content p::before {
  content: '"';
  font-size: 4rem;
  color: rgba(74, 118, 232, 0.1);
  position: absolute;
  top: -30px;
  left: -10px;
  line-height: 1;
}

.testimonial-content h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 5px;
}

.testimonial-content span {
  font-size: 0.875rem;
  color: var(--text-light);
}

/* bKash Life Section */
.bkash-life {
  padding: 80px 0;
  background-color: var(--background-white);
}

.bkash-life h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.bkash-life h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: var(--radius-small);
}

.life-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.card {
  background-color: white;
  border-radius: var(--radius-medium);
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--border-light);
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-light);
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.post-meta {
  font-size: 0.75rem;
  color: var(--text-light);
}

.view-all {
  text-align: center;
  margin-top: 20px;
}

.btn-secondary {
  display: inline-block;
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  padding: 12px 30px;
  border-radius: var(--radius-round);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 10px rgba(74, 118, 232, 0.2);
}

/* Job Opportunities Section - Enhanced */
.job-opportunities {
  padding: 80px 0;
  background-color: #3959a5;
  position: relative;
  overflow: hidden;
}

.job-opportunities::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="3" fill="%23ffffff22"/></svg>');
  background-size: 100px 100px;
  opacity: 0.5;
}

.job-opportunities h2 {
  font-size: 2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 40px;
  text-align: center;
  position: relative;
}

.job-opportunities h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: white;
  margin: 15px auto 0;
  border-radius: var(--radius-small);
}

.job-filter {
  margin-bottom: 40px;
  background-color: white;
  padding: 30px;
  border-radius: var(--radius-medium);
  box-shadow: 0 10px 30px rgba(28, 46, 88, 0.15);
  position: relative;
  z-index: 2;
}

.search-bar {
  display: flex;
  margin-bottom: 20px;
}

.search-bar input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 30px 0 0 30px;
  font-size: 1rem;
  outline: none;
  font-family: "Hind Siliguri", sans-serif;
  transition: var(--transition);
}

.search-bar input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(74, 118, 232, 0.1);
}

.search-bar button {
  background: linear-gradient(to right, #3959a5, #4a76e8);
  color: white;
  border: none;
  border-radius: 0 30px 30px 0;
  padding: 0 30px;
  cursor: pointer;
  font-size: 1.25rem;
  transition: var(--transition);
}

.search-bar button:hover {
  background: linear-gradient(to right, #304c8e, #3965d6);
}

.filter-options {
  display: flex;
  gap: 20px;
}

.filter-options select {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  background-color: white;
  cursor: pointer;
  font-family: "Hind Siliguri", sans-serif;
  transition: var(--transition);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%233959a5' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) center;
  padding-right: 40px;
}

.filter-options select:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(74, 118, 232, 0.1);
}

/* Active filter styles */
.filter-options select.active-filter {
  border-color: #4a76e8;
  background-color: rgba(74, 118, 232, 0.05);
}

.job-listings {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.job-card {
  background-color: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
  border: 1px solid var(--border-light);
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.job-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-light);
}

/* Highlighted job card for department filtering */
.job-card.highlighted-job {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(74, 118, 232, 0.2);
  border-color: #4a76e8;
}

.job-card.highlighted-job .job-header {
  background-color: rgba(74, 118, 232, 0.1);
}

.job-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background: linear-gradient(to right, #f8f9fa, #f0f5ff);
  border-bottom: 1px solid var(--border-light);
  border-radius: 15px 15px 0 0;
}

.job-header h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
}

.job-type {
  padding: 6px 15px;
  border-radius: var(--radius-round);
  font-size: 0.875rem;
  font-weight: 500;
}

.job-type.full-time {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.job-type.part-time {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.job-type.contract {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.job-type.internship {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.job-details {
  padding: 20px;
}

.job-info {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.job-info span {
  font-size: 0.875rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-details p {
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-medium);
}

.job-footer {
  display: flex;
  gap: 15px;
}

.load-more {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.load-more .btn-secondary {
  background-color: white;
  border-color: white;
  color: var(--primary-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  font-weight: 600;
  padding: 14px 30px;
}

.load-more .btn-secondary:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: white;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.load-more .btn-secondary i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.load-more .btn-secondary:hover i.fa-chevron-down {
  transform: translateY(3px);
}

.load-more .btn-secondary:hover i.fa-chevron-up {
  transform: translateY(-3px);
}

/* Improve no results message */
.no-results {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(28, 46, 88, 0.15);
}

.no-results-icon {
  font-size: 4rem;
  color: #4a76e8;
  margin-bottom: 20px;
  opacity: 0.7;
}

.no-results h3 {
  font-size: 1.7rem;
  margin-bottom: 15px;
  color: #1c2e58;
}

.no-results p {
  margin-bottom: 25px;
  color: #555;
  font-size: 1.1rem;
}

.reset-filters {
  padding: 12px 25px;
  font-weight: 500;
}

/* White text for filtering tips */
.filtering-tips {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 25px;
  margin-top: 30px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white !important;
}

.tip-icon {
  font-size: 2.2rem;
  color: #ffeb3b;
  flex-shrink: 0;
}

.tip-content h4 {
  color: white !important;
  margin-bottom: 10px;
  font-size: 1.3rem;
}

.tip-content p {
  margin: 0;
  line-height: 1.6;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9) !important;
}

.search-results-stats {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 10px 20px;
  border-radius: 30px;
  color: white;
  display: inline-block;
  margin-bottom: 20px;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Modal Styles - Enhanced for better UX */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 46, 88, 0.8);
  z-index: 1000;
  overflow-y: auto;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(8px);
}

.modal.active {
  display: block;
  opacity: 1;
}

.modal-content {
  background-color: white;
  margin: 50px auto;
  max-width: 800px;
  border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal.active .modal-content {
  transform: translateY(0);
  opacity: 1;
  animation: modalEntrance 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.modal-header {
  padding: 20px 30px;
  border-bottom: none;
  position: sticky;
  top: 0;
  background: linear-gradient(to right, #3959a5, #4a76e8);
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 15px 15px 0 0;
}

.modal-header h2 {
  font-size: 1.6rem;
  font-weight: 600;
  color: white;
  margin: 0;
}

.modal-close {
  font-size: 1.75rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
  opacity: 0.8;
}

.modal-close:hover {
  opacity: 1;
  transform: rotate(90deg);
}

.modal-body {
  padding: 30px;
}

.job-modal-header {
  margin-bottom: 30px;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
}

.job-type-modal {
  padding: 6px 15px;
  border-radius: var(--radius-round);
  font-size: 0.875rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}

.job-type-modal.full-time {
  background-color: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.job-type-modal.part-time {
  background-color: rgba(13, 110, 253, 0.1);
  color: #0d6efd;
}

.job-type-modal.contract {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}

.job-type-modal.internship {
  background-color: rgba(108, 117, 125, 0.1);
  color: #6c757d;
}

.job-location,
.job-department,
.job-date {
  font-size: 0.875rem;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-description h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin: 25px 0 15px;
}

.job-description p,
.job-description li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 10px;
}

.job-description ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.job-description li::marker {
  color: var(--accent-color);
}

.job-modal-footer {
  margin-top: 30px;
  display: flex;
  gap: 15px;
}

/* Application Form */
.application-form {
  display: grid;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 15px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-small);
  font-family: "Hind Siliguri", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #4a76e8;
  box-shadow: 0 0 0 3px rgba(74, 118, 232, 0.2);
}

.file-upload {
  position: relative;
}

.file-upload input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  z-index: -1;
}

.file-upload-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background-color: #f5f5f5;
  border-radius: var(--radius-small);
  cursor: pointer;
  transition: var(--transition);
}

.file-upload-label:hover {
  background-color: #eeeeee;
}

.file-upload-label i {
  font-size: 1.25rem;
  color: var(--accent-color);
}

.file-name {
  display: block;
  margin-top: 5px;
  font-size: 0.875rem;
  color: var(--text-light);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}

.checkbox-group input {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-color);
}

.checkbox-group label {
  font-size: 0.875rem;
  color: var(--text-medium);
}

.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

/* Success Message */
.success-message {
  text-align: center;
}

.success-icon {
  font-size: 4rem;
  color: #28a745;
  margin-bottom: 20px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.success-message p {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-medium);
  margin-bottom: 15px;
}

#application-id {
  font-weight: 600;
  color: var(--primary-color);
}

.modal-footer {
  margin-top: 30px;
  text-align: center;
}

/* Benefits Section */
.benefits-section {
  padding: 80px 0;
  background-color: var(--background-white);
}

.benefits-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 50px;
  text-align: center;
  position: relative;
}

.benefits-section h2::after {
  content: "";
  display: block;
  width: 80px;
  height: 4px;
  background-color: var(--accent-color);
  margin: 15px auto 0;
  border-radius: var(--radius-small);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.benefit-card {
  background-color: white;
  border-radius: var(--radius-medium);
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-light);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  transform-origin: left;
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(74, 118, 232, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.benefit-icon i {
  font-size: 2rem;
  color: var(--accent-color);
}

.benefit-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.benefit-card p {
  font-size: 0.875rem;
  color: var(--text-medium);
  line-height: 1.6;
}

/* Newsletter Section */
.newsletter-section {
  padding: 80px 0;
  background-color: var(--background-light);
}

.newsletter-container {
  background-color: white;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-light);
  padding: 50px;
  display: flex;
  align-items: center;
  gap: 50px;
  border: 1px solid var(--border-light);
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.newsletter-content p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-medium);
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 16px 20px;
  border: 1px solid var(--border-light);
  border-radius: 30px;
  font-size: 1rem;
  outline: none;
  font-family: "Hind Siliguri", sans-serif;
  transition: var(--transition);
}

.newsletter-form input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(74, 118, 232, 0.1);
}

.newsletter-image {
  flex: 1;
  max-width: 40%;
}

.newsletter-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-medium);
}

/* Live Chat Button */
.live-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(to right, #3959a5, #4a76e8);
  color: white;
  border-radius: var(--radius-round);
  padding: 15px 25px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 500;
  box-shadow: 0 5px 15px rgba(74, 118, 232, 0.3);
  transition: var(--transition);
  z-index: 100;
}

.live-chat:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(74, 118, 232, 0.4);
  background: linear-gradient(to right, #304c8e, #3965d6);
}

.live-chat i {
  font-size: 1.25rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 50px;
  height: 50px;
  background-color: #4a76e8;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(74, 118, 232, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(74, 118, 232, 0.4);
  background-color: #3959a5;
}

/* Enhanced Animations */
@keyframes modalEntrance {
  from {
    opacity: 0;
    transform: translateY(50px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes modalExit {
  from {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0);
  }
}

.animate {
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Modal backdrop */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(28, 46, 88, 0.8);
  backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 1200px) {
  .career-text h1 {
    font-size: 2.5rem;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 992px) {
  .hero-banner {
    height: 400px;
  }

  .career-text {
    max-width: 500px;
    padding: 30px;
  }

  .career-text h1 {
    font-size: 2.2rem;
  }

  .social-content,
  .newsletter-container {
    flex-direction: column;
  }

  .social-image,
  .newsletter-image {
    max-width: 100%;
    margin-top: 30px;
  }

  .life-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .filter-options {
    flex-wrap: wrap;
  }

  .filter-options select {
    min-width: calc(50% - 10px);
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav {
    display: none;
  }
  
  .modal-content {
    margin: 30px auto;
    width: 90%;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    height: 350px;
  }

  .career-text {
    max-width: 100%;
    padding: 20px;
  }

  .career-text h1 {
    font-size: 1.8rem;
  }

  .social-text h2,
  .bkash-life h2,
  .job-opportunities h2,
  .benefits-section h2,
  .newsletter-content h2,
  .employee-testimonials h2 {
    font-size: 1.75rem;
  }

  .life-cards,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .job-footer {
    flex-direction: column;
  }

  .modal-content {
    margin: 15px auto;
    max-width: 95%;
  }
  
  .modal-header h2 {
    font-size: 1.4rem !important;
  }

  .testimonial-navigation {
    left: 0;
    right: 0;
  }

  .newsletter-container {
    padding: 30px;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .job-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .filtering-tips {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
  }
  
  .form-actions {
    flex-direction: column;
  }
  
  .job-filter {
    padding: 20px;
  }
  
  .job-header h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .hero-banner {
    height: 300px;
  }

  .career-text h1 {
    font-size: 1.5rem;
  }

  .career-text p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 0.875rem;
  }

  .social-text h2,
  .bkash-life h2,
  .job-opportunities h2,
  .benefits-section h2,
  .newsletter-content h2,
  .employee-testimonials h2 {
    font-size: 1.5rem;
  }

  .social-text p,
  .newsletter-content p {
    font-size: 1rem;
  }

  .testimonial-card {
    min-width: 100%;
  }

  .job-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .modal-body {
    padding: 20px;
  }

  .filter-options select {
    min-width: 100%;
  }
  
  .search-bar {
    flex-direction: column;
  }
  
  .search-bar input,
  .search-bar button {
    border-radius: 30px;
    width: 100%;
  }
  
  .search-bar button {
    margin-top: 10px;
    height: 45px;
  }
  
  .modal-content {
    margin: 10px;
    width: calc(100% - 20px);
  }
  
  .modal-header {
    padding: 15px 20px;
  }
  
  .modal-body {
    padding: 15px;
  }
}