@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --primary--color: #1ec28b;
  --mustard-color: #ff8900;
  --light-green-color: #b2f3de;
  --dark-green: #0d8a5f;
  --black--color: #000000;
  --secondary--color: #ffffff;
  --text-color: #73848c;
  --navy-color: #2b2945;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", sans-serif !important;
}

html {
  scroll-behavior: smooth;
}

body {
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  font-family: "Jost", sans-serif !important;
  background-color: #f8f9fa;
  color: var(--navy-color);
}


h1,
h2,
h3,
h4,
h5,
h6,
p,
span {
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none !important;
}

.contact-form {
  background-color: var(--secondary--color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--navy-color);
  font-family: "Jost", sans-serif;
}

.form-control {
  width: 100%;
  padding: 15px !important;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: var(--primary--color) !important;
  box-shadow: 0 0 0 3px rgba(30, 194, 139, 0.2) !important;
  outline: none !important;
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary--color);
  color: var(--secondary--color);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.submit-btn:hover {
  background-color: var(--dark-green) !important;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--navy-color);
  font-weight: 500;
  transition: all 0.3s;
}

.pagination a.active,
.pagination a:hover {
  background-color: var(--primary--color);
  color: var(--secondary--color);
}

/* ================ Enhanced Navbar Section ================ */

.navbar-1 {
  background-color: transparent;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-2 {
  background-color: white;
  backdrop-filter: blur(10px);
  padding: 12px 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.navbar-1::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right, rgba(150, 150, 150, 0.4) 1px,
      transparent 1px), linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
  mask-image: repeating-linear-gradient(to right, black 0px, black 3px, transparent 3px, transparent 8px),
    repeating-linear-gradient(to bottom, black 0px, black 3px, transparent 3px, transparent 8px);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.navbar.scrolled::before {
  opacity: 0;
}

.navbar-light .navbar-toggler-icon {
  filter: brightness(0) saturate(100%) invert(19%) sepia(18%) saturate(1363%) hue-rotate(210deg) brightness(94%) contrast(93%);
}

.navbar.scrolled {
  background-color: var(--light-green-color);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  padding: 8px 0;
}

.navbar-brand {
  width: 200px;
  transition: all 0.3s ease;
}

.navbar-brand img {
  transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand img {
  transform: scale(0.95);
}

/* Desktop Menu */
.navbar-nav.desktop-menu .nav-item {
  margin: 0 5px;
}

.navbar-nav.desktop-menu .nav-link {
  color: var(--navy-color);
  font-weight: 500;
  font-size: 16px;
  padding: 8px 16px !important;
  border-radius: 6px;
  position: relative;
  transition: color 0.3s ease;
}

/* Underline (hidden by default) */
.navbar-nav.desktop-menu .nav-link {
  position: relative;
}

.navbar-nav.desktop-menu .nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 0;
  height: 2px;
  background-color: var(--mustard-color);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.navbar-nav.desktop-menu .nav-link:hover::after {
  transform: scaleX(1);
  transition-delay: 0.05s;
}

.navbar-nav.desktop-menu .nav-link::before {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%) translateY(6px) scaleY(0);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid var(--mustard-color);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.navbar-nav.desktop-menu .nav-link:hover::before {
  transform: translateX(-50%) translateY(0) scaleY(1);
  opacity: 1;
  transition-delay: 0.1s;
}

.navbar-nav.desktop-menu .nav-link.active::before {
  transform: translateX(-50%) translateY(0) scaleY(1);
  opacity: 1;
  border-bottom-color: var(--primary--color);
}

.navbar-nav.desktop-menu .nav-link:hover {
  color: var(--mustard-color);
  opacity: 1;
}

.navbar-nav.desktop-menu .nav-link:hover::after {
  transform: scaleX(1);
}

.navbar-nav.desktop-menu .nav-link.active {
  color: var(--primary--color);
  font-weight: 600;
}

.navbar-nav.desktop-menu .nav-link.active::after {
  transform: scaleX(1);
  background-color: var(--primary--color);
}

/* Login button */
.navbar-nav.desktop-menu .nav-link.login-btn {
  background-color: var(--primary--color);
  color: white !important;
  border-radius: 50px;
  padding: 8px 20px !important;
  margin-left: 10px;
  box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
  transition: all 0.3s ease;
}

.navbar-nav.desktop-menu .nav-link.login-btn::after {
  display: none;
}

.navbar-nav.desktop-menu .nav-link.login-btn:hover {
  background-color: var(--mustard-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 137, 0, 0.3);
  color: white !important;
}

/* Mobile Toggle Button */
/* Base toggler button */
.navbar-toggler {
  padding: 6px 10px;
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  background: transparent !important;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

/* Remove focus outline */
.navbar-toggler:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* Custom hamburger icon (white lines) */
.navbar-toggler .navbar-toggler-icon {
  width: 28px;
  height: 28px;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255,255,255,0.95)' stroke-width='3' stroke-linecap='round' d='M5 7h20M5 15h20M5 23h20'/%3e%3c/svg%3e");
}

/* Hover effect */
.navbar-toggler:hover {
  background-color: rgba(30, 194, 139, 0.15);
}

/* ================= Mobile Menu (Offcanvas) ================= */
.offcanvas {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fb 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
  border-left: none;
  transition: transform 0.4s ease-in-out, opacity 0.4s ease;
}

/* Header */
.offcanvas-header {
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1rem 1.5rem;
}

.offcanvas-header .navbar-brand img {
  width: 140px;
}

/* Close Button */
.btn-close-white {
  filter: invert(0.7);
  opacity: 0.8;
  transition: all 0.3s ease;
}

.btn-close-white:hover {
  filter: invert(0);
  opacity: 1;
}

/* Offcanvas Body */
.offcanvas-body {
  padding: 2rem 1.5rem;
}



.offcanvas-body .nav-link {
  font-size: 17px;
  font-weight: 500;
  color: var(--navy-color);
  padding: 10px 14px;
  border-radius: 8px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 5px;
}


/* Hover / Active effect */
.offcanvas-body .nav-link:hover {
  background-color: rgba(30, 194, 139, 0.1);
  color: var(--primary--color);
  transform: translateX(5px);
}

.offcanvas-body .nav-link.active {
  background-color: var(--primary--color);
  color: white;
  box-shadow: 0 3px 10px rgba(30, 194, 139, 0.3);
}

/* Optional Icons (if needed) */
.offcanvas-body .nav-link i {
  font-size: 18px;
}

/* Mobile menu slide animation */
.offcanvas.offcanvas-end.show {
  transform: translateX(0);
  opacity: 1;
}

.offcanvas.offcanvas-end {
  transform: translateX(100%);
  opacity: 0;
}

.offcanvas .login-btn {
  background-color: var(--primary--color);
  color: white !important;
  border-radius: 50px;
  padding: 8px 20px !important;
  box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
  transition: all 0.3s ease;
  display: inline;
}

.offcanvas.offcanvas-end.login-btn::after {
  display: none;
}

.offcanvas .login-btn:hover {
  background-color: var(--mustard-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(255, 137, 0, 0.3);
  color: white !important;
}

/* ================ Hero Section ================ */
#hero {
  padding-top: 100px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, var(--light-green-color) 10%, #ffffff 100%);
}

#hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right,
      rgba(150, 150, 150, 0.4) 1px,
      transparent 1px),
    linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
  mask-image: repeating-linear-gradient(to right,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px),
    repeating-linear-gradient(to bottom,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

#hero .floting-icon {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

#hero .floting-icon img {
  position: absolute;
  max-width: 60px;
}

#hero .floting-icon .arrow {
  top: 10%;
  left: 35%;
  animation: float-arrow 6s ease-in-out infinite;
}

#hero .floting-icon .shpae1 {
  top: 10%;
  right: 8%;
  animation: float-shape1 15s ease-in-out infinite;
}

#hero .floting-icon .shpae2 {
  top: 30%;
  left: 3%;
  animation: float-shape2 15s ease-in-out infinite;
}

#hero span {
  display: inline-block;
  background-color: var(--mustard-color);
  padding: 5px 18px;
  border-radius: 30px;
  color: var(--secondary--color);
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 0.3s ease;
}

#hero span:hover {
  transform: translateY(-2px);
}

#hero .heading {
  font-size: 60px;
  font-weight: 800;
  color: #2b2945;
  text-transform: capitalize;
  line-height: 1.2;
  margin: 25px 0;
}

#hero .description {
  font-size: 18px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

#hero .hero-btn .btn-main {
  background-color: var(--primary--color, #00b894);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

#hero .hero-btn .btn-main:hover {
  background-color: var(--mustard-color);
  transform: translateY(-2px);
}

/* Floating animation for image */
#hero .hero-img {
  width: 100%;
  z-index: 0;
  position: relative;
  animation: float 4s ease-in-out infinite;
}



/* Carousel transition */
.carousel-fade .carousel-item {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.carousel-fade .carousel-item.active {
  opacity: 1;
  transition: opacity 1s ease-in-out;
}

/* ===== Custom Animations ===== */
.animate-slide {
  opacity: 0;
  transform: translateY(30px);
  animation: slideIn 1.2s ease forwards 0.3s;
}

.animate-fade {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards 0.7s;
}

.animate-up {
  opacity: 0;
  transform: translateY(20px);
  animation: moveUp 1s ease forwards 1s;
}

.carousel-item.active .hero-img {
  opacity: 1 !important;
  transform: scale(1);
}

.animate-zoom {
  opacity: 0;
  transform: scale(0.9);
  animation: zoomIn 1.2s ease forwards 0.5s;
}

/* ===== Carousel Indicators (Custom Dots) ===== */
#hero .carousel-indicators {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
  z-index: 10;
}

#hero .carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--primary--color);
  transition: all 0.4s ease;
  opacity: 0.7;
  cursor: pointer;
}

#hero .carousel-indicators button.active {
  background-color: var(--mustard-color);
  transform: scale(1.5);
  opacity: 1;
}

#hero .carousel-indicators button:hover {
  transform: scale(1.2);
  opacity: 1;
}

/* Optional glowing pulse animation for active dot */
#hero .carousel-indicators button.active::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--mustard-color);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 1.5s ease-out infinite;
}

#search {
  margin-top: 80px;
  background: #b2f3de;
  box-shadow: 0 4px 10px rgba(30, 194, 139, 0.3);
  border-radius: 20px;
}

#search .stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item .stat-number {
  color: var(--mustard-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0px;
}

.stat-item .stat-label {
  color: var(--black--color);
  font-size: 0.9rem;
  margin-bottom: 0px;
  font-weight: 600;
}

#search .stats {
  display: flex;
  gap: 20px;
  align-items: center;
}

#search .stats img {
  width: 40px;
  transition: all 0.3s ease;
}

#search .stats img:hover {
  transform: scale(1.1);
}

#searchform {
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.input-container {
  position: relative;
  font-family: "Jost", sans-serif;
}

#searchform .form-control,
#searchform select {
  height: 55px;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  padding-left: 50px !important;
  font-size: 1rem;
  transition: all 0.3s ease;
  width: 100%;
  font-family: "Jost", sans-serif;
}

#searchform .form-control:focus,
#searchform select:focus {
  border-color: var(--primary--color);
  box-shadow: 0 0 0 0.25rem rgba(30, 194, 139, 0.25);
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  z-index: 5;
  pointer-events: none;
  transition: color 0.3s ease;
}

#searchform .form-control:focus+.input-icon,
#searchform select:focus+.input-icon {
  color: var(--primary--color);
}

#searchform button {
  background: linear-gradient(135deg, var(--primary--color), var(--dark-green));
  color: white;
  border: none;
  height: 55px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "Jost", sans-serif;
}

#searchform button:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--primary--color));
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(30, 194, 139, 0.4);
}

.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: var(--navy-color);
  font-weight: 700;
  font-size: 2.2rem;
}

.section-subtitle {
  text-align: center;
  margin-bottom: 40px;
  color: #6c757d;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ================= Category Section ================= */
#categories {
  padding: 80px 0;
  padding-bottom: 0;
}

#categories .category-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Box design */
#categories .single-category {
  --r: 20px;
  --s: 30px;
  --x: 20px;
  --y: 10px;

  position: relative;
  overflow: visible;
  width: 18%;
  height: 200px;
  aspect-ratio: 1;
  border-radius: var(--r);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

#categories .single-category::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r);
  background: #b2f3de;
  z-index: 0;
  --_m: /calc(2 * var(--r)) calc(2 * var(--r)) radial-gradient(#000 70%, #0000 72%);
  --_g: conic-gradient(at calc(100% - var(--r)) var(--r), #0000 25%, #000 0);
  --_d: (var(--s) + var(--r));
  mask: calc(100% - var(--_d) - var(--x)) 0 var(--_m),
    100% calc(var(--_d) + var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(var(--r) + var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(var(--_d) + var(--y));
  mask-repeat: no-repeat;
  -webkit-mask:
    /* Safari support */
    calc(100% - var(--_d) - var(--x)) 0 var(--_m),
    100% calc(var(--_d) + var(--y)) var(--_m),
    radial-gradient(var(--s) at 100% 0, #0000 99%, #000 calc(100% + 1px)) calc(-1 * var(--r) - var(--x)) calc(var(--r) + var(--y)),
    var(--_g) calc(-1 * var(--_d) - var(--x)) 0,
    var(--_g) 0 calc(var(--_d) + var(--y));
  -webkit-mask-repeat: no-repeat;
  pointer-events: none;
  transition: 1s;
}

.single-category:hover h6 {
  color: var(--mustard-color);
}

.single-category::after {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 0px;
  background: linear-gradient(135deg,
      var(--mustard-color) 0%,
      var(--mustard-color) 100%);
  border-radius: 20px 0px 100% 0px;
  opacity: 1;
  transition: all 0.4s ease;
  z-index: 0;
}

.single-category:hover::after {
  opacity: 1;
  width: 50px;
  height: 50px;
}

#categories .single-category>* {
  position: relative;
  z-index: 1;
}

.category-btn {
  position: absolute;
  top: -16%;
  right: -38%;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  color: var(--primary--color);
  border: 2px solid var(--primary--color);
  font-weight: bold;
  text-decoration: none;
  z-index: 9999;
  font-size: 20px;
  transition: all 0.6s ease;
}

.category-btn:hover {
  background: var(--primary--color);
  color: #fff;
  border: 2px solid var(--primary--color);
}

#categories .single-category img {
  width: 40px;
  margin-bottom: 10px;
}

#categories .single-category h6 {
  margin: 5px 0;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  transition: 0.5s;
}

#categories .single-category small {
  opacity: 0.8;
  font-family: "Jost", sans-serif;
}

.section-heading {
  margin-bottom: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section-description {
  font-size: 18px;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 15px;
}

.section-heading h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--navy-color);
  margin: 0;
  position: relative;
  display: inline-block;
  font-family: "Jost", sans-serif;
}

.section-heading h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--primary--color);
  border-radius: 2px;
}

.section-heading a {
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  color: var(--primary-color);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-heading a:hover {
  color: var(--secondary-color);
  gap: 12px;
}

/* ========================== Features job section ================= */
#job {
  background-image: url(../images/features/vectosmartobject.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right center;
  position: relative;
}

#job::after {
  content: "";
  position: absolute;
  top: 2%;
  right: 20%;
  width: 60px;
  height: 100px;
  background-image: url(../images/features/star.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s ease;
  z-index: 0;
  transform: translate(-50%, 10%);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

#job::before {
  content: "";
  position: absolute;
  top: 13%;
  left: 2%;
  width: 73px;
  height: 100px;
  background-image: url(../images/features/abstract.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s ease;
  z-index: 0;
  transform: translate(-50%, 10%);
  opacity: 0.3;
  animation: float 6s ease-in-out infinite;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.job-card {
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
  border-top: 4px solid var(--primary--color);
  display: flex;
  flex-direction: column;
  background-color: #fff;
}

.job-card::after {
  content: "";
  position: absolute;
  top: -15px;
  right: -30px;
  width: 140px;
  height: 140px;
  background-image: url(../images/features/dots.png);
  transition: all 0.4s ease;
  z-index: 0;
  background-repeat: no-repeat;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: var(--mustard-color);
  background: linear-gradient(to bottom, #b2f3de 10%, #ffffff 100%);
}

.job-card:hover .company-logo {
  border: 2px solid var(--mustard-color);
}

.featured-badge {
  position: absolute;
  top: 15px;
  right: -30px;
  background-color: var(--mustard-color);
  color: var(--secondary--color);
  padding: 5px 35px;
  font-size: 0.8rem;
  font-weight: 600;
  transform: rotate(45deg);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.job-header {
  padding: 20px 20px 15px;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  min-height: 150px;
}

.company-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--light-green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-green);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.job-info {
  min-height: 95px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.job-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy-color);
  margin-bottom: 5px;
  line-height: 1.3;
}

.company-name {
  color: var(--text-color);
  font-size: 0.95rem;
  margin-bottom: 8px;
}

.job-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.job-tag {
  background-color: var(--light-green-color);
  color: var(--dark-green);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

.job-details {
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.deadline {
  color: var(--text-color);
  font-size: 0.9rem;
}

.deadline i {
  color: var(--mustard-color);
  margin-right: 5px;
}

.urgent {
  color: #e74c3c;
  font-weight: 600;
}

.apply-btn {
  background-color: var(--primary--color);
  color: var(--secondary--color);
  border: none;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.apply-btn:hover {
  background-color: var(--dark-green);
}

/* ================= How its work ================= */
#how-works {
  background-image: url(../images/how-works/vectosmartobject.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left center;
  position: relative;
}

#how-works::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 10%;
  width: 200px;
  height: 100px;
  background-image: url(../images/how-works/cta-one-shape-2.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.4s ease;
  z-index: 0;
  transform: translate(-50%, 10%);
  animation: float 6s ease-in-out infinite;
}

.workflow-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}

.workflow-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary--color), var(--dark-green));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--secondary--color);
  flex-shrink: 0;
}

.workflow-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark-green);
}

.workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--mustard-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  font-size: 18px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
}

.step-number img {
  width: 25px;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 45px;
  width: 2px;
  height: calc(100% + 20px);
  background: linear-gradient(180deg,
      var(--mustard-color) 0%,
      transparent 100%);
}

.step-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--mustard-color);
  margin-bottom: 5px;
}

.step-content p {
  font-size: 15px;
  color: var(--text-color);
  line-height: 1.6;
}

.step-arrow {
  font-size: 20px;
  color: var(--primary-color);
  margin-top: 8px;
}

.how-works-img {
  position: relative;
  display: inline-block;
  animation: float2 4s ease-in-out infinite;
}

/* Pseudo Elements */
.how-works-img::after,
.how-works-img::before {
  content: "";
  position: absolute;
  width: 70px;
  height: 70px;
  background-image: url(../images/how-works/icon-bottom-banner.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}

/* Different delays */
.how-works-img::after {
  top: -15px;
  left: -15px;
  animation-delay: 0.5s;
  animation: float2 4s ease-in-out infinite;
}

.how-works-img::before {
  bottom: -50px;
  right: -15px;
  animation-delay: 1s;
  animation: float2 4s ease-in-out infinite;
}

/* Img stays on top */
.how-works-img img {
  position: relative;
  z-index: 2;
  display: block;
}

#how-works .section-heading h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  /* centers it */
  width: 60px;
  height: 4px;
  background: var(--primary--color);
  border-radius: 2px;
  display: block;
}

/* ==================== Testimonial Section ==================== */

#testimonials {
  background-image: url(../images/testimonial/Testimonial-Background.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  width: 100%;
}

#testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 194, 139, 0.85);
}

#testimonials .section-heading h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--mustard-color);
  border-radius: 2px;
  display: block;
}


#testimonials .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

#testimonials .section-description {
  font-size: 18px;
  color: var(--navy-color);
  max-width: 600px;
  margin: 0 auto;
  margin-top: 15px;
}

#testimonialSlider {
  width: 800px;
  margin: auto;
  display: block;
}

#testimonialSlider .slide-row {
  display: flex;
  width: 3200px;
  transition: 0.5s;
}

#testimonialSlider .slide-col {
  position: relative;
  width: 800px;
  height: 400px;
}

#testimonialSlider .hero {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

#testimonialSlider .hero img {
  height: 100%;
  border-radius: 20px;
  width: 320px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

#testimonialSlider .content {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 520px;
  height: 270px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 20px;
  padding: 45px;
  z-index: 2;
  user-select: none;
  transition: 0.5s;
}

#testimonialSlider .content:hover {
  transform: translateY(-50%) translateX(-2px);
}

#testimonialSlider .content p {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
}

#testimonialSlider .content h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 35px;
  color: var(--mustard-color);
}

#testimonialSlider .indicator {
  display: flex;
  justify-content: center;
  margin-top: 4rem;
}

#testimonialSlider .indicator .slider-btn {
  display: inline-block;
  height: 15px;
  width: 15px;
  margin: 4px;
  border-radius: 15px;
  background: var(--mustard-color);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

#testimonialSlider .slider-btn.active {
  width: 30px;
}

#testimonialSlider .slider {
  width: 100%;
  overflow: hidden;
}

.star-rating {
  display: flex;
  margin-bottom: 15px;
}

.star-rating .star-rating-icon {
  color: var(--mustard-color) !important;
  font-size: 1rem;
  margin-right: 3px;
}

/* =============== Brand slider =============== */
#slider {
  overflow: hidden;
  max-width: 1140px;
  margin: auto;
  position: relative;
  mask-image: linear-gradient(to right,
      transparent,
      black 10%,
      black 90%,
      transparent);
}

.slide-track {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
}

.slide-track:hover {
  animation-play-state: paused;
}

.slide {
  flex: 0 0 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
}

.slide img {
  width: 100px;
  height: auto;
}

#slider .section-heading h3:after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--primary--color);
  border-radius: 2px;
  display: block;
}

/* ==================== Footer ==================== */
#footer {
  clip-path: ellipse(95% 100% at 50% 100%);
  width: 100%;
  background-color: var(--primary--color);
  padding-top: 130px;
  padding-bottom: 0px;
  position: relative;
  overflow: visible;
  background-image: url(../images/footer/2.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right top;
}

#footer::after,
#footer::before {
  content: "";
  background: url(../images/footer/need_cta_overlay.png);
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  background-size: contain;
  position: absolute;
  z-index: 0;
  animation: footerFloatAnimation 6s ease-in-out infinite alternate;
}

#footer::before {
  left: 30px;
  top: 120px;
  animation-delay: 3s;
}

#footer::after {
  right: 50px;
  top: 250px;
  animation-delay: 3s;
}

#footer-wrapper {
  position: relative;
}

#footer h4 {
  color: var(--navy-color);
  font-weight: 700;
  margin-bottom: 35px;
  position: relative;
  font-size: 1.25rem;
}

#footer h4::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 3px;
  border-radius: 20px;
  background-color: var(--navy-color);
  bottom: -10px;
  left: 0px;
}

#footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer ul li {
  line-height: 32px;
  transition: all 0.6s ease;
  margin-bottom: 5px;
}

#footer ul li:hover {
  transform: translateX(5px);
}

#footer ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  display: flex;
  align-items: center;
  transition: color 0.3s ease;
}

#footer ul li a:hover {
  color: var(--navy-color);
}

#footer ul li a i {
  margin-right: 8px;
  font-size: 12px;
  transition: transform 0.3s ease;
}

#footer ul li:hover a i {
  transform: translateX(3px);
}

#footer p {
  color: #fff;
  font-weight: 500;
  line-height: 1.6;
}

.footer-logo {
  width: 200px;
  margin-bottom: 20px;
}

.contact-info {
  color: #fff;
  font-weight: 500;
  line-height: 1.8;
  margin-bottom: 25px;
}

.contact-item {
  background-color: var(--primary--color);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  padding: 6px 15px;
  border-radius: 20px;

  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.contact-item .contact-icon {
  width: 32px;
  height: 32px;
  background: var(--mustard-color);
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  font-size: 18px;
  line-height: 1;
  color: #fff;
  flex-shrink: 0;
}

#social {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

#social li {
  display: inline-block;
}

#social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  text-decoration: none;
}

#social li:hover {
  transform: none !important;
}

#social li:hover #social li a {
  background-color: var(--mustard-color);
  color: #fff;
}

.bottom-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  background-color: rgba(0, 0, 0, 0.15);
  margin-top: 50px;
}

.bottom-footer p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
  color: #fff;
}

.footer-links a {
  color: #fff;
  font-size: 14px;
  margin-left: 18px;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--mustard-color);
}

/* ==================== Back To Top ==================== */
#backToTopBtn {
  display: inline-block;
  background-color: var(--primary--color);
  width: 50px;
  height: 50px;
  text-align: center;
  position: fixed;
  bottom: 100px;
  right: 30px;
  transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  text-decoration: none;
  border-radius: 50%;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  line-height: 50px;
}

#backToTopBtn::after {
  content: "\f077";
  font-family: FontAwesome;
  font-weight: normal;
  font-style: normal;
  font-size: 1.3em;
  line-height: 50px;
  color: #fff;
}

#backToTopBtn:hover {
  cursor: pointer;
  background-color: var(--dark-green);
}

#backToTopBtn:active {
  background-color: var(--dark-green);
}

#backToTopBtn.show {
  opacity: 1;
  visibility: visible;
}

/* ================= Breadcrumb with Background Image ================= */
.breadcrumb-hero {
  margin-top: 76px;
  height: 280px;
  background-image: linear-gradient(rgba(43, 41, 69, 0.9), rgba(30, 194, 139, 0.8)),
    url('../images/breadcrumb.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.breadcrumb-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(to right,
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

.breadcrumb-content {
  position: relative;
  z-index: 1;
  color: white;
}

.breadcrumb-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.breadcrumb-description {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background-color: rgba(255, 250, 250, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  padding: 12px 25px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  min-width: 50%;
  padding-bottom: 0px !important;
}

.breadcrumb {
  margin-bottom: 0;
  background-color: transparent;
  padding: 0;
}

.breadcrumb-item {
  font-size: 15px;
  font-weight: 500;
}

.breadcrumb-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex !important;
  align-items: center;
}

.breadcrumb-item a:hover {
  color: var(--light-green-color);
}

.breadcrumb-item.page-active {
  color: var(--navy-color);
  font-weight: 600;
}

.breadcrumb-item+.breadcrumb-item::before {
  content: "";
  display: none;
}

.breadcrumb-item .home-icon {
  margin-right: 5px;
  font-size: 14px;
}


/* Header Section */
.faq-header {
  background: linear-gradient(135deg, var(--primary--color) 0%, var(--dark-green) 100%);
  color: var(--secondary-color);
  text-align: center;
}

.faq-header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.faq-header p {
  font-size: 1.1rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Search Box */
.search-container {
  max-width: 700px;
  margin: -30px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.search-box {
  background: var(--secondary--color);
  border-radius: 50px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  padding: 8px 8px 8px 25px;
}

.search-box input {
  flex: 1;
  border: none;
  outline: none;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  padding: 10px;
  color: var(--navy-color);
}

.search-box input::placeholder {
  color: var(--text-color);
}

.search-btn {
  background: var(--primary--color);
  color: var(--secondary--color);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
}

.search-btn:hover {
  background: var(--dark-green);
  transform: translateY(-2px);
}


/* Category Tabs */
.category-tabs {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.category-tab {
  background: var(--secondary--color);
  border: 2px solid #e0e0e0;
  padding: 12px 25px;
  border-radius: 50px;
  font-family: "Jost", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--navy-color);
}

.category-tab:hover {
  border-color: var(--primary--color);
  color: var(--primary--color);
}

.category-tab.active {
  background: var(--primary--color);
  border-color: var(--primary--color);
  color: var(--secondary--color);
}

/* FAQ Content */
.faq-content {
  display: grid;
  gap: 20px;
}

.faq-category {
  display: none;
}

.faq-category.active {
  display: block;
}

.category-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--navy-color);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--light-green-color);
}

/* FAQ Item */
.faq-item {
  background: var(--secondary--color);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item:hover {
  box-shadow: 0 5px 20px rgba(30, 194, 139, 0.15);
}

.faq-question {
  padding: 25px 60px 25px 25px;
  cursor: pointer;
  position: relative;
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy-color);
  display: flex;
  align-items: center;
  gap: 15px;
}

.faq-icon {
  width: 40px;
  height: 40px;
  background: var(--light-green-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--dark-green);
  flex-shrink: 0;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 1.8rem;
  color: var(--primary--color);
  transition: transform 0.3s;
  font-weight: 300;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 25px 0 80px;
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 25px 25px 80px;
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--mustard-color) 0%, #ff6b00 100%);
  color: var(--secondary--color);
  padding: 50px 30px;
  border-radius: 15px;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 60px;
}

.contact-cta h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.contact-cta p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  opacity: 0.95;
}

.contact-btn {
  background: var(--secondary--color);
  color: var(--mustard-color);
  padding: 14px 35px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* =============== About Us ================ */
/* about-hero Section */
.about-hero {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--light-green-color) 0%, #e6f7f0 100%);
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

.about-hero-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-hero-text {
  flex: 1;
}

.about-hero-title {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy-color);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-hero-title span {
  color: var(--primary--color);
}

.about-hero-description {
  font-size: 18px;
  margin-bottom: 30px;
  color: var(--text-color);
}

.about-hero-image {
  flex: 1;
  position: relative;
  box-shadow: -50px -50px 0 -40px var(--mustard-color), 50px 50px 0 -40px var(--mustard-color);
}

.about-hero-img {
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  box-shadow: -50px -50px 0 -40px var(--mustard-color), 50px 50px 0 -40px var(--mustard-color);
}


/* Mission Section */
.mission {
  padding: 100px 0;
  background-color: var(--secondary--color);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}


.section-subtitle {
  font-size: 18px;
  color: var(--text-color);
  max-width: 600px;
  margin: 0 auto;
}

.mission-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-text {
  flex: 1;
}

.mission-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy-color);
  margin-bottom: 20px;
}

.mission-description {
  font-size: 16px;
  margin-bottom: 25px;
  color: var(--text-color);
}

.mission-image {
  flex: 1;
}

.mission-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-shadow: -50px -50px 0 -40px var(--primary--color), 50px 50px 0 -40px var(--primary--color);
}

/* Values Section */
.values {
  padding: 100px 0;
  background-color: #f5f9f7;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.value-card {
  background-color: var(--secondary--color);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border-top: 3px solid var(--mustard-color);
}

.value-icon {
  width: 70px;
  height: 70px;
  background-color: var(--light-green-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary--color);
  font-size: 28px;
}

.value-title {
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-color);
  margin-bottom: 15px;
}

.value-description {
  font-size: 15px;
  color: var(--text-color);
}

.custom-about-btn {
  background-color: var(--primary--color);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.custom-about-btn:hover {
  background-color: var(--dark-green);
}

/* contact us section design */
/* Contact Section */
.contact-section {
  padding: 60px 0;
}

.contact-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  font-family: "Jost", sans-serif;

}

.contact-section .section-title h2 {
  font-size: 36px;
  color: var(--navy-color);
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
  font-family: "Jost", sans-serif;
  font-weight: 700;
}

.contact-section .section-title h2:after {
  content: '';
  position: absolute;
  width: 70px;
  height: 4px;
  background-color: var(--primary--color);
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 2px;
}

.contact-section .section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-color);
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: normal;
}

.contact-section .contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Contact Form */
.contact-section .contact-form {
  background-color: var(--secondary--color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-section .form-group {
  margin-bottom: 25px;
}

.contact-section .form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  color: var(--navy-color);
  font-family: "Jost", sans-serif;
}

.contact-section .form-control {
  width: 100%;
  padding: 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.contact-section .form-control:focus {
  border-color: var(--primary--color);
  box-shadow: 0 0 0 3px rgba(30, 194, 139, 0.2);
  outline: none;
}

.contact-section textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

.contact-section .submit-btn {
  background-color: var(--primary--color);
  color: var(--secondary--color);
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  width: 100%;
}

.contact-section .submit-btn:hover {
  background-color: var(--dark-green);
}

/* Contact Info */
.contact-section .contact-info {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-section .info-card {
  background-color: var(--secondary--color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s;
}

.contact-section .info-card:hover {
  transform: translateY(-5px);
}

.contact-section .info-icon {
  background-color: var(--light-green-color);
  color: var(--primary--color);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-right: 20px;
  flex-shrink: 0;
}

.contact-section .info-content h3 {
  color: var(--navy-color);
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;

}

.contact-section .info-content p {
  margin-bottom: 5px;
  color: var(--text-color);
  font-weight: normal;
}

.contact-section .support-time {
  background-color: var(--light-green-color);
  padding: 15px;
  border-radius: 10px;
  margin-top: 10px;
  display: inline-block;
}

.contact-section .support-time p {
  color: var(--dark-green);
  font-weight: 600;
  margin-bottom: 0px;
}

/* ===================== Blog List page design here ============= */
/* Main Content Layout */
#blog .blog-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

/* Blog Cards */
#blog .blog-card {
  background-color: var(--secondary--color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 30px;
  transition: transform 0.3s, box-shadow 0.3s;
}

#blog .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#blog .blog-image {
  height: 220px;
  overflow: hidden;
}

#blog .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

#blog .blog-card:hover .blog-image img {
  transform: scale(1.05);
}

#blog .blog-content {
  padding: 25px;
}

#blog .blog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 14px;
  color: var(--text-color);
}

#blog .blog-author,
.blog-date {
  display: flex;
  align-items: center;
}

#blog .blog-author i,
.blog-date i {
  margin-right: 5px;
  color: var(--primary--color);
}

#blog .blog-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}

#blog .category-tag {
  background-color: var(--light-green-color);
  color: var(--dark-green);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
}

#blog .blog-title {
  font-size: 22px;
  margin-bottom: 15px;
  color: var(--navy-color);
  line-height: 1.3;
  text-decoration: none;
}

#blog .blog-excerpt {
  color: var(--text-color);
  margin-bottom: 20px;
}

#blog .read-more {
  display: inline-flex;
  align-items: center;
  color: var(--primary--color);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s;
}

#blog .read-more i {
  margin-left: 5px;
  transition: transform 0.3s;
}

#blog .read-more:hover {
  color: var(--dark-green);
}

#blog .read-more:hover i {
  transform: translateX(3px);
}

/* Sidebar Styles */
#blog .sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

#blog .sidebar-widget {
  background-color: var(--secondary--color);
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

#blog .widget-title {
  font-size: 20px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-green-color);
  color: var(--navy-color);
}

#blog .recent-post {
  display: flex;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0f0f0;
}

#blog .recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#blog .recent-post-image {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  margin-right: 15px;
  flex-shrink: 0;
}

#blog .recent-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#blog .recent-post-content a {
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 1.3;
  text-decoration: none;
  color: var(--navy-color);
  font-weight: 600;
}

#blog .recent-post-content .post-date {
  font-size: 12px;
  color: var(--text-color);
}

#blog .category-list {
  list-style: none;
}

#blog .category-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
}

#blog .category-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

#blog .category-list a {
  display: flex;
  justify-content: space-between;
  text-decoration: none;
  color: var(--navy-color);
  transition: color 0.3s;
}

#blog .category-list a:hover {
  color: var(--primary--color);
}

#blog .category-count {
  background-color: var(--light-green-color);
  color: var(--dark-green);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
}

/* Newsletter Widget */
#blog .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#blog .newsletter-form input {
  padding: 12px 15px;
  border: 1px solid #e0e6e9;
  border-radius: 8px;
  font-family: "Jost", sans-serif;
  font-size: 15px;
}

#blog .newsletter-form button {
  background-color: var(--primary--color);
  color: white;
  border: none;
  padding: 12px 15px;
  border-radius: 8px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

#blog .newsletter-form button:hover {
  background-color: var(--dark-green);
}






/* =============== Job details page ============ */
/* Main Layout */
.main-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

/* Blog Post */
.blog-post {
  background-color: var(--secondary--color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.blog-content {
  padding: 30px;
}

.blog-title {
  font-size: 2.2rem;
  color: var(--navy-color);
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 700;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.meta-item span {
  color: var(--text-color);
}

.meta-item .meta-icon {
  color: var(--primary--color) !important;
}

.categories {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.category {
  background-color: var(--light-green-color);
  color: var(--dark-green);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

.blog-text {
  margin: 25px 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.blog-text p {
  margin-bottom: 20px;
  color: var(--text-color);
}

.blog-text h2 {
  color: var(--navy-color);
  margin: 30px 0 15px;
  font-weight: 600;
}

.blog-text ul,
.blog-text ol {
  margin-left: 20px;
  margin-bottom: 20px;
  color: var(--text-color);
}

/* Social Share */
.social-share {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  padding-top: 20px;
  border-top: 1px solid #eee;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--secondary--color);
  transition: transform 0.3s;
}

.share-btn:hover {
  transform: translateY(-3px);
}

.facebook {
  background-color: #3b5998;
}

.twitter {
  background-color: #1da1f2;
}

.linkedin {
  background-color: #0077b5;
}

.whatsapp {
  background-color: #25d366;
}

/* Comments Section */
.comments-section {
  margin-top: 40px;
}

.comments-section .section-title {
  font-size: 1.5rem;
  color: var(--navy-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-align: left;
  border-bottom: 2px solid var(--light-green-color);
}

.comment {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eee;
}

.comment-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: var(--light-green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark-green);
  font-weight: 600;
  flex-shrink: 0;
}

.comment-content h4 {
  color: var(--navy-color);
  margin-bottom: 5px;
}

.comment-content p {
  color: var(--text-color);
}

.comment-meta {
  font-size: 0.85rem;
  color: var(--text-color);
  margin-bottom: 10px;
}

.comment-form {
  margin-top: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-color);
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  transition: border-color 0.3s;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary--color);
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  background-color: var(--primary--color);
  color: var(--secondary--color);
  border: none;
  padding: 12px 25px;
  border-radius: 8px;
  font-family: "Jost", sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}

.submit-btn:hover {
  background-color: var(--dark-green);
}

/* Sidebar */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-widget {
  background-color: var(--secondary--color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.widget-title {
  font-size: 1.3rem;
  color: var(--navy-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-green-color);
  font-weight: 700;
}

.recent-post {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.recent-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.recent-post-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.recent-post-content h4 {
  font-size: 1rem;
  color: var(--navy-color);
  margin-bottom: 5px;
  line-height: 1.4;
}

.recent-post-content h4 a {
  color: var(--navy-color);
}

.recent-post-date {
  font-size: 0.85rem;
  color: var(--text-color);
}

.category-list {
  list-style: none;
}

.category-list li {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
}

.category-list li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.category-list a {
  display: flex;
  justify-content: space-between;
  transition: color 0.3s;
  color: var(--text-color);
}

.category-list a:hover {
  color: var(--primary--color);
}

.category-count {
  background-color: var(--light-green-color);
  color: var(--dark-green);
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 0.8rem;
}

/* ================== Filter page design ================== */
#find-job .filter-toggle {
  display: none;
  background-color: var(--primary--color);
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  margin-bottom: 20px;
  width: 100%;
  text-align: left;
  position: relative;
}

#find-job .filter-toggle:after {
  content: '\f0b0';
  font-family: 'Font Awesome 7 Free';
  font-weight: 900;
  position: absolute;
  right: 20px;
}

#find-job .filter-container {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
}

#find-job .filter-sidebar {
  flex: 0 0 300px;
  background-color: var(--secondary--color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

#find-job .filter-group {
  margin-bottom: 25px;
  border-bottom: 1px solid #eee;
  padding-bottom: 20px;
}

#find-job .filter-group:last-child {
  border-bottom: none;
}

#find-job .filter-group h3 {
  color: var(--navy-color);
  margin-bottom: 15px;
  font-size: 1.2rem;
  font-weight: 600;
}

#find-job .filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#find-job .filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: color 0.2s;
}

#find-job .filter-option:hover {
  color: var(--primary--color);
}

#find-job .filter-option input {
  accent-color: var(--primary--color);
}

#find-job select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  background-color: white;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px;
}

#find-job select:focus {
  outline: none;
  border-color: var(--primary--color);
}

#find-job .salary-range {
  padding-top: 10px;
}

#find-job .range-values {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.9rem;
}

#find-job .range-slider {
  width: 100%;
  height: 5px;
  background: #ddd;
  border-radius: 5px;
  outline: none;
  -webkit-appearance: none;
}

#find-job .range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary--color);
  cursor: pointer;
}


#find-job .btn {
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-size: 1rem;
  flex: 1;
  text-align: center;
  width: 100%;
  margin-bottom: 10px;
}

#find-job .btn-primary {
  background-color: var(--primary--color);
  color: white;
}

#find-job .btn-primary:hover {
  background-color: var(--dark-green);
}

#find-job .btn-secondary {
  background-color: #f0f0f0;
  color: var(--text-color);
}

#find-job .btn-secondary:hover {
  background-color: #e0e0e0;
}

/* Job Listings */
#find-job .job-listings {
  flex: 1;
}

#find-job .job-list-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

#find-job .job-count {
  color: var(--navy-color);
  font-weight: 600;
}

#find-job .sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

#find-job .sort-options select {
  width: auto;
  min-width: 180px;
}

#find-job .job-cards {
  display: grid;
  gap: 20px;
}

#find-job .job-card2 {
  background-color: #fff;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  gap: 20px;
  transition: 0.5s;
  border-top: 4px solid var(--primary--color);
  position: relative;
}

#find-job .job-card2::after {
  content: "";
  position: absolute;
  top: 0px;
  right: -15px;
  width: 140px;
  height: 140px;
  background-image: url(../images/features/dots.png);
  z-index: 1;
  background-repeat: no-repeat;
}

#find-job .job-card2:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-top: 4px solid var(--mustard-color);
}

#find-job .company-logo {
  flex: 0 0 70px;
  height: 70px;
  border-radius: 8px;
  background-color: var(--light-green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary--color);
}

#find-job .job-details2 {
  flex: 1;
}

#find-job .job-title {
  color: var(--navy-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 5px;
}

#find-job .company-name {
  color: var(--text-color);
  margin-bottom: 10px;
  font-weight: 500;
}

#find-job .job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

#find-job .meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
}

#find-job .meta-item i {
  color: var(--primary--color);
}

#find-job .job-salary {
  color: var(--mustard-color);
  font-weight: 600;
}

#find-job .job-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}

#find-job .job-tags {
  display: flex;
  gap: 10px;
}

#find-job .tag {
  padding: 5px 12px;
  background-color: var(--light-green-color);
  color: var(--dark-green);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}

#find-job .apply-btn {
  background-color: var(--primary--color);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

#find-job .apply-btn:hover {
  background-color: var(--dark-green);
}

/* ===================== Company list page design ================ */
/* Main Content */
#company-content .main-content {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

/* Filter Section */
#company-content .filter-section {
  flex: 0 0 280px;
  background: var(--secondary--color);
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  height: fit-content;
}

#company-content .filter-section h2 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: var(--navy-color);
  padding-bottom: 10px;
  border-bottom: 1px solid #eaeaea;
}

#company-content .filter-group {
  margin-bottom: 25px;
}

#company-content .filter-group h3 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  color: var(--navy-color);
}

#company-content .filter-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#company-content .filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
}

#company-content .filter-option input {
  accent-color: var(--primary--color);
}

#company-content .filter-option label {
  color: var(--text-color);
  cursor: pointer;
}


/* Company List Section */
#company-content .company-list-section {
  flex: 1;
}

#company-content .section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

#company-content .section-header h2 {
  font-size: 1.6rem;
  color: var(--navy-color);
}

#company-content .sort-options {
  display: flex;
  align-items: center;
  gap: 10px;
}

#company-content .sort-options select {
  padding: 10px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  background-color: var(--secondary--color);
  color: var(--navy-color);
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s;
}

#company-content .sort-options select:focus {
  outline: none;
  border-color: var(--primary--color);
}

/* Company Grid */
#company-content .company-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 25px;
}

#company-content .company-card {
  background: var(--secondary--color);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

#company-content .company-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

#company-content .company-header {
  padding: 25px 25px 15px;
  display: flex;
  align-items: center;
  gap: 15px;
}

#company-content .company-logo {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background-color: var(--light-green-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--dark-green);
  font-size: 1.2rem;
}

#company-content .company-info h3 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--navy-color);
}

#company-content .company-type {
  display: inline-block;
  padding: 5px 12px;
  background-color: var(--light-green-color);
  color: var(--dark-green);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
}

#company-content .company-details {
  padding: 0 25px 25px;
}

#company-content .company-detail {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-color);
}

#company-content .company-detail i {
  color: var(--primary--color);
  width: 20px;
}

#company-content .view-jobs-btn {
  display: block;
  width: 100%;
  padding: 12px;
  background-color: var(--primary--color);
  color: var(--secondary--color);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  margin-top: 15px;
}

#company-content .view-jobs-btn:hover {
  background-color: var(--dark-green);
}

/* ============= Bottom Nav ============= */
#bottom-nav nav {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 15px;
  max-width: 500px;
  margin: 0 auto;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}

#bottom-nav .nav-box {
  display: flex;
  padding: 8px;
  background-color: #fff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  border-radius: 15px;
}

#bottom-nav .nav-container {
  display: flex;
  width: 100%;
  list-style: none;
  justify-content: space-between;
  margin-bottom: 0;
  padding: 0;

}

#bottom-nav .nav__item {
  display: flex;
  position: relative;
  padding: 2px;
}

#bottom-nav .nav__item.active .nav__item-icon {
  margin-top: -26px;
  box-shadow: 0px 0px 16px 0px #4444;
}

#bottom-nav .nav__item.active .nav__item-text {
  transform: scale(1);
  font-family: "Jost", sans-serif !important;
  font-weight: 600;
}

#bottom-nav .nav__item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #2f3046;
  text-decoration: none;
}

#bottom-nav .nav__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  background-color: #fff;
  border-radius: 50%;
  height: 46px;
  width: 46px;
  transition: margin-top 250ms ease-in-out, box-shadow 250ms ease-in-out;
}

#bottom-nav .nav__item-icon img {
  width: 25px;
}

#bottom-nav .nav__item-text {
  position: absolute;
  bottom: 0;
  transform: scale(0);
  transition: transform 250ms ease-in-out;
}

/* ================= Login page design ================= */
#login {
  background: linear-gradient(to bottom, var(--light-green-color) 10%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

#login::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right,
      rgba(150, 150, 150, 0.4) 1px,
      transparent 1px),
    linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
  mask-image: repeating-linear-gradient(to right,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px),
    repeating-linear-gradient(to bottom,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

#login .container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

#login .logo-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
  color: var(--secondary--color);
  padding: 20px;
  animation: fadeIn 1s ease-out;
}



#login .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  align-items: center;
}

#login .feature {
  background: var(--dark-green);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px;
  width: 150px;
  text-align: center;
  transition: transform 0.3s ease;
  align-items: center;
}

#login .feature:hover {
  transform: translateY(-5px);
}

#login .feature i {
  font-size: 2rem;
  color: var(--primary--color);
  margin-bottom: 10px;
}

#login .feature p {
  margin-bottom: 0;
}

#login .login-section {
  flex: 1;
  min-width: 350px;
  max-width: 450px;
}

#login .login-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

#login .login-card::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 140px;
  height: 140px;
  background-image: url(../images/features/dots.png);
  transition: all 0.4s ease;
  z-index: 0;
  background-repeat: no-repeat;
}

#login .login-header {
  text-align: center;
  margin-bottom: 30px;
}

#login .login-header h2 {
  color: var(--navy-color);
  font-size: 2rem;
  margin-bottom: 10px;
}

#login #searchform {
  background-color: transparent;
  padding: 0px;
  box-shadow: none;
}

#login .login-header p {
  color: var(--text-color);
  font-size: 1rem;
}

#login .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

#login .remember {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-color);
}

#login .remember input {
  accent-color: var(--primary--color);
}

#login .forgot-password {
  color: var(--primary--color);
  text-decoration: none;
  transition: color 0.3s ease;
}

#login .forgot-password:hover {
  color: var(--dark-green);
}

#login .login-btn {
  width: 100%;
  padding: 15px;
  background: linear-gradient(90deg, var(--primary--color), var(--dark-green));
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 194, 139, 0.4);
}

#login .login-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 194, 139, 0.6);
}

#login .login-btn:active {
  transform: translateY(0);
}

#login .signup-link {
  text-align: center;
  margin-top: 25px;
  color: var(--text-color);
}

#login .signup-link a {
  color: var(--primary--color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#login .signup-link a:hover {
  color: var(--dark-green);
}

#login .floating-img {
  position: absolute;
  top: 50px;
  left: 50px;
  width: 150px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

.login-vector {
  animation: float 6s ease-in-out infinite;
}

/* ================= Register page design ================= */
#register {
  background: linear-gradient(to bottom, var(--light-green-color) 10%, #ffffff 100%);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  overflow-x: hidden;
  position: relative;
}

#register::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(to right,
      rgba(150, 150, 150, 0.4) 1px,
      transparent 1px),
    linear-gradient(to bottom, rgba(150, 150, 150, 0.4) 1px, transparent 1px);
  mask-image: repeating-linear-gradient(to right,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px),
    repeating-linear-gradient(to bottom,
      black 0px,
      black 3px,
      transparent 3px,
      transparent 8px);
  mask-composite: intersect;
  -webkit-mask-composite: intersect;
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

#register .container {
  width: 100%;
  max-width: 1400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

#register .logo-section {
  flex: 1;
  min-width: 400px;
  text-align: center;
  color: var(--secondary--color);
  padding: 20px;
  animation: fadeIn 1s ease-out;
}

#register .features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
}

#register .feature {
  background: var(--dark-green);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 10px;
  width: 150px;
  text-align: center;
  transition: transform 0.3s ease;
  align-items: center;
}

#register .feature:hover {
  transform: translateY(-5px);
}

#register .feature i {
  font-size: 2.5rem;
  color: var(--primary--color);
  margin-bottom: 15px;
}

#register .feature p {
  margin-bottom: 0;
  font-size: 1.1rem;
}

#register .register-section {
  flex: 1.5;
  min-width: 600px;
  max-width: 800px;
}

#register .register-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 25px;
  padding: 50px 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  animation: slideUp 0.8s ease-out;
}

#register .register-card::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 0px;
  width: 135px;
  height: 135px;
  background-image: url(../images/features/dots.png);
  transition: all 0.4s ease;
  z-index: 0;
  background-repeat: no-repeat;
}

#register .register-header {
  text-align: center;
  margin-bottom: 40px;
}

#register .register-header h2 {
  color: var(--navy-color);
  font-size: 2.5rem;
  margin-bottom: 15px;
}

#register .register-header p {
  color: var(--text-color);
  font-size: 1.2rem;
}

#register .user-type-selector {
  display: flex;
  margin-bottom: 35px;
  border-radius: 12px;
  overflow: hidden;
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
}

#register .user-type-option {
  flex: 1;
  text-align: center;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
  color: var(--text-color);
  font-size: 1.1rem;
}

#register .user-type-option.active {
  background: linear-gradient(90deg, var(--primary--color), var(--dark-green));
  color: white;
}

#register .form-section {
  display: none;
}

#register .form-section.active {
  display: block;
}

#register #searchform {
  background-color: transparent;
  padding: 0px;
  box-shadow: none;
}

#register .form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

#register .form-col {
  flex: 1;
  min-width: 250px;
}

#register .input-container {
  position: relative;
  margin-bottom: 18px;

}

#register .input-container input,
#register .input-container select {
  width: 100%;
  padding: 16px 16px 16px 50px;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  padding-left: 50px !important;
}

#register .input-container input:focus,
#register .input-container select:focus {
  border-color: var(--primary--color);
  box-shadow: 0 0 0 3px rgba(30, 194, 139, 0.2);
  outline: none;
}

#register .input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color);
  font-size: 1.2rem;
}

#register .options {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  font-size: 1rem;
}

#register .terms {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-color);
}

#register .terms input {
  accent-color: var(--primary--color);
  width: 18px;
  height: 18px;
}

#register .terms a {
  color: var(--primary--color);
  text-decoration: none;
}

#register .terms a:hover {
  text-decoration: underline;
}

#register .register-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(90deg, var(--primary--color), var(--dark-green));
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(30, 194, 139, 0.4);
}

#register .register-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(30, 194, 139, 0.6);
}

#register .register-btn:active {
  transform: translateY(0);
}

#register .login-link {
  text-align: center;
  margin-top: 30px;
  color: var(--text-color);
  font-size: 1.1rem;
}

#register .login-link a {
  color: var(--primary--color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

#register .login-link a:hover {
  color: var(--dark-green);
}

#register .floating-img {
  position: absolute;
  top: 120px;
  left: 50px;
  width: 140px;
  animation: float 4s ease-in-out infinite;
  animation-delay: 1.5s;
}

.register-vector {
  animation: float 6s ease-in-out infinite;
}

/* ================ Preloader ================ */
#preloader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#preloader .preloader-logo {
  width: 200px;
  position: relative;
  z-index: 2;
}

/* Animated Border Container */
#preloader .preloader-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* =============== Preloader ============= */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.preloader-content {
  text-align: center;
}

.preloader-logo {
  width: 200px;
  height: auto;
  margin-bottom: 20px;
}

.loading-bar-container {
  width: 300px;
  height: 4px;
  background-color: #ddd;
  overflow: hidden;
  border-radius: 2px;
}

.loading-bar {
  width: 0;
  height: 100%;
  background-color: var(--mustard-color);
  transition: width 2s ease-in-out;
}


.terms-content {
  padding: 60px 0;
  background-color: #f8f9fa;
}

/* Terms & condition ============== */
.terms-container {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 40px;
}

.terms-section {
  margin-bottom: 40px;
}

.terms-section h2 {
  color: var(--navy-color);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #eee;
}

.terms-section h3 {
  color: var(--primary--color);
  margin: 25px 0 15px;
  font-size: 1.3rem;
}

.terms-section p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #555;
}

.terms-section ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.terms-section li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.highlight-box {
  background-color: #f8f9fa;
  border-left: 4px solid #3498db;
  padding: 20px;
  margin: 25px 0;
  border-radius: 0 5px 5px 0;
}

.last-updated {
  background-color: #e8f4fc;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 30px;
  font-style: italic;
}

/* Privacy policy =========== */
.privacy-policy-section {
  background-color: #fff;
}

.privacy-content h2 {
  color: var(--navy-color);
  font-weight: 600;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 10px;
}

.privacy-content h4 {
  color: var(--navy-color);
  font-weight: 500;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.policy-intro {
  background-color: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  border-left: 4px solid var(--primary--color);
}

.policy-section {
  padding-bottom: 20px;
  border-bottom: 1px solid #eaeaea;
}

.policy-section:last-child {
  border-bottom: none;
}