@font-face {
  font-family: var(--mimak-font-family);
  src: url("../fonts/GeneralSans_Complete/Fonts/WEB/fonts/GeneralSans-Regular.woff2")
      format("woff2"),
    url("../fonts/GeneralSans_Complete/Fonts/WEB/fonts/GeneralSans-Regular.woff")
      format("woff");
  font-weight: normal;
  font-style: normal;
}

/* Custom colors from the design */
:root {
  --primary-mimak: #455076;
  --secondary-mimak: #6c53a3;
  --dark-mimak: #12192f;
  --purple-mimak: #772a40;
  --gray-mimak: #6f6f8d;
  --border-mimak: #e4e5e9;
  --light-bg: #f8f9fa;

  --swiper-pagination-bullet-opacity: 1;
  --swiper-theme-color: var(--primary-mimak);
  --swiper-pagination-bullet-size: 14px;
  --swiper-pagination-bullet-width: var(--swiper-pagination-bullet-size, 14px);
  --swiper-pagination-bullet-height: var(--swiper-pagination-bullet-size, 14px);
  --swiper-pagination-bullet-inactive-color: transparent;
  --swiper-pagination-bullet-inactive-opacity: 0.5;
  --swiper-pagination-bullet-border-radius: 50%;

  --card-border-radius: 10px;

  --bs-accordion-inner-border-radius: 30px;
  --hero-component-card-offset: -120px;
  --hero-component-card-margin-bottom: 120px;

  --mimak-font-family: "General Sans", -apple-system, Roboto, Helvetica,
    sans-serif;
}
/* Flexbox for sticky footer effect */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  font-family: var(--mimak-font-family);
  background: #fff;
  color: var(--dark-mimak);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

.logo-img {
  height: 66px;
}

.page-content-container {
  padding: 0 15px;
}
/* Header Bar */
.header-bar {
  background: var(--dark-mimak);
  padding: 20px 120px;
  width: 100%;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 34px;
}

.contact-email,
.contact-phone {
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.social-icons-header {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
}

/* Navigation Bar */
.nav-bar {
  background: #fff;
  padding: 20px 120px;
  width: 100%;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1320px;
  margin: 0 auto;
}

.nav-logo {
  width: 246px;
  height: 66px;
  flex-shrink: 0;
}

/**
.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background-color 0.3s ease;
  min-height: 44px;
}

.nav-link:hover,
.nav-link:focus {
  color: yellow;
  outline: none;
}

.nav-link span {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.nav-item:hover .nav-link span,
.nav-item:focus .nav-link span,
.nav-item-active .nav-link span {
  color: var(--purple-mimak);
}

/- Mobile Menu Toggle -/
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--dark-mimak);
  border-radius: var(--card-border-radius);
  transition: all 0.3s linear;
  position: relative;
  transform-origin: 1px;
}

.mobile-menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
}
**/

/* Desktop Menu */
.nav-menu {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-item {
  position: relative;
  text-decoration: none;
  color: #455076;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  cursor: pointer;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #772a40;
}

.nav-link span {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

.nav-link svg {
  transition: transform 0.3s;
}

.nav-item:hover .nav-link svg {
  transform: rotate(90deg);
}

/* Dropdown Menu */
.custom-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  margin-top: 10px;
  z-index: 100;
}

.nav-item:hover .custom-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.custom-dropdown-menu a {
  display: block;
  padding: 12px 20px;
  color: #455076;
  text-decoration: none;
  transition: background-color 0.2s, color 0.2s;
  border-bottom: 1px solid #f0f0f0;
}

.custom-dropdown-menu a:first-child {
  border-radius: 8px 8px 0 0;
}

.custom-dropdown-menu a:last-child {
  border-radius: 0 0 8px 8px;
  border-bottom: none;
}

.custom-dropdown-menu a:hover {
  background-color: #f8f9fa;
  color: #772a40;
  padding-left: 25px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #455076;
  transition: all 0.3s;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    max-height: 600px;
  }

  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-link {
    padding: 15px 20px;
    justify-content: space-between;
  }

  .custom-dropdown-menu {
    position: static;
    box-shadow: none;
    border-radius: 0;
    margin-top: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: #f8f9fa;
  }

  .nav-item.mobile-active .custom-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: none;
    max-height: 500px;
  }

  .nav-item.mobile-active .nav-link svg {
    transform: rotate(90deg);
  }

  .custom-dropdown-menu a {
    padding: 12px 30px;
  }

  .custom-dropdown-menu a:hover {
    padding-left: 35px;
  }
}

/* Hero Image Section */
.hero-image-section {
  width: 100%;
  height: 640px;
  padding: 42px 94px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background: url("https://api.builder.io/api/v1/image/assets/TEMP/hero-background.jpg")
    lightgray 0px -90.61px / 100% 150% no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-content {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}

.hero-overlay {
  display: flex;
  width: 690px;
  padding: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--card-border-radius);
  background: rgba(255, 255, 255, 0.85);
}

.hero-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 46px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.hero-description {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* Landing Page Container */
.landing-page {
  width: 100%;
  background: #fff;
}

/* Search Widget Section */

.search-widget-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
  max-width: 1320px;
  margin: 0 auto;
}

.search-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.search-title {
  align-self: stretch;
}
/* Section Title */
.section-title,
.search-title {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  margin-bottom: 40px;
}

.search-description {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.search-widget {
  align-self: stretch;
}

.search-inputs {
  display: flex;
  align-items: center;
  gap: 20px;
  align-self: stretch;
}

.job-input {
  display: flex;
  padding: 15px 30px;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  border: 3px solid #242b49;
  flex: 1;
  cursor: pointer;
  transition: border-color 0.3s ease;
  min-height: 54px;
}

.job-input:hover,
.job-input:focus-within {
  border-color: var(--purple-mimak);
}

.location-input {
  display: flex;
  padding: 15px 30px;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  border: 3px solid #242b49;
  flex: 1;
  cursor: pointer;
  transition: border-color 0.3s ease;
  min-height: 54px;
}

.location-input:hover,
.location-input:focus-within {
  border-color: var(--purple-mimak);
}

.location-icon {
  width: 16px;
  height: 20px;
}

.input-text {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.search-btn {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  background: var(--dark-mimak);
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  min-height: 44px;
  transition: background-color 0.3s ease;
}

.search-btn:hover,
.search-btn:focus {
  background: #1a2340;
  outline: 2px solid var(--purple-mimak);
  outline-offset: 2px;
}

/* Company Description Section */
.company-description-section {
  padding: 40px 120px;
  width: 100%;
}

.company-description-content {
  max-width: 1320px;
  margin: 0 auto;
}

.company-description {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  text-align: left;
}

/* Section CTA */
.section-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}

.outline-btn {
  display: inline-flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  border: 3px solid var(--dark-mimak);
  background: transparent;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
}

.outline-btn:hover,
.outline-btn:focus {
  background: var(--dark-mimak);
  color: #fff;
  outline: 2px solid var(--dark-mimak);
  outline-offset: 2px;
}

/* Industries Section */
.industries-section {
  padding: 80px 120px;
  width: 100%;
}

.industries-content {
  max-width: 1320px;
  margin: 0 auto;
}

.expandable-card {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  background: #fff;
  transition: all 1s ease-in-out;
  cursor: pointer;
}

.expandable-card .card-body {
  padding: 20px 17.5px;
}

.expandable-card-description {
  opacity: 0;
  max-height: 0;
  transition: opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
}

.expandable-card:hover .expandable-card-description {
  opacity: 1;
  max-height: 200px;
}

.expandable-card-image {
  height: 315px;
  align-self: stretch;
  position: relative;
  overflow: hidden;
}

.expandable-desc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--card-border-radius) var(--card-border-radius) 0 0;
  transition: transform 0.4s ease;
}

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

.expandable-card-bottom {
  display: flex;
  padding: 20px 17.5px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 10px;
  align-self: stretch;
  border-radius: 0 0 var(--card-border-radius) var(--card-border-radius);
  background: #fff;
  min-height: 96px;
}

.expandable-card-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.expandable-card-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

@media (max-width: 768px) {
  .expandable-card-description {
    opacity: 1;
    max-height: 200px;
  }
}

.learn-more {
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  min-height: 40px;
}

.learn-more-link {
  color: var(--purple-mimak);
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
}

/* Solutions Section */
.solutions-section {
  padding: 80px 120px;
  width: 100%;
}

.solutions-content {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}

/* Solutions Cards Grid */
.solutions-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin: 40px 0;
}

.feature-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 20px;
  padding: 40px;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(18, 25, 47, 0.15);
  min-height: 290px;
}
.feature-card:hover {
  border-radius: var(--card-border-radius);
  background: rgba(69, 80, 118, 0.05);
  box-shadow: 0 2px 6px 0 rgba(18, 25, 47, 0.15);
}

.solution-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  align-self: stretch;
}

.feature-card-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.feature-card-description {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* About Sections */
.about-sections {
  width: 100%;
}

.about-section {
  padding: 40px 120px;
  width: 100%;
}

.about-container {
  display: flex;
  align-items: center;
  gap: 99px;
  max-width: 1320px;
  margin: 0 auto;
}

.about-reverse {
  flex-direction: row-reverse;
}

.about-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex: 1;
}

.about-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-title {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.about-description {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.about-image {
  flex-shrink: 0;
}

.about-img {
  width: 420px;
  height: 300px;
  border-radius: var(--card-border-radius);
  object-fit: cover;
}

/* Locations Section */
.locations-section {
  padding: 80px 120px;
  width: 100%;
}

.locations-content {
  max-width: 1320px;
  margin: 0 auto;
}

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

/* Looking Section */
.looking-section {
  padding: 80px 120px;
  width: 100%;
}

.looking-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.look-card {
  display: flex;
  width: 580px;
  padding: 20px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
  border-radius: 20px;
}

.card-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.card-img {
  height: 320px;
  align-self: stretch;
  border-radius: var(--card-border-radius);
  object-fit: cover;
}

.card-content {
  display: flex;
  width: 503px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.card-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.card-desc {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.hire-desc {
  color: #000;
}

.card-btn {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  background: var(--dark-mimak);
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  text-decoration: none;
}

/* Testimony Section */
.testimony-section {
  padding: 80px 120px;
  width: 100%;
}

.testimony-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1320px;
  margin: 0 auto;
}

.testimony-header {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  margin-bottom: 20px;
}

.testimony-title {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: capitalize;
  margin: 0;
}

.testimony-cards {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  align-self: stretch;
}

.testimony-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.quote-icon {
  width: 49.664px;
  height: 31.821px;
}

.testimony-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.testimony-text p {
  width: 360px;
  color: #000;
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* Facts Section */
.facts-section {
  padding: 80px 120px;
  width: 100%;
}

.facts-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.facts-card {
  display: flex;
  padding: 40px 60px 100px 60px;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
  border-radius: var(--card-border-radius);
  background: #242b49;
}

.facts-heading {
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.facts-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.fact-item {
  align-self: stretch;
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.facts-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 40px;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.cta-heading {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.cta-text {
  height: 54px;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.cta-btn {
  display: flex;
  padding: 15px 40px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  background: var(--purple-mimak);
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
}

/* Footer */
.footer-widget {
  background: var(--dark-mimak);
  padding: 80px 108px;
  width: 100%;
}

.footer-grp {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  max-width: 1320px;
  margin: 0 auto;
}

.footer-with-logo {
  display: flex;
  align-items: flex-start;
  gap: 50px;
  width: 100%;
}

.footer-logo-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  flex-shrink: 0;
}

.footer-logo {
  width: 233.336px;
  height: 80px;
}

.footer-info {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  flex: 1;
}

.industries,
.solutions,
.for-employers,
.for-jobseekers {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
}

.footer-headline {
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.footer-nav-cat {
  min-width: 210px;
}

.footer-link {
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px 0;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.footer-link:hover {
  color: #ccc;
}

.footer-divide {
  width: 100%;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-divider-line {
  width: 100%;
  height: 1px;
  background: #fff;
}

.footer-bottom-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}

.footer-policies {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.footer-policy-link {
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
  padding: 10px;
  cursor: pointer;
  text-decoration: none;
}

.footer-policy-link:hover {
  color: #ccc;
}

.footer-icon-combo {
  display: flex;
  width: 100%;
  padding: 0 120px;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-copyright {
  color: #fff;
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-transform: capitalize;
  padding: 10px;
}

.footer-policies-2 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-social-icons {
  display: flex;
  padding: 10px;
  align-items: flex-end;
  gap: 40px;
}

/* Mobile-First Responsive Design */

/* Improve tap highlights on mobile */
* {
  -webkit-tap-highlight-color: rgba(119, 42, 64, 0.2);
  -webkit-touch-callout: none;
}

/* Improve scrolling on iOS */
.search-widget-section,
.industries-section,
.solutions-section,
.locations-section,
.testimony-section,
.facts-section {
  -webkit-overflow-scrolling: touch;
}

/* Ensure images don't overflow on mobile */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Improve form elements on mobile */
button,
.job-input,
.location-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* Tablet and Small Desktop */
@media (max-width: 1320px) {
  .header-bar,
  .nav-bar,
  .hero-image-section,
  .search-widget-section,
  .company-description-section,
  .industries-section,
  .solutions-section,
  .locations-section,
  .looking-section,
  .testimony-section,
  .facts-section,
  .footer-widget,
  .policy-page-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .footer-icon-combo {
    padding: 0 60px;
  }

  .expandable-cards,
  .location-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .solutions-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .policy-container {
    gap: 60px;
  }

  .policy-sidebar {
    width: 100%;
    max-width: 432px;
  }

  .policy-main-content {
    width: 100%;
    max-width: 700px;
  }

  /* Filter Component Small Desktop Styles */
  .filter-label-wrapper {
    gap: 150px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .header-bar,
  .nav-bar,
  .hero-image-section,
  .search-widget-section,
  .company-description-section,
  .industries-section,
  .solutions-section,
  .locations-section,
  .looking-section,
  .testimony-section,
  .facts-section,
  .footer-widget,
  .policy-page-section {
    padding: 40px 40px;
  }

  .hero-overlay {
    width: 90%;
    max-width: 600px;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-description {
    font-size: 20px;
  }

  .nav-content {
    flex-direction: row;
    gap: 20px;
    text-align: center;
  }

  .nav-menu {
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
  }

  .expandable-cards,
  .location-cards {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .solutions-cards-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-container,
  .about-reverse {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .about-img {
    width: 100%;
    height: auto;
    min-height: 250px;
  }

  .looking-container {
    flex-direction: column;
    gap: 40px;
  }

  .look-card {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }

  .card-content {
    width: 100%;
  }

  .search-inputs {
    flex-direction: column;
    gap: 15px;
  }

  .job-input,
  .location-input {
    padding: 15px 30px;
    width: 100%;
  }

  .testimony-cards {
    flex-direction: column;
    gap: 30px;
  }

  .testimony-card {
    padding: 0 40px;
  }

  .facts-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .facts-card {
    width: 100%;
    margin: 0 auto;
  }

  .footer-with-logo {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .footer-info {
    flex-direction: column;
    gap: 20px;
    text-align: center;
    width: 100%;
    align-items: center;
  }

  .footer-info > div {
    width: 100px;
    max-width: 400px;
  }

  .footer-icon-combo {
    padding: 0 20px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .policy-container {
    flex-direction: column;
    gap: 40px;
  }

  .policy-sidebar {
    width: 100%;
  }

  .policy-main-content {
    width: 100%;
  }

  /* Filter Component Tablet Styles */
  .filter-header {
    padding: 12px 16px;
  }

  .filter-label-wrapper {
    gap: 100px;
    padding: 6px 12px;
  }

  .filter-content {
    padding: 12px 16px;
  }
}

/* Mobile Landscape */
@media (max-width: 996px) {
  .header-bar,
  .nav-bar,
  .hero-image-section,
  .search-widget-section,
  .company-description-section,
  .industries-section,
  .solutions-section,
  .locations-section,
  .looking-section,
  .testimony-section,
  .facts-section,
  .footer-widget,
  .about-section,
  .policy-page-section {
    padding: 30px 20px;
  }

  .hero-image-section {
    height: 480px;
    padding: 30px 20px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .hero-overlay {
    width: 100%;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 18px;
    line-height: 1.5;
  }

  /* .header-content {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  } */

  /* .contact-info {
    flex-direction: column;
    gap: 10px;
  } */

  .nav-content {
    position: relative;
  }

  .nav-logo {
    width: 180px;
    height: auto;
  }

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

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: var(--card-border-radius);
    padding: 20px;
    margin-top: 10px;
    z-index: 1000;
    flex-direction: column;
    gap: 8px;
    max-height: 70vh;
    overflow-y: auto;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-link {
    padding: 16px 20px;
    margin: 0 -8px;
    border-radius: 8px;
  }

  .search-title,
  .section-title {
    font-size: 32px;
    line-height: 1.3;
    margin-bottom: 24px;
  }

  .search-description,
  .company-description {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 32px;
  }

  .card-title,
  .testimony-title,
  .facts-heading,
  .cta-heading {
    font-size: 28px;
  }

  .card-desc,
  .testimony-text p {
    width: 100%;
    font-size: 18px;
  }

  .cta-text {
    width: 100%;
    font-size: 18px;
  }

  .footer-policies,
  .footer-policies-2 {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .footer-headline {
    font-size: 16px;
  }

  .footer-link,
  .footer-policy-link {
    font-size: 14px;
  }

  .policy-container {
    flex-direction: column;
    gap: 30px;
  }

  .policy-sidebar {
    width: 100%;
  }

  .policy-main-content {
    width: 100%;
    padding: 25px;
  }

  .policy-section-title {
    font-size: 22px;
  }

  .policy-update-date,
  .policy-text {
    font-size: 18px;
  }

  .policy-nav-item span {
    font-size: 14px;
  }

  /* Filter Component Mobile Landscape Styles */
  .filter-header {
    padding: 10px 15px;
  }

  .filter-label-wrapper {
    gap: 50px;
    padding: 6px 10px;
  }

  .filter-label {
    font-size: 14px;
  }

  .filter-content {
    padding: 10px 15px;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .header-bar,
  .nav-bar,
  .hero-image-section,
  .search-widget-section,
  .company-description-section,
  .industries-section,
  .solutions-section,
  .locations-section,
  .looking-section,
  .testimony-section,
  .facts-section,
  .footer-widget,
  .about-section,
  .policy-page-section {
    padding: 20px 15px;
  }

  .logo-img {
    height: 46px;
  }

  .about-img {
    width: 100%;
    height: auto;
    min-height: 200px;
  }

  .feature-card {
    padding: 25px;
    min-height: auto;
  }

  .feature-card-title {
    font-size: 20px;
  }

  .feature-card-description {
    font-size: 16px;
  }

  .hero-image-section {
    height: 400px;
  }

  .hero-overlay {
    padding: 25px;
  }

  .hero-title {
    font-size: 24px;
    line-height: 1.2;
  }

  .hero-description {
    font-size: 16px;
    line-height: 1.4;
  }

  .nav-logo {
    width: 150px;
    height: auto;
  }

  .search-title,
  .section-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .search-description,
  .company-description {
    font-size: 16px;
    line-height: 1.4;
  }

  .job-input,
  .location-input {
    padding: 12px 20px;
    font-size: 16px;
  }

  .search-btn,
  .card-btn,
  .cta-btn,
  .outline-btn {
    padding: 16px 30px;
    font-size: 16px;
    width: 100%;
    text-align: center;
    min-height: 48px;
    border-radius: 12px;
  }

  .card-title,
  .testimony-title,
  .facts-heading,
  .cta-heading {
    font-size: 24px;
    line-height: 1.2;
  }

  .card-desc,
  .testimony-text p,
  .cta-text {
    font-size: 16px;
    line-height: 1.4;
  }

  .facts-card {
    padding: 25px 15px 50px 15px;
  }

  .footer-logo {
    width: 180px;
    height: auto;
  }

  .footer-info {
    gap: 20px;
  }

  .industries,
  .solutions,
  .for-employers,
  .for-jobseekers {
    width: 100%;
    text-align: center;
  }

  .footer-headline {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-link,
  .footer-policy-link,
  .footer-copyright {
    font-size: 12px;
    padding: 8px;
  }

  .contact-email,
  .contact-phone {
    font-size: 12px;
  }

  .social-icons-header,
  .footer-social-icons {
    transform: scale(0.8);
  }

  .policy-container {
    flex-direction: column;
    gap: 20px;
  }

  .policy-sidebar {
    width: 100%;
  }

  .policy-main-content {
    width: 100%;
    padding: 20px;
  }

  .policy-section-title {
    font-size: 20px;
  }

  .policy-update-date,
  .policy-text {
    font-size: 16px;
  }

  .policy-nav-item {
    padding: 8px 20px 8px 0;
  }

  .policy-nav-item span {
    font-size: 12px;
    line-height: 1.3;
  }

  /* Filter Component Mobile Portrait Styles */
  .filter-header {
    padding: 6px 10px;
  }

  .filter-label-wrapper {
    gap: 20px;
    padding: 4px 8px;
  }

  .filter-label {
    font-size: 13px;
  }

  .filter-content {
    padding: 8px 12px;
  }
}

/* Policy Page Specific Styles */
.policy-page-section {
  width: 100%;
}

.policy-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 83px;
  max-width: 1320px;
  margin: 0 auto;
}

.policy-sidebar {
  display: flex;
  width: 432px;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .policy-sidebar-sticky {
    position: sticky;
    top: 120px;
    align-self: flex-start;
    z-index: 10;
    display: flex;
    flex-direction: column;
  }
}

.policy-nav-item {
  display: flex;
  padding: 5px 40px 5px 0;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
  margin: 0 0 5px 0;
}

.policy-nav-item span {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.policy-nav-item.active span {
  color: var(--purple-mimak);
  font-weight: 600;
}

.policy-main-content {
  display: flex;
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  flex: 1;
}

.policy-section-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.policy-update-date {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.policy-text {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* Filter Component Styles */
.filter-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  position: relative;
}

.filter-header {
  display: flex;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
  align-self: stretch;
  border-radius: 2px;
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 44px;
  border: 1px solid transparent;
}

.filter-header:hover {
  border-color: var(--purple-mimak);
  box-shadow: 0 2px 12px 0 rgba(119, 42, 64, 0.1);
}

.filter-header:focus {
  outline: 2px solid var(--purple-mimak);
  outline-offset: 2px;
  border-color: var(--purple-mimak);
}

.filter-label-wrapper {
  display: flex;
  align-items: center;
  gap: 200px;
  border-radius: var(--card-border-radius);
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  position: relative;
  flex: 1;
  padding: 8px 16px;
  background: #fff;
}

.filter-label {
  color: #000;
  font-family: "General Sans", -apple-system, Roboto, Helvetica, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  position: relative;
}

.filter-arrow {
  display: flex;
  transform: rotate(90deg);
  justify-content: flex-end;
  align-items: center;
  position: relative;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.filter-arrow.open {
  transform: rotate(-90deg);
}

.filter-content {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 15px 20px;
  border-radius: 0 0 10px 10px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  margin-top: 2px;
  border: 1px solid rgba(18, 25, 47, 0.1);
  border-top: none;
  animation: filterSlideDown 0.2s ease-out;
}

.filter-content.show {
  display: flex;
}

@keyframes filterSlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Filter Option Styles */
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 40px;
  width: 100%;
}

.filter-option:hover,
.filter-option:focus {
  background-color: rgba(119, 42, 64, 0.1);
  outline: 2px solid var(--purple-mimak);
  outline-offset: 2px;
}

.filter-option-text {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.filter-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid #455076;
  border-radius: 3px;
  background: #fff;
  position: relative;
  flex-shrink: 0;
}

.filter-checkbox.checked {
  background: var(--purple-mimak);
  border-color: var(--purple-mimak);
}

.filter-checkbox.checked::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* Job Listing Page Styles */
.job-listing-page {
  width: 100%;
  background: #fff;
}

/* Page Header */
.page-header-section {
  padding: 20px 0 40px 120px;
  width: 100%;
}

.page-header-content {
  max-width: 1320px;
  margin: 0 auto;
}

/* Job Search Section */
.job-search-section {
  padding: 0 120px 80px 120px;
  width: 100%;
}

.job-search-content {
  max-width: 1320px;
  margin: 0 auto;
}

/* Sort Filter Bar */
.sort-filter-bar {
  display: inline-flex;
  align-items: center;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  margin-bottom: 40px;
  overflow: hidden;
}

.sort-filter {
  display: flex;
  padding: 10px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  min-height: 47px;
}

.sort-filter.active {
  background: rgba(197, 204, 230, 0.2);
}

.sort-filter span {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.sort-filter.active span {
  color: var(--purple-mimak);
  font-weight: 500;
}

.sort-filter:hover {
  background: rgba(197, 204, 230, 0.1);
}

/* Main Content Area */
.job-main-content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* Filter Sidebar */
.filter-sidebar {
  display: flex;
  width: 460px;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: var(--card-border-radius);
  overflow: hidden;
  flex-shrink: 0;
}

.filter-section {
  width: 100%;
  border-bottom: 1px solid rgba(18, 25, 47, 0.1);
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-title {
  display: flex;
  width: 100%;
  padding: 10px 20px;
  align-items: center;
  gap: 5px;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #f8f9fa;
}

.apply-filter-btn {
  margin: 20px;
  font-size: 14px;
  min-height: 49px;
}

/* Job Listings */
.job-listings {
  display: flex;
  flex-direction: column;
  gap: 40px;
  flex: 1;
}

.job-card {
  display: flex;
  width: 100%;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
}

.job-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0 0 10px 0;
}

.job-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  margin-bottom: 20px;
}

.job-detail-item {
  align-self: stretch;
}

.job-detail-label {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.job-desc p {
  padding: 0 !important;
}

.job-detail-label.overview {
  font-weight: 500;
}

.job-description {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-top: 5px;
}

.apply-btn {
  font-size: 20px;
  text-transform: uppercase;
}

.filter-box {
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  background: #fff;
  border-radius: var(--card-border-radius);
  padding: 15px;
}
/* Responsive Styles for Job Listing */

/* Tablet and Small Desktop */
@media (max-width: 1320px) {
  .page-header-section,
  .job-search-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .job-main-content {
    gap: 30px;
  }

  .filter-sidebar {
    width: 400px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .page-header-section,
  .job-search-section {
    padding: 40px 40px;
  }

  .job-main-content {
    flex-direction: column;
    gap: 30px;
  }

  .filter-sidebar {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  .job-listings {
    width: 100%;
  }

  .job-card {
    max-width: 100%;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .page-header-section,
  .job-search-section {
    padding: 30px 20px;
  }

  .sort-filter-bar {
    flex-direction: column;
    width: 100%;
    margin-bottom: 30px;
  }

  .sort-filter {
    width: 100%;
    justify-content: center;
    border-bottom: 1px solid rgba(18, 25, 47, 0.1);
  }

  .sort-filter:last-child {
    border-bottom: none;
  }

  .filter-sidebar {
    width: 100%;
  }

  .job-card {
    padding: 20px 15px;
  }

  .job-title {
    font-size: 18px;
  }

  .job-detail-label,
  .job-description {
    font-size: 16px;
  }

  .apply-btn {
    font-size: 16px;
    width: 100%;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .page-header-section,
  .job-search-section {
    padding: 20px 15px;
  }

  .sort-filter span {
    font-size: 16px;
  }

  .job-listings {
    gap: 20px;
  }

  .job-card {
    padding: 15px;
  }

  .job-title {
    font-size: 16px;
  }

  .job-detail-label,
  .job-description {
    font-size: 14px;
  }

  .apply-filter-btn {
    margin: 15px;
    font-size: 12px;
  }

  .filter-title {
    font-size: 14px;
    padding: 8px 15px;
  }
}

/* Job Information Page Specific Styles */

/* Job List Sidebar */
.job-list-sidebar {
  display: flex;
  width: 460px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  flex-shrink: 0;
}

.job-card-selected {
  border: 3px solid #455076 !important;
}

.job-card-selected:hover {
  cursor: default !important;
}

/* Job Details Panel */
.job-details-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.job-details-card {
  display: flex;
  padding: 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
}

.job-title-main {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.job-info-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
}

.job-info-item {
  align-self: stretch;
}

.job-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-self: stretch;
  margin-top: 10px;
}

.job-section-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* Job Card Hover States */
.job-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.job-card:focus {
  outline: 2px solid var(--purple-mimak);
  outline-offset: 2px;
}

/* Job Information Page Responsive Styles */

/* Tablet and Small Desktop */
@media (max-width: 1320px) {
  .job-list-sidebar {
    width: 400px;
  }
}

/* Tablet */
@media (max-width: 992px) {
  .job-main-content {
    flex-direction: column;
    gap: 30px;
  }

  .job-list-sidebar {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    padding-bottom: 10px;
    gap: 15px;
  }

  .job-card {
    min-width: 300px;
    flex-shrink: 0;
  }

  .job-details-panel {
    max-width: 100%;
  }
}

/* Mobile Landscape */
@media (max-width: 768px) {
  .job-list-sidebar {
    flex-direction: column;
    overflow-x: visible;
  }

  .job-card {
    min-width: auto;
    width: 100%;
  }

  .job-details-card {
    padding: 20px 15px;
  }

  .job-title-main,
  .job-section-title {
    font-size: 20px;
  }

  .job-detail-label,
  .job-description {
    font-size: 18px;
  }
}

/* Mobile Portrait */
@media (max-width: 576px) {
  .job-details-card {
    padding: 15px;
  }

  .job-title-main,
  .job-section-title {
    font-size: 18px;
  }

  .job-detail-label,
  .job-description {
    font-size: 16px;
  }

  .job-card {
    padding: 15px;
  }

  .job-title {
    font-size: 16px;
  }

  .apply-btn {
    width: 100%;
    font-size: 16px;
  }
}

/* Extra Small Mobile */
@media (max-width: 320px) {
  .header-bar,
  .nav-bar,
  .hero-image-section,
  .search-widget-section,
  .company-description-section,
  .industries-section,
  .solutions-section,
  .locations-section,
  .looking-section,
  .testimony-section,
  .facts-section,
  .footer-widget,
  .policy-page-section,
  .page-header-section,
  .job-search-section {
    padding: 15px 10px;
  }

  .hero-image-section {
    height: 350px;
  }

  .hero-overlay {
    padding: 20px;
  }

  .hero-title {
    font-size: 20px;
  }

  .hero-description {
    font-size: 14px;
  }

  .search-title,
  .section-title {
    font-size: 24px;
  }

  .card-title,
  .testimony-title,
  .facts-heading,
  .cta-heading {
    font-size: 20px;
  }

  .nav-logo {
    width: 120px;
  }

  .footer-logo {
    width: 150px;
  }

  .policy-container {
    flex-direction: column;
    gap: 30px;
  }

  .policy-sidebar {
    width: 100%;
  }

  .policy-main-content {
    width: 100%;
    padding: 20px;
  }

  .policy-section-title {
    font-size: 20px;
  }

  .policy-update-date,
  .policy-text {
    font-size: 16px;
  }

  /* Filter Component Mobile Styles */
  .filter-header {
    padding: 8px 12px;
  }

  .filter-label-wrapper {
    gap: 10px;
    padding: 4px 8px;
  }

  .filter-label {
    font-size: 12px;
  }

  .filter-content {
    padding: 8px 12px;
  }

  /* Job Listing Specific Mobile Styles */
  .sort-filter span {
    font-size: 14px;
  }

  .job-title {
    font-size: 14px;
  }

  .job-detail-label,
  .job-description {
    font-size: 12px;
  }

  .apply-filter-btn {
    margin: 10px;
    font-size: 11px;
  }

  .filter-title {
    font-size: 12px;
    padding: 6px 10px;
  }

  /* Job Information Page Extra Small Mobile */
  .job-details-card {
    padding: 12px;
  }

  .job-title-main,
  .job-section-title {
    font-size: 16px;
  }

  .job-detail-label,
  .job-description {
    font-size: 14px;
  }

  .job-card {
    padding: 12px;
  }

  .apply-btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

/** ABOUT STYLING **/
/* Process Cards Grid */
.process-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.process-card {
  display: flex;
  padding: 40px 30px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(18, 25, 47, 0.15);
  min-height: 220px;
}

.process-card-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  align-self: stretch;
}

.process-card-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.process-card-desc {
  width: 100%;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

/* Application Process Grid */
.application-process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .process-cards-grid,
  .application-process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .hero-about-section {
    height: 480px;
    padding: 30px 20px;
  }

  .process-cards-grid,
  .application-process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-card {
    padding: 25px 20px;
    min-height: auto;
  }
}
/** END ABOUT STYLING **/

/** JOB APPLICATION **/
.job-application-container {
  display: flex;
  gap: 40px;
  padding: 40px 120px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
}

.job-details-sidebar {
  display: flex;
  width: 460px;
  padding: 20px 20px 40px 20px;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
}

.job-main-title {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.job-detail-field {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.job-section-heading {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 20px 0 10px 0;
}

.job-description-text {
  align-self: stretch;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
}

.application-form-container {
  display: inline-flex;
  padding: 20px 40px 40px 40px;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
  width: 700px;
  flex: 1;
}

.form-required-info {
  display: flex;
  align-items: center;
  gap: 5px;
}

.required-asterisk {
  color: var(--purple-mimak);
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.required-text {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.form-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-label-text {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--purple-mimak);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath d='M1 5.5L5.94975 10.4497L10.8995 5.5' stroke='%23455076' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-textarea {
  min-height: 200px;
  align-items: flex-start;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  width: 588px;
  align-items: flex-start;
  gap: 5px;
}

.form-checkbox {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid var(--dark-mimak);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin: 2px 0;
}

.form-checkbox:checked {
  background: var(--purple-mimak);
  border-color: var(--purple-mimak);
}

.checkbox-label {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  flex: 1;
}

.page-header-section {
  padding: 20px 0 40px 120px;
  width: 100%;
}

.page-header-content {
  max-width: 1320px;
  margin: 0 auto;
}

.page-title {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

/* Responsive design */
@media (max-width: 1320px) {
  .job-application-container,
  .page-header-section {
    padding-left: 60px;
    padding-right: 60px;
  }

  .job-details-sidebar {
    width: 400px;
  }

  .application-form-container {
    width: 600px;
  }
}

@media (max-width: 992px) {
  .job-application-container {
    flex-direction: column;
    gap: 30px;
    padding: 40px 40px;
  }

  .job-details-sidebar {
    width: 100%;
    max-width: 580px;
    margin: 0 auto;
  }

  .application-form-container {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
  }

  .form-group-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-group-half {
    min-width: 100%;
  }

  .form-input,
  .form-select,
  .form-textarea {
    min-width: 100%;
  }

  .form-input-full {
    min-width: 100%;
  }

  .form-checkbox-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .job-application-container,
  .page-header-section {
    padding: 30px 20px;
  }

  .application-form-container {
    padding: 25px 20px 30px 20px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 16px;
    font-size: 16px;
  }

  .job-main-title,
  .job-section-heading {
    font-size: 20px;
  }

  .job-detail-field,
  .job-description-text {
    font-size: 18px;
  }

  .page-title {
    font-size: 28px;
  }
}

@media (max-width: 576px) {
  .job-application-container,
  .page-header-section {
    padding: 20px 15px;
  }

  .application-form-container {
    padding: 20px 15px 25px 15px;
  }

  .job-main-title,
  .job-section-heading {
    font-size: 18px;
  }

  .job-detail-field,
  .job-description-text {
    font-size: 16px;
  }

  .page-title {
    font-size: 24px;
  }

  .cta-btn {
    width: 100%;
    font-size: 16px;
  }
}

/** END JOB APPLICAITON **/

/** CONTACT US **/
/* Contact Form specific styles */
.contact-form-container {
  display: flex;
  padding: 20px 40px 40px 40px;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 2px 15px 0 rgba(0, 0, 0, 0.15);
  width: 100%;
}

.form-required-info {
  display: flex;
  align-self: start;
  gap: 5px;
}

.required-asterisk {
  color: var(--purple-mimak);
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.required-text {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
}

.form-group-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.form-label {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-label-text {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  text-transform: uppercase;
}

.form-input,
.form-select,
.form-textarea {
  display: flex;
  padding: 8px 20px;
  align-items: center;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid var(--dark-mimak);
  background: transparent;
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  width: 100%;
  transition: border-color 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--purple-mimak);
}

.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3e%3cpath d='M1 5.5L5.94975 10.4497L10.8995 5.5' stroke='%23455076' stroke-width='1.5' stroke-linecap='round'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px 12px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.form-textarea {
  min-height: 200px;
  align-items: flex-start;
  resize: vertical;
}

.form-checkbox-group {
  display: flex;
  width: 588px;
  align-items: flex-start;
  gap: 5px;
}

.form-checkbox {
  width: 12px;
  height: 12px;
  border-radius: 2px;
  border: 1px solid var(--dark-mimak);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin: 2px 0;
}

.form-checkbox:checked {
  background: var(--purple-mimak);
  border-color: var(--purple-mimak);
}

.checkbox-label {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-weight: 400;
  line-height: normal;
  flex: 1;
}

.contact-section {
  padding: 20px 20px 40px 20px;
  width: 100%;
}

.contact-content {
  max-width: 460px;
}

.contact-description {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
}

.locations-section-custom {
  padding: 20px 0;
  width: 100%;
  font-size: 20px;
}

.locations-content-custom {
  max-width: 460px;
}

.location-text {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin: 0;
  white-space: pre-line;
}

.main-content-container {
  display: flex;
  gap: 40px;
  padding: 40px 120px;
  max-width: 1440px;
  margin: 0 auto;
  align-items: flex-start;
}

.left-content {
  flex: 1;
  max-width: 580px;
}

.right-content {
  flex: 1;
  max-width: 700px;
  display: flex;
  justify-content: center;
}

/* Update hero section for contact page */
.hero-component {
  width: 100%;
  height: 640px;
  padding: 42px 94px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  background-color: lightgray;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  position: relative;
}

.form-group {
  margin-bottom: 20px;
}

/* Responsive design for mobile */
@media (max-width: 992px) {
  .main-content-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 40px;
  }

  .form-group-row {
    flex-direction: column;
    gap: 20px;
  }

  .form-group-half {
    min-width: 100%;
  }

  .form-input,
  .form-select,
  .form-textarea {
    min-width: 100%;
  }

  .form-input-full {
    min-width: 100%;
  }

  .form-checkbox-group {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .main-content-container {
    padding: 30px 20px;
  }

  .hero-component {
    height: 480px;
    padding: 30px 20px;
    margin-bottom: calc(var(--hero-component-card-margin-bottom) + 50px);
  }

  .hero-content {
    position: absolute;
    bottom: var(--hero-component-card-offset);
    max-width: 600px;
    margin: auto;
    left: 0;
    right: 0;
    background: transparent;
    border-radius: var(--card-border-radius);
    padding: 0 15px;
  }

  .hero-overlay {
    background: rgba(255, 255, 255, 1);
  }

  .contact-form-container {
    padding: 25px 20px 30px 20px;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 12px 16px;
    font-size: 16px;
  }
}
/** END CONTACT US **/
/** FAQ **/
.faq-main-section {
  padding: 80px 120px;
  width: 100%;
  background: #fff;
}

.faq-container {
  max-width: 1320px;
  margin: 0 auto;
}

.faq-header {
  display: inline-flex;
  padding: 20px 20px 40px 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}

.faq-title {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 36px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}

.faq-content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.faq-description {
  width: 420px;
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.faq-list-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
  border-radius: var(--card-border-radius);
  overflow: hidden;
  background: #fff;
  flex: 1;
  max-width: 694px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item.first {
  border-radius: 10px 10px 0 0;
}

.faq-item.last {
  border-radius: 0 0 10px 10px;
}

.faq-question {
  display: flex;
  padding: 10px 20px;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--card-border-radius);
  background: #fff;
  width: 100%;
  cursor: pointer;
  transition: background-color 0.3s ease;
  min-height: 42px;
  border: none;
  text-align: left;
}

.faq-question:hover {
  background: #f8f9fa;
}

.faq-question-text {
  color: #000;
  font-family: var(--mimak-font-family);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  flex: 1;
}

.faq-arrow {
  display: flex;
  transform: rotate(90deg);
  justify-content: flex-end;
  align-items: center;
  transition: transform 0.3s ease;
  margin-left: 20px;
}

.faq-item.expanded .faq-arrow {
  transform: rotate(-90deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 20px 20px;
  width: 100%;
  background: #fff;
}

.faq-item.expanded .faq-answer {
  display: block;
}

.faq-answer-text {
  color: #455076;
  font-family: var(--mimak-font-family);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
}

/* Responsive adjustments for FAQ */
@media (max-width: 992px) {
  .faq-main-section {
    padding: 40px 40px;
  }

  .faq-content-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .faq-description {
    width: 100%;
    text-align: center;
  }

  .faq-list-container {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .faq-main-section {
    padding: 30px 20px;
  }

  .faq-title {
    font-size: 28px;
    text-align: center;
  }

  .faq-description {
    font-size: 18px;
  }

  .faq-content-wrapper {
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .faq-main-section {
    padding: 20px 15px;
  }

  .faq-title {
    font-size: 24px;
  }

  .faq-description {
    font-size: 16px;
  }

  .faq-question {
    padding: 15px;
  }

  .faq-question-text {
    font-size: 14px;
  }
}
/** END FAQ **/

.hiring-card {
  border: none;
  border-radius: 20px;
  gap: 40px;
  max-width: 580px;
  padding: 20px 0;
}

.hiring-card .card-img-top {
  height: 320px;
  align-self: stretch;
  border-radius: var(--card-border-radius);
  object-fit: cover;
}

.hiring-card .card-footer {
  background: transparent;
  border: none;
}

@media (max-width: 991.98px) {
  .hiring-card {
    max-width: 100%;
  }
}

.swiper-pagination {
  text-align: center;
  margin-top: 1rem;
}

.swiper-pagination-bullet {
  border: 1px solid var(--primary-mimak);
}

.section-title.sm {
  font-size: 24px;
}

.mb-20 {
  margin-bottom: 20px !important;
}

.mb-40 {
  margin-bottom: 40px !important;
}

.mt-40 {
  margin-top: 40px !important;
}

.my-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.mb-80 {
  margin-bottom: 80px !important;
}

.feature-card-x {
  cursor: pointer;
  border-radius: var(--card-border-radius);
}

.feature-card-x .title {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

.feature-card-x .desc {
  color: var(--dark-mimak);
  font-family: var(--mimak-font-family);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.feature-card-x .overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.9);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--card-border-radius);
}

.feature-card-x:hover .overlay {
  opacity: 1;
}

.feature-card-x:hover .short-text {
  display: none !important;
}

.custom-g-6 {
  --bs-gutter-y: 87px;
  --bs-gutter-x: 60px;
}

.custom-g-7 {
  --bs-gutter-y: 50px;
  --bs-gutter-x: 59px;
}

@media (max-width: 768px) {
  .custom-g-6 {
    --bs-gutter-y: 60px;
    --bs-gutter-x: 60px;
  }
}

.my-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.mb-50 {
  margin-bottom: 50px !important;
}

.mt-50 {
  margin-top: 50px !important;
}

.br-10 {
  border-radius: var(--card-border-radius);
}

.info-card {
  border-radius: var(--card-border-radius);
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(18, 25, 47, 0.15);
  --bs-card-border-color: rgba(0, 0, 0, 0);
  transition: transform 0.3s ease-in-out;
}

.info-card:hover {
  --bs-card-border-color: rgba(0, 0, 0, 0.175);
  transform: translateY(5px);
}

.search-container {
  width: 100%;
}
.search-container .input {
  display: flex;
  padding: 15px 30px;
  align-items: center;
  gap: 10px;
  border-radius: var(--card-border-radius);
  border: 3px solid var(--dark-mimak);
  flex: 1;
  cursor: pointer;
  transition: border-color 0.3s ease;
  min-height: 54px;
}

.input-group-text {
  background-color: white;
  border: 3px solid var(--dark-mimak);
  border-right: none;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}

.search-container .input-group .input {
  border-left: 0px;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 300px !important;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.address-card {
  background-color: #f8f9fa; /* Light grey background */
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
}
.address-card h3 {
  font-weight: bold;
  color: #1a233b; /* Dark text color */
}
.address-card p {
  color: #6c757d;
}

.mimak-footer {
  background-color: var(--dark-mimak);
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.list-unstyled li {
  margin-bottom: 0.5rem;
}
/* Style for the logo on mobile */
@media (max-width: 767px) {
  .mimak-footer .logo-section {
    *text-align: center;
    *margin-bottom: 2rem;
  }

  .mimak-footer .nav-container {
    padding-left: 20%;
  }
}

.job-filter-card {
  border-radius: 2px;
  border: 0;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.15);
}

/* Container for all filter items to manage borders and spacing */
.filter-item-container {
  border-top: 1px solid #dee2e6;
  background: rgba(197, 204, 230, 0.2);
}

/* Style for each individual filter item */
.filter-item {
  padding: 10px 20px;
}

/* Remove the last border to match the design */
.filter-item:last-child {
  border-bottom: none;
}

/* Custom Checkbox Styling */
.custom-checkbox {
  position: relative;
  cursor: pointer;
  display: inline-block;
}

.custom-checkbox input[type="checkbox"] {
  /* Hide the default checkbox */
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.custom-checkmark {
  height: 1.25rem;
  width: 1.25rem;
  background-color: #fff;
  border: 2px solid #ccc;
  border-radius: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-in-out;
}

.custom-checkmark-icon {
  width: 0.75rem;
  height: 0.75rem;
  fill: none;
  stroke: #000;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* State for checked checkbox */
.custom-checkbox input[type="checkbox"]:checked ~ .custom-checkmark {
  background-color: transparent;
  border-color: #000;
}

.custom-checkbox
  input[type="checkbox"]:checked
  ~ .custom-checkmark
  .custom-checkmark-icon {
  opacity: 1;
}

/* Hover state for the checkmark box */
.custom-checkbox:hover .custom-checkmark {
  border-color: #000;
}

/* Collapse icon rotation */
.chevron-icon {
  transition: transform 0.3s ease;
}

.chevron-icon.collapsed {
  transform: rotate(-180deg);
}

.faq-accordion {
  width: 100%;
}

.faq-accordion .accordion-item {
  border: none;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.faq-accordion .accordion-header .accordion-button {
  background-color: #fff;
  color: #212529;
  font-weight: 500;
  padding: 1rem;
  transition: none;
}

.faq-accordion .accordion-header .accordion-button:not(.collapsed) {
  background-color: #fff;
  color: #212529;
  box-shadow: none;
  border-bottom-color: #dee2e6;
}

.faq-accordion .accordion-header .accordion-button:focus {
  box-shadow: none;
  border-color: #dee2e6;
}

.faq-accordion .accordion-body {
  background-color: rgba(197, 204, 230, 0.2);
  padding: 1.5rem;
}

.faq-accordion .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);
}

/* Styling for accordion without body content to remove border-bottom */
.faq-accordion .no-body .accordion-button {
  border-bottom: none;
  border-radius: 0.5rem;
}

.faq-accordion .no-body .accordion-button.collapsed {
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
}

.page-link {
  --bs-pagination-bg: transparent;
  --bs-pagination-color: var(--purple-mimak);
}

.active > .page-link,
.page-link.active {
  --bs-pagination-active-bg: transparent;
  --bs-pagination-active-border-color: var(--purple-mimak);
  --bs-pagination-active-color: var(--purple-mimak);
  font-weight: 900;
}

.disabled > .page-link,
.page-link.disabled {
  --bs-pagination-disabled-bg: transparent;
  --bs-pagination-disabled-border-color: transparent;
}

.pagination {
  --bs-pagination-border-width: 0;
}

.grecaptcha-badge {
  display: none;
}

.spinner {
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.75); /* semi-transparent backdrop */
  z-index: 9999;
  pointer-events: all; /* block user interaction while loading */
}

/* circular loading indicator */
.spinner .loading-spinner {
  width: 48px;
  height: 48px;
  border: 5px solid #e6e6e6; /* track color */
  border-top-color: var(--dark-mimak); /* accent / spinning color */
  border-radius: 50%;
  box-sizing: border-box;
  animation: spin 0.75s linear infinite;
  -webkit-animation: spin 0.75s linear infinite;
}

/* optional smaller variant */
.spinner.small .loading-spinner {
  width: 28px;
  height: 28px;
  border-width: 4px;
}

/* spin animation */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

.klaro .cookie-notice:not(.cookie-modal-notice) {
  --dark1: var(--dark-mimak);
  z-index: 1999 !important;
}

.klaro .cookie-modal .cm-modal.cm-klaro {
  --dark1: var(--dark-mimak);
}

.klaro .cookie-modal .cm-modal.cm-klaro {
  --dark1: var(--dark-mimak);
}

.klaro .cookie-modal .cm-btn.cm-btn-info,
.klaro .context-notice .cm-btn.cm-btn-info,
.klaro .cookie-notice .cm-btn.cm-btn-info {
  --dark1: var(--dark-mimak);
}

/* Custom Klaro Styling based on your website's theme */
@media (min-width: 1024px) {
  .klaro .cookie-notice:not(.cookie-modal-notice) {
    --notice-max-width: 100%;
    --border-radius: 0;
    --notice-right: 0;
    --notice-bottom: 0;
    --dark1: var(--dark-mimak);
  }
}

.klaro .cookie-modal a,
.klaro .context-notice a,
.klaro .cookie-notice a {
  color: #fff !important;
  text-decoration: underline !important;
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body {
  padding: 2em !important;
}

.klaro .cookie-notice {
  z-index: 10000000 !important;
}

.klaro .cookie-notice:not(.cookie-modal-notice) .cn-body p {
  margin-bottom: 0.5em;
  font-size: 1.5em;
}

.cm-powered-by {
  display: none !important;
}
