@import url("https://fonts.googleapis.com/css?family=Nunito:200,300,400,700");

/* ===== hurkflo PREMIUM VARIABLES ===== */
:root {
    --hurkflo-green: #008000;
    --hurkflo-green-light: #00A000;
    --hurkflo-green-dark: #006400;
    --hurkflo-green-soft: #e8f5e8;
    --hurkflo-cyan: #00CCCC;
    --hurkflo-lime: #ADFF2F;
    --hurkflo-orange: #FF8C00;
    --hurkflo-dark: #1f2937;
    --hurkflo-gray: #6b7280;
    --hurkflo-light-gray: #f9fafb;
    --hurkflo-white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #008000 0%, #00A86B 100%);
    --gradient-cyan: linear-gradient(135deg, #00CCCC 0%, #008000 100%);
    --gradient-orange: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 25px -5px rgba(0,128,0,0.15);
}

/* ===== BASE STYLES ===== */
body {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
  font-family: 'Nunito', sans-serif;
  background: var(--hurkflo-light-gray);
  color: var(--hurkflo-dark);
}

/* ===== PREMIUM NAVBAR (Overrides) ===== */
.site-navbar {
  margin-bottom: 0px;
  z-index: 1999;
  position: absolute;
  width: 100%;
  top: 2rem;
  transition: all 0.3s ease;
}

.site-navbar .container-fluid {
  padding-left: 7rem;
  padding-right: 7rem;
}

@media (max-width: 1199.98px) {
  .site-navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.site-navbar .site-logo {
  position: absolute;
  left: 5%;
}

@media (max-width: 767.98px) {
  .site-navbar .site-logo {
    position: relative;
    left: auto;
  }
}

.site-navbar .site-logo a {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .2rem;
  text-transform: uppercase;
  text-decoration: none;
}

.site-navbar .site-logo a:hover {
  text-decoration: none;
}

/* Premium Navbar Modifications */
.site-navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md);
  top: 0;
  padding: 10px 0;
}

.site-navbar.scrolled .site-logo a {
  color: var(--hurkflo-green);
}

.site-navbar.scrolled .site-navigation .site-menu > li > a {
  color: var(--hurkflo-dark);
}

.site-navbar.scrolled .site-navigation .site-menu > li > a:hover,
.site-navbar.scrolled .site-navigation .site-menu > li > a.active {
  color: var(--hurkflo-green);
}

.site-navbar.scrolled .site-menu-toggle {
  color: var(--hurkflo-dark);
}

/* Navigation Menu */
.site-navigation {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}

.site-navigation .site-menu {
  margin-bottom: 0;
}

.site-navigation .site-menu .active {
  color: #fff;
  display: inline-block;
  padding: 5px 20px;
}

.site-navigation .site-menu a {
  text-decoration: none !important;
  display: inline-block;
  position: relative;
}

.site-navigation .site-menu > li {
  display: inline-block;
}

.site-navigation .site-menu > li > a {
  padding: 20px 20px !important;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  text-decoration: none !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.site-navigation .site-menu > li > a:hover {
  color: #fff;
}

.site-navigation .site-menu > li > a i {
  margin-right: 6px;
}

/* Dropdown Menu */
.site-navigation .site-menu .has-children {
  position: relative;
}

.site-navigation .site-menu .has-children > a {
  position: relative;
  padding-right: 20px;
}

.site-navigation .site-menu .has-children > a:before {
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.site-navigation .site-menu .has-children .dropdown {
  visibility: hidden;
  opacity: 0;
  top: 100%;
  position: absolute;
  text-align: left;
  border-top: 2px solid var(--hurkflo-green);
  box-shadow: 0 2px 20px -2px rgba(0, 0, 0, 0.2);
  padding: 0px 0;
  margin-top: 20px;
  margin-left: 0px;
  background: #fff;
  transition: 0.2s 0s;
  border-radius: 12px;
  min-width: 220px;
}

.site-navigation .site-menu .has-children .dropdown li {
  line-height: 1.4;
}

.site-navigation .site-menu .has-children .dropdown a {
  text-transform: none;
  letter-spacing: normal;
  transition: 0s all;
  color: var(--hurkflo-dark);
  padding: 10px 20px;
  display: block;
}

.site-navigation .site-menu .has-children .dropdown a:hover {
  background: var(--hurkflo-green-soft);
  color: var(--hurkflo-green);
}

.site-navigation .site-menu .has-children:hover > .dropdown {
  margin-top: 0px;
  visibility: visible;
  opacity: 1;
}

/* Mobile Menu */
.site-mobile-menu {
  width: 300px;
  position: fixed;
  right: 0;
  z-index: 2000;
  padding-top: 20px;
  background: #fff;
  height: calc(100vh);
  transform: translateX(110%);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  transition: 0.2s all cubic-bezier(0.66, 0.2, 0.48, 0.9);
}

.offcanvas-menu .site-mobile-menu {
  transform: translateX(0%);
}

.site-mobile-menu .site-mobile-menu-header {
  width: 100%;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close {
  float: right;
  margin-top: 8px;
}

.site-mobile-menu .site-mobile-menu-header .site-mobile-menu-close span {
  font-size: 30px;
  display: inline-block;
  padding-left: 10px;
  padding-right: 0px;
  line-height: 1;
  cursor: pointer;
  transition: .3s all ease;
}

.site-mobile-menu .site-mobile-menu-body {
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: relative;
  padding: 0 20px 20px 20px;
  height: calc(100vh - 52px);
  padding-bottom: 150px;
}

.site-mobile-menu .site-nav-wrap {
  padding: 0;
  margin: 0;
  list-style: none;
  position: relative;
}

.site-mobile-menu .site-nav-wrap a {
  padding: 10px 20px;
  display: block;
  position: relative;
  color: var(--hurkflo-dark);
}

.site-mobile-menu .site-nav-wrap a:hover {
  color: var(--hurkflo-green);
  text-decoration: none;
}

/* Sticky Wrapper */
.sticky-wrapper {
  position: absolute;
  z-index: 100;
  width: 100%;
}

.sticky-wrapper.is-sticky .site-navbar {
  box-shadow: 4px 0 20px -5px rgba(0, 0, 0, 0.2);
  background: #fff;
}

.sticky-wrapper.is-sticky .site-navbar .site-logo a {
  color: var(--hurkflo-green);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a {
  color: var(--hurkflo-dark);
}

.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a:hover,
.sticky-wrapper.is-sticky .site-navbar .site-menu > li > a.active {
  color: var(--hurkflo-green);
}

.sticky-wrapper.is-sticky .site-menu-toggle {
  color: var(--hurkflo-dark);
}

.sticky-wrapper .shrink {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

/* ===== BUTTON STYLES ===== */
.btn {
  transition: all 0.3s ease;
}

.btn:after, .btn:before {
  display: none;
}

.btn:hover, .btn:focus, .btn:active {
  outline: none;
  box-shadow: none !important;
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
}

.btn-primary:hover {
  background: var(--gradient-primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,128,0,0.3) !important;
}

.btn-outline-primary {
  border: 2px solid var(--hurkflo-green);
  color: var(--hurkflo-green);
  background: transparent;
}

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  border-color: transparent;
  color: white;
  transform: translateY(-2px);
}

/* ===== HERO SECTION ===== */
.home-section {
  position: relative;
}

.home-section > .container {
  z-index: 2;
  position: relative;
}

.home-section h1 {
  font-size: 3rem;
  color: #fff;
  font-weight: 200;
}

@media (max-width: 991.98px) {
  .home-section h1 {
    font-size: 2rem;
  }
}

.home-section p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Search Form */
.search-jobs-form .form-control,
.search-jobs-form .btn-lg {
  height: calc(2em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.search-jobs-form .btn-search > span {
  font-size: 1rem;
  position: relative;
}

.search-jobs-form .dropdown-menu {
  position: relative;
  z-index: 4;
  box-shadow: 0 5px 50px -10px rgba(0, 0, 0, 0.4);
}

.search-jobs-form .filter-option:after {
  border: none;
  display: inline-block;
  position: absolute;
  content: "\e313";
  font-size: 16px;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  font-family: 'icomoon';
}

.search-jobs-form .btn-white {
  background: #fff;
  color: var(--hurkflo-dark);
}

.search-jobs-form .form-control {
  background: #fff;
  border: transparent !important;
  color: var(--hurkflo-dark);
}

.search-jobs-form .form-control:active,
.search-jobs-form .form-control:focus {
  color: var(--hurkflo-dark);
}

/* ===== JOB LISTINGS ===== */
.job-listings {
  padding: 0;
  margin: 0;
  border: 1px solid #eee;
  border-radius: 7px;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.job-listings .badge {
  color: #fff;
  padding: 4px 10px;
}

.job-listings .job-listing {
  position: relative;
  border-bottom: 1px solid #eee;
  transition: .3s all ease;
}

.job-listings .job-listing:last-child {
  border-bottom: none;
}

.job-listings .job-listing a {
  position: absolute;
  width: 100%;
  height: 100%;
  transition: .3s all ease;
}

.job-listings .job-listing a:hover {
  border-left: 7px solid var(--hurkflo-green);
}

.job-listings .job-listing .job-listing-logo {
  flex: 0 0 150px;
  border-right: 1px solid #eee;
}

@media (max-width: 575.98px) {
  .job-listings .job-listing .job-listing-logo {
    flex: 0 0 100%;
  }
}

.job-listing-position h2 {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* ===== SECTIONS ===== */
.site-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .site-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--hurkflo-dark);
}

.section-title-sub {
  font-size: 1rem;
  color: #ced4da;
}

/* ===== BACKGROUND IMAGES ===== */
.bg-image {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.bg-image.overlay-primary {
  position: relative;
}

.bg-image.overlay-primary:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 128, 0, 0.85);
  z-index: 1;
}

.bg-image.overlay-primary > .container {
  position: relative;
  z-index: 2;
}

/* ===== MOUSE SCROLL EFFECT ===== */
.mouse {
  position: absolute;
  bottom: 40px;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

.mouse .mouse-icon {
  display: block;
  width: 25px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 15px;
  cursor: pointer;
  position: relative;
  text-align: center;
  transition: .3s all ease-in-out;
}

.mouse .mouse-wheel {
  height: 4px;
  margin: 2px auto 0;
  display: block;
  width: 4px;
  background-color: white;
  border-radius: 50%;
  animation: 1.6s ease infinite wheel-up-down;
}

@keyframes wheel-up-down {
  0% {
    margin-top: 2px;
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    margin-top: 20px;
    opacity: 0;
  }
}

/* ===== PRELOADER ===== */
#overlayer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 7100;
  background: #fff;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.loader {
  z-index: 7700;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.loader .spinner-border {
  color: var(--hurkflo-green) !important;
}

/* ===== SIDEBAR ===== */
.sidebar-box {
  margin-bottom: 30px;
  padding: 25px;
  font-size: 15px;
  width: 100%;
  float: left;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}

.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 15px;
  color: var(--hurkflo-dark);
}

/* ===== PAGINATION ===== */
.custom-pagination a {
  width: 36px;
  height: 36px;
  line-height: 36px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #dee2e6;
  text-align: center;
  margin: 0 5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.custom-pagination a.prev,
.custom-pagination a.next {
  width: auto;
  height: 36px;
  line-height: 36px;
  padding-left: 12px;
  padding-right: 12px;
  border-radius: 8px;
}

.custom-pagination a.active,
.custom-pagination a:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 5rem 0 3rem;
  position: relative;
  background: linear-gradient(135deg, #0a2a0a 0%, #0f1a2a 100%);
  color: #a0aec0;
}

@media (max-width: 991.98px) {
  .site-footer {
    padding: 3rem 0;
  }
}

.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
  font-weight: 700;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer ul li {
  margin-bottom: 0.75rem;
}

.copyright {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}

.copyright a {
  color: var(--hurkflo-cyan);
}

.copyright a:hover {
  color: #fff;
}

/* Social Links */
.footer-social a,
.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-right: 8px;
}

.footer-social a > span,
.social a > span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
}

.footer-social a:hover,
.social a:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}

.footer-social a:hover span,
.social a:hover span {
  color: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
  .site-navigation {
    display: none;
  }
  
  .site-navbar .site-logo {
    position: relative;
    left: 0;
  }
  
  .site-navbar .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 767.98px) {
  .section-title {
    font-size: 1.5rem;
  }
  
  .home-section h1 {
    font-size: 1.8rem;
  }
  
  .job-listings .job-listing .job-listing-logo {
    flex: 0 0 100%;
    border-right: none;
    border-bottom: 1px solid #eee;
  }
}

/* ===== UTILITY CLASSES ===== */
.text-primary {
  color: var(--hurkflo-green) !important;
}

.bg-primary {
  background: var(--hurkflo-green) !important;
}

.text-cyan {
  color: var(--hurkflo-cyan) !important;
}

.bg-cyan {
  background: var(--hurkflo-cyan) !important;
}

.text-orange {
  color: var(--hurkflo-orange) !important;
}

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

.fade-up {
  animation: fadeInUp 0.6s ease forwards;
}