/*
===============================================
Apex Talent Solutions - Professional Stylesheet
Modern Recruitment Agency Design
===============================================
*/

/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
  /* Primary Colors - Deep Navy & Gold Accent */
  --primary-dark: #0a1628;
  --primary-navy: #1a2942;
  --primary-blue: #2c4a6e;
  --accent-gold: #2971f0;
  --accent-gold-light: #296ccf;
  --accent-copper: #2f7cf4;
  
  /* Neutral Colors */
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #e9ecef;
  --medium-gray: #1a2942;
  --dark-gray: #0a1628;
  --text-dark: #0a1628;
  --text-muted: #5a5a6e;
  
  /* Gradient Backgrounds */
  --gradient-primary: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #2c4a6e 100%);
  --gradient-gold: linear-gradient(135deg, #2971f0 0%, #296ccf 100%);
  --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.85) 0%, rgba(26, 41, 66, 0.9) 100%);
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Spacing */
  --section-padding: 100px;
  --container-padding: 15px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.12);
  --shadow-lg: 0 20px 60px rgba(10, 22, 40, 0.15);
  --shadow-gold: 0 8px 30px rgba(201, 168, 76, 0.3);
}

/* ==================== BASE STYLES ==================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-medium);
}

a:hover {
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
}

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-muted);
}

.form-control:focus {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
  border-color: var(--accent-gold);
  outline: none;
}

/* Base Select Styling */
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 45px;
  cursor: pointer;
  background-color: var(--white);
}

/* ==================== UTILITY CLASSES ==================== */
.d-table {
  display: table;
  width: 100%;
  height: 100%;
}

.d-table-cell {
  display: table-cell;
  vertical-align: middle;
}

.pt-100 { padding-top: 100px; }
.pb-70 { padding-bottom: 70px; }
.pb-100 { padding-bottom: 100px; }
.ptb-100 { padding: 100px 0; }

.text-gold { color: var(--accent-gold) !important; }
.text-white { color: var(--white) !important; }
.bg-navy { background: var(--primary-navy) !important; }
.bg-dark { background: var(--primary-dark) !important; }

/* ==================== SECTION TITLE ==================== */
.section-title {
  margin-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.section-title.text-left h2::after {
  left: 0;
  transform: none;
}

.section-title p {
  max-width: 700px;
  margin: 20px auto 0;
  font-size: 1.1rem;
  color: var(--text-muted);
}

.section-title.text-left p {
  margin-left: 0;
}

/* ==================== BUTTONS ==================== */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  transition: var(--transition-medium);
  border: none;
  text-transform: uppercase;
}

.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--primary-dark);
}

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid var(--white);
  transition: var(--transition-medium);
  text-transform: uppercase;
}

.btn-secondary-custom:hover {
  background: var(--white);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  background: transparent;
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  border: 2px solid var(--accent-gold);
  transition: var(--transition-medium);
}

.btn-outline-gold:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.theme-btn .default-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  transition: var(--transition-medium);
  border: none;
  margin-right: 15px;
}

.theme-btn .default-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==================== PRELOADER ==================== */
.loader-content {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-dark);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-content .d-table {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.loader-content .d-table-cell {
  display: flex;
  align-items: center;
  justify-content: center;
}

.sk-circle {
  width: 50px;
  height: 50px;
  position: relative;
  margin: 0 auto;
}

.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

.sk-circle .sk-child::before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: var(--accent-gold);
  border-radius: 100%;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}

.sk-circle .sk-circle2 { transform: rotate(30deg); }
.sk-circle .sk-circle3 { transform: rotate(60deg); }
.sk-circle .sk-circle4 { transform: rotate(90deg); }
.sk-circle .sk-circle5 { transform: rotate(120deg); }
.sk-circle .sk-circle6 { transform: rotate(150deg); }
.sk-circle .sk-circle7 { transform: rotate(180deg); }
.sk-circle .sk-circle8 { transform: rotate(210deg); }
.sk-circle .sk-circle9 { transform: rotate(240deg); }
.sk-circle .sk-circle10 { transform: rotate(270deg); }
.sk-circle .sk-circle11 { transform: rotate(300deg); }
.sk-circle .sk-circle12 { transform: rotate(330deg); }

.sk-circle .sk-circle2::before { animation-delay: -1.1s; }
.sk-circle .sk-circle3::before { animation-delay: -1s; }
.sk-circle .sk-circle4::before { animation-delay: -0.9s; }
.sk-circle .sk-circle5::before { animation-delay: -0.8s; }
.sk-circle .sk-circle6::before { animation-delay: -0.7s; }
.sk-circle .sk-circle7::before { animation-delay: -0.6s; }
.sk-circle .sk-circle8::before { animation-delay: -0.5s; }
.sk-circle .sk-circle9::before { animation-delay: -0.4s; }
.sk-circle .sk-circle10::before { animation-delay: -0.3s; }
.sk-circle .sk-circle11::before { animation-delay: -0.2s; }
.sk-circle .sk-circle12::before { animation-delay: -0.1s; }

@keyframes sk-circleBounceDelay {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

/* ==================== NAVBAR ==================== */
.navbar-area {
  position: relative;
  z-index: 1000;
}

.navbar-area .main-nav {
  background: var(--primary-dark);
  padding: 0;
  position: relative;
}

.navbar-area .main-nav .navbar {
  padding: 20px 0;
}

.navbar-area .main-nav .navbar .navbar-brand {
  padding: 0;
}

.navbar-area .main-nav .navbar .navbar-brand img {
  max-height: 50px;
  filter: brightness(0) invert(1);
}

.navbar-area .main-nav .navbar .navbar-nav {
  margin-left: auto;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item {
  position: relative;
  padding: 10px 0;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .nav-link {
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  transition: var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  white-space: nowrap;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar-area .main-nav .navbar .navbar-nav .nav-item .nav-link.active {
  color: var(--accent-gold);
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .nav-link.dropdown-toggle::after {
  border: 0;
  content: '\ea4a';
  font-family: 'boxicons';
  vertical-align: middle;
  margin-left: 3px;
  font-size: 14px;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu {
  padding: 0;
  border-radius: 0;
  background: var(--primary-navy);
  border: none;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item {
  padding: 0;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link {
  padding: 12px 20px;
  font-size: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  text-transform: none;
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link:hover,
.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item .nav-link.active {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.navbar-area .main-nav .navbar .navbar-nav .nav-item .dropdown-menu .nav-item:last-child .nav-link {
  border-bottom: none;
}

.navbar-area .main-nav .navbar .other-option {
  display: flex;
  align-items: center;
  gap: 15px;
}

.navbar-area .main-nav .navbar .other-option .signin-btn,
.navbar-area .main-nav .navbar .other-option .signup-btn {
  padding: 10px 24px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: var(--transition-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.navbar-area .main-nav .navbar .other-option .signin-btn {
  background: var(--gradient-gold);
  color: var(--primary-dark);
}

.navbar-area .main-nav .navbar .other-option .signin-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.navbar-area .main-nav .navbar .other-option .signup-btn {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.navbar-area .main-nav .navbar .other-option .signup-btn:hover {
  background: var(--white);
  color: var(--primary-dark);
}

/* Sticky Navbar */
.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--primary-dark);
  box-shadow: var(--shadow-lg);
  animation: slideDown 0.5s ease;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Mobile Nav */
.navbar-area .mobile-nav {
  display: none;
}

/* ==================== HERO SLIDER SECTION ==================== */
.hero-slider-section {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(26, 41, 66, 0.8) 100%);
}

.hero-slide .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 800px;
  padding: 150px 0 200px;
}

.hero-tag {
  display: inline-block;
  padding: 10px 25px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 25px;
}

.hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--accent-gold);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  margin-bottom: 35px;
  max-width: 600px;
  line-height: 1.8;
}

.hero-btns {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* Hero Slider Navigation */
.hero-slider .owl-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  pointer-events: none;
}

.hero-slider .owl-nav button {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.3) !important;
  border-radius: 50%;
  color: var(--white) !important;
  font-size: 28px !important;
  transition: var(--transition-medium);
  pointer-events: auto;
}

.hero-slider .owl-nav button:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: var(--primary-dark) !important;
}

.hero-slider .owl-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.hero-slider .owl-dots .owl-dot span {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.4) !important;
  border-radius: 50%;
  transition: var(--transition-medium);
}

.hero-slider .owl-dots .owl-dot.active span {
  width: 35px;
  border-radius: 20px;
  background: var(--accent-gold) !important;
}

/* Hero Search Box */
.hero-search-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translateY(50%);
  z-index: 10;
}

.hero-search-form {
  background: var(--white);
  padding: 30px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.hero-search-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hero-search-form input,
.hero-search-form select {
  width: 100%;
  height: 55px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  transition: var(--transition-medium);
  background: var(--white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  cursor: pointer;
}

.hero-search-form input {
  background-image: none;
}

.hero-search-form input:focus,
.hero-search-form select:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

/* Nice Select Styling for Hero Search */
.hero-search-form .nice-select {
  width: 100%;
  height: 55px;
  line-height: 51px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  background: var(--white);
  float: none;
}

.hero-search-form .nice-select:focus,
.hero-search-form .nice-select.open {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.hero-search-form .nice-select::after {
  right: 18px;
  border-color: var(--medium-gray);
}

.hero-search-form .nice-select .list {
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  margin-top: 5px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  z-index: 9999;
  background: var(--white);
}

.hero-search-form .nice-select .option {
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.5;
  min-height: auto;
}

.hero-search-form .nice-select .option:hover,
.hero-search-form .nice-select .option.focus,
.hero-search-form .nice-select .option.selected.focus {
  background-color: rgba(201, 168, 76, 0.15);
  color: var(--text-dark);
}

.hero-search-form .nice-select .option.selected {
  font-weight: 600;
  color: var(--accent-gold);
}

.hero-search-form .search-btn {
  width: 100%;
  height: 55px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition-medium);
}

.hero-search-form .search-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==================== STATS SECTION ==================== */
.stats-section {
  padding: 100px 0 60px;
  background: var(--off-white);
}

.stats-wrapper {
  background: var(--white);
  border-radius: 20px;
  padding: 50px 40px;
  box-shadow: var(--shadow-lg);
  margin-top: -80px;
  position: relative;
  z-index: 5;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 15px;
  transition: var(--transition-medium);
}

.stat-card:hover {
  background: var(--off-white);
}

.stat-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon i {
  font-size: 36px;
  color: var(--accent-gold);
}

.stat-content .stat-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
  margin-bottom: 5px;
}

.stat-content .stat-number .counter {
  color: var(--accent-gold);
}

.stat-content p {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==================== BANNER SECTION (Legacy Support) ==================== */
.banner-section {
  position: relative;
  min-height: 100vh;
  background: url(../img/banner/1.jpg) center center / cover no-repeat;
  display: flex;
  align-items: center;
}

.banner-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.banner-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent, var(--white));
  z-index: 2;
}

.banner-section .container {
  position: relative;
  z-index: 3;
}

.banner-section .banner-content {
  text-align: center;
  padding: 120px 0 80px;
}

.banner-section .banner-content p {
  color: var(--accent-gold);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
}

.banner-section .banner-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
}

.banner-section .banner-content h1 span {
  color: var(--accent-gold);
}

.banner-section .banner-content > p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* Banner Search Form */
.banner-section .banner-content .banner-form {
  background: var(--white);
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.banner-section .banner-content .banner-form .form-group {
  margin-bottom: 0;
  text-align: left;
}

.banner-section .banner-content .banner-form .form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.banner-section .banner-content .banner-form .form-group .form-control {
  height: 55px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  transition: var(--transition-medium);
}

.banner-section .banner-content .banner-form .form-group .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.banner-section .banner-content .banner-form .form-group .form-control::placeholder {
  color: var(--medium-gray);
}

.banner-section .banner-content .banner-form .find-btn {
  width: 100%;
  height: 55px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 10px;
  border: none;
  margin-top: 26px;
  transition: var(--transition-medium);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.banner-section .banner-content .banner-form .find-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.banner-section .banner-content .banner-form .find-btn i {
  font-size: 20px;
}

/* Banner Keywords */
.banner-section .banner-content .keyword {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.banner-section .banner-content .keyword li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
}

.banner-section .banner-content .keyword li:first-child {
  font-weight: 600;
  color: var(--white);
}

.banner-section .banner-content .keyword li a {
  color: var(--accent-gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.banner-section .banner-content .keyword li a:hover {
  color: var(--white);
}

/* ==================== STATS BAR ==================== */
.stats-bar {
  background: var(--primary-dark);
  padding: 50px 0;
  margin-top: -100px;
  position: relative;
  z-index: 10;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-gold);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-item .stat-label {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ==================== CATEGORY SECTION ==================== */
.categories-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.categories-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

/* Category Slider */
.category-slider {
  position: relative;
}

.category-slider .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
  display: flex;
  gap: 10px;
}

.category-slider .owl-nav button {
  width: 45px;
  height: 45px;
  background: var(--white) !important;
  border: 2px solid var(--light-gray) !important;
  border-radius: 50%;
  color: var(--text-dark) !important;
  font-size: 22px !important;
  transition: var(--transition-medium);
}

.category-slider .owl-nav button:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: var(--primary-dark) !important;
}

.category-slide {
  padding: 10px;
}

.category-card {
  background: var(--white);
  padding: 40px 30px;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  margin-bottom: 30px;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition-medium);
  z-index: 0;
}

.category-card:hover::before {
  opacity: 1;
}

.category-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.category-card > * {
  position: relative;
  z-index: 1;
}

.category-icon {
  width: 90px;
  height: 90px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition-medium);
}

.category-card:hover .category-icon {
  background: rgba(255, 255, 255, 0.3);
}

.category-card i,
.category-icon i {
  font-size: 40px;
  color: var(--accent-gold);
  transition: var(--transition-medium);
}

.category-card:hover i,
.category-card:hover .category-icon i {
  color: var(--primary-dark);
}

.category-card h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
  transition: var(--transition-medium);
}

.category-card:hover h3 {
  color: var(--primary-dark);
}

.category-card p {
  color: var(--accent-copper);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0;
  transition: var(--transition-medium);
}

.category-card:hover p {
  color: var(--primary-dark);
  opacity: 0.8;
}

.category-arrow {
  display: inline-flex;
  width: 40px;
  height: 40px;
  background: var(--accent-gold);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: var(--transition-medium);
}

.category-arrow i {
  font-size: 20px;
  color: var(--primary-dark) !important;
}

.category-card:hover .category-arrow {
  opacity: 1;
  transform: translateY(0);
  background: var(--white);
}

/* ==================== FEATURED JOBS SECTION ==================== */
.featured-jobs-section {
  background: var(--white);
}

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  flex-wrap: wrap;
  gap: 20px;
}

.section-header .section-title {
  margin-bottom: 0;
}

.section-header .section-title h2::after {
  display: none;
}

.section-header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 25px;
  background: transparent;
  border: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: var(--transition-medium);
}

.view-all-btn:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* Jobs Slider */
.jobs-slider {
  position: relative;
}

/* Jobs Slider Custom Nav in Header */
.jobs-slider-nav {
  display: flex;
  gap: 10px;
}

.jobs-slider-nav button {
  width: 45px;
  height: 45px;
  background: var(--off-white);
  border: 2px solid var(--light-gray);
  border-radius: 50%;
  color: var(--text-dark);
  font-size: 22px;
  transition: var(--transition-medium);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.jobs-slider-nav button:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
}

.jobs-slider .owl-nav {
  display: none;
}

.job-slide {
  padding: 10px;
}

/* Modern Job Card */
.job-card-modern {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition-medium);
}

.job-card-modern:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.job-card-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.job-card-header .company-logo {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.job-card-header .company-logo img {
  max-width: 100%;
  max-height: 100%;
}

.job-badge {
  display: inline-block;
  padding: 6px 15px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
}

.job-card-body {
  padding: 25px;
}

.job-card-body h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.job-card-body h4 a {
  color: var(--text-dark);
}

.job-card-body h4 a:hover {
  color: var(--accent-gold);
}

.job-card-body .company-name {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 15px;
}

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

.job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--text-muted);
}

.job-meta span i {
  color: var(--accent-gold);
  font-size: 16px;
}

.job-card-footer {
  padding: 20px 25px;
  border-top: 1px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--off-white);
}

.job-category {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-copper);
  font-size: 12px;
  font-weight: 500;
  border-radius: 15px;
}

.apply-btn {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  transition: var(--transition-medium);
}

.apply-btn:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-gold);
  color: var(--primary-dark);
}

/* ==================== HOW IT WORKS SECTION ==================== */
.how-it-works-section {
  background: var(--primary-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.how-it-works-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/section-bg/1.jpg) center center / cover no-repeat;
  opacity: 0.1;
}

.how-it-works-section .section-title h2 {
  color: var(--white);
}

.how-it-works-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.process-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  position: relative;
  transition: var(--transition-medium);
  margin-bottom: 30px;
}

.process-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
}

.process-number {
  position: absolute;
  top: -20px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(201, 168, 76, 0.15);
  line-height: 1;
}

.process-icon {
  width: 100px;
  height: 100px;
  background: rgba(201, 168, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  border: 2px dashed rgba(201, 168, 76, 0.5);
  transition: var(--transition-medium);
}

.process-card:hover .process-icon {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.process-icon i {
  font-size: 40px;
  color: var(--accent-gold);
  transition: var(--transition-medium);
}

.process-card:hover .process-icon i {
  color: var(--primary-dark);
}

.process-card h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.process-card p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
  font-size: 15px;
}

/* How It Works - Light Background Variant */
.how-it-works-section.light-bg {
  background: var(--off-white);
}

.how-it-works-section.light-bg::before {
  display: none;
}

.how-it-works-section.light-bg .section-title h2 {
  color: var(--text-dark);
}

.how-it-works-section.light-bg .section-title p {
  color: var(--text-muted);
}

.how-it-works-section.light-bg .process-card {
  background: var(--white);
  border: 2px solid var(--light-gray);
  box-shadow: var(--shadow-sm);
}

.how-it-works-section.light-bg .process-card:hover {
  background: var(--white);
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-lg);
}

.how-it-works-section.light-bg .process-number {
  color: rgba(201, 168, 76, 0.2);
}

.how-it-works-section.light-bg .process-icon {
  background: rgba(201, 168, 76, 0.1);
  border-color: rgba(201, 168, 76, 0.2);
}

.how-it-works-section.light-bg .process-card:hover .process-icon {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.how-it-works-section.light-bg .process-card h3 {
  color: var(--text-dark);
}

.how-it-works-section.light-bg .process-card h4 {
  color: var(--text-dark);
}

.how-it-works-section.light-bg .process-card p {
  color: var(--text-muted);
}

/* ==================== WHY CHOOSE SECTION ==================== */
.why-choose-section {
  background: var(--white);
  position: relative;
}

.why-choose-content .section-title h2::after {
  left: 0;
  transform: none;
}

.why-choose-content .section-title p {
  margin-left: 0;
}

.features-list {
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  padding: 25px;
  background: var(--off-white);
  border-radius: 15px;
  transition: var(--transition-medium);
}

.feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateX(10px);
}

.feature-icon {
  width: 60px;
  height: 60px;
  min-width: 60px;
  background: var(--gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon i {
  font-size: 28px;
  color: var(--primary-dark);
}

.feature-text h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-text p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
  line-height: 1.6;
}

.why-choose-image {
  position: relative;
  padding: 30px;
}

.why-choose-image .main-img {
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.experience-badge {
  position: absolute;
  bottom: 60px;
  left: 0;
  background: var(--gradient-gold);
  padding: 25px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.experience-badge .years {
  display: block;
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-dark);
  line-height: 1;
}

.experience-badge .text {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

/* ==================== COUNTRIES SECTION ==================== */
.countries-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.countries-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/section-bg/1.jpg) center center / cover no-repeat;
  opacity: 0.08;
}

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

.countries-section .section-title h2 {
  color: var(--white);
}

.countries-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.countries-slider {
  margin-top: 50px;
}

.countries-slider .owl-nav {
  position: absolute;
  top: -80px;
  right: 0;
  display: flex;
  gap: 10px;
}

.countries-slider .owl-nav button {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1) !important;
  border: 2px solid rgba(255, 255, 255, 0.2) !important;
  border-radius: 50%;
  color: var(--white) !important;
  font-size: 22px !important;
  transition: var(--transition-medium);
}

.countries-slider .owl-nav button:hover {
  background: var(--accent-gold) !important;
  border-color: var(--accent-gold) !important;
  color: var(--primary-dark) !important;
}

.countries-slider .owl-dots {
  margin-top: 40px;
  text-align: center;
}

.countries-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.3) !important;
  margin: 0 5px;
  border-radius: 50%;
  transition: var(--transition-medium);
}

.countries-slider .owl-dots .owl-dot.active span {
  width: 30px;
  border-radius: 10px;
  background: var(--accent-gold) !important;
}

.country-slide {
  padding: 10px;
}

.country-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition-medium);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.country-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.country-flag {
  position: relative;
  height: 140px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.country-flag img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-medium);
}

.country-card:hover .country-flag img {
  transform: scale(1.1);
}

.country-info {
  padding: 25px 20px 15px;
}

.country-info h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.country-info span {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.country-info .jobs-count {
  display: inline-block;
  padding: 5px 15px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-copper);
  font-size: 13px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 0;
}

.country-link {
  display: block;
  padding: 15px 20px;
  background: var(--off-white);
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  transition: var(--transition-medium);
  border-top: 1px solid var(--light-gray);
}

.country-link i {
  transition: var(--transition-medium);
}

.country-link:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.country-link:hover i {
  transform: translateX(5px);
}

/* ==================== ACCREDITATIONS HOME SECTION ==================== */
.accreditations-home-section {
  background: var(--off-white);
  padding: 80px 0;
}

.accreditations-slider {
  margin-top: 40px;
}

.accreditations-slider .owl-dots {
  margin-top: 30px;
  text-align: center;
}

.accreditations-slider .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  background: var(--light-gray) !important;
  margin: 0 5px;
  border-radius: 50%;
  transition: var(--transition-medium);
}

.accreditations-slider .owl-dots .owl-dot.active span {
  width: 25px;
  border-radius: 10px;
  background: var(--accent-gold) !important;
}

.accreditation-item {
  text-align: center;
  padding: 30px 20px;
  background: var(--white);
  border-radius: 15px;
  transition: var(--transition-medium);
  border: 1px solid var(--light-gray);
}

.accreditation-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent-gold);
}

.accreditation-icon {
  width: 70px;
  height: 70px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
}

.accreditation-icon i {
  font-size: 30px;
  color: var(--accent-gold);
}

.accreditation-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.accreditation-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.cta-card {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 40px;
  border-radius: 20px;
  transition: var(--transition-medium);
  margin-bottom: 30px;
}

.cta-card:hover {
  transform: translateY(-5px);
}

.cta-jobseeker {
  background: var(--gradient-gold);
}

.cta-employer {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-icon {
  width: 80px;
  height: 80px;
  min-width: 80px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-jobseeker .cta-icon {
  background: rgba(10, 22, 40, 0.15);
}

.cta-employer .cta-icon {
  background: rgba(201, 168, 76, 0.2);
}

.cta-icon i {
  font-size: 36px;
}

.cta-jobseeker .cta-icon i {
  color: var(--primary-dark);
}

.cta-employer .cta-icon i {
  color: var(--accent-gold);
}

.cta-content h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-jobseeker .cta-content h3,
.cta-jobseeker .cta-content p {
  color: var(--primary-dark);
}

.cta-employer .cta-content h3 {
  color: var(--white);
}

.cta-content p {
  font-size: 14px;
  margin-bottom: 15px;
}

.cta-employer .cta-content p {
  color: rgba(255, 255, 255, 0.7);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
}

.cta-jobseeker .cta-link {
  color: var(--primary-dark);
}

.cta-employer .cta-link {
  color: var(--accent-gold);
}

.cta-link:hover {
  gap: 12px;
}

/* ==================== FAQ SECTION ==================== */
.faq-section {
  background: var(--off-white);
}

.faq-content .section-title h2::after {
  left: 0;
  transform: none;
}

.faq-content .section-title p {
  margin-left: 0;
}

.faq-image {
  margin: 30px 0;
}

.faq-contact {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.faq-contact p {
  margin-bottom: 15px;
  font-weight: 500;
  color: var(--text-dark);
}

.faq-accordion {
  padding-left: 30px;
}

.accordion-item {
  background: var(--white);
  border: none !important;
  border-radius: 15px !important;
  margin-bottom: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  padding: 25px 30px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--white);
  box-shadow: none !important;
  display: flex;
  align-items: center;
  gap: 15px;
}

.accordion-button i {
  font-size: 22px;
  color: var(--accent-gold);
}

.accordion-button:not(.collapsed) {
  background: var(--primary-dark);
  color: var(--white);
}

.accordion-button:not(.collapsed) i {
  color: var(--accent-gold);
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232971f0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 20px;
  height: 20px;
}

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

.accordion-body {
  padding: 0 30px 25px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.8;
}

/* ==================== ABOUT TESTIMONIALS SECTION ==================== */
.about-testimonials-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  position: relative;
  overflow: hidden;
}

.about-testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/section-bg/2.jpg) center center / cover no-repeat;
  opacity: 0.1;
}

.about-testimonials-section .container {
  position: relative;
  z-index: 2;
}

.about-testimonials-section .section-title h2 {
  color: var(--white);
}

.about-testimonials-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonials-grid {
  margin-top: 50px;
}

.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  right: 30px;
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--light-gray);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.testimonial-card.featured {
  background: var(--gradient-gold);
}

.testimonial-card.featured::before {
  color: rgba(10, 22, 40, 0.1);
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 18px;
  margin-right: 2px;
}

.testimonial-card.featured .testimonial-rating i {
  color: var(--primary-dark);
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-card.featured .testimonial-text {
  color: var(--primary-dark);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid var(--light-gray);
}

.testimonial-card.featured .testimonial-author {
  border-top-color: rgba(10, 22, 40, 0.15);
}

.author-avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-gold);
}

.testimonial-card.featured .author-avatar {
  border-color: var(--primary-dark);
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--text-dark);
}

.testimonial-card.featured .author-info h5 {
  color: var(--primary-dark);
}

.author-info span {
  font-size: 13px;
  color: var(--accent-gold);
  font-weight: 500;
}

.testimonial-card.featured .author-info span {
  color: var(--primary-navy);
}

/* ==================== JOB CARDS ==================== */
.job-section {
  padding: 100px 0 70px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 30px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient-gold);
  opacity: 0;
  transition: var(--transition-medium);
}

.job-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.job-card:hover::before {
  opacity: 1;
}

.job-card .thumb-img {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--light-gray);
}

.job-card .thumb-img img {
  max-width: 50px;
}

.job-card .job-info h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.job-card .job-info h3 a {
  color: var(--text-dark);
}

.job-card .job-info h3 a:hover {
  color: var(--accent-gold);
}

.job-card .job-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.job-card .job-info ul li {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.job-card .job-info ul li i {
  color: var(--accent-gold);
  font-size: 16px;
}

.job-card .job-info ul li a {
  color: var(--accent-gold);
  font-weight: 600;
}

.job-card .job-save {
  text-align: right;
}

.job-card .job-save span {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-copper);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
}

.job-card .job-save a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid var(--light-gray);
  color: var(--medium-gray);
  display: inline-block;
  transition: var(--transition-medium);
}

.job-card .job-save a i:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--white);
}

.job-card .job-save p {
  margin-top: 10px;
  font-size: 13px;
  color: var(--medium-gray);
}

.job-card .job-save p i {
  margin-right: 3px;
}

/* ==================== HOW IT WORKS SECTION ==================== */
.use-section {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.use-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/section-bg/1.jpg) center center / cover no-repeat;
  opacity: 0.1;
}

.use-section .section-title h2 {
  color: var(--white);
}

.use-section .section-title h2::after {
  background: var(--gradient-gold);
}

.use-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.use-text {
  text-align: center;
  padding: 40px 20px;
  position: relative;
  margin-bottom: 30px;
}

.use-text span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 35px;
  height: 35px;
  line-height: 35px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-radius: 50%;
  font-weight: 700;
  font-size: 14px;
  z-index: 2;
}

.use-text i {
  width: 130px;
  height: 130px;
  line-height: 130px;
  font-size: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-gold);
  border-radius: 50%;
  display: inline-block;
  margin-bottom: 30px;
  border: 3px dashed rgba(201, 168, 76, 0.5);
  transition: var(--transition-medium);
}

.use-text:hover i {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

.use-text h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.use-text p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

/* ==================== WHY CHOOSE US ==================== */
.why-choose {
  background: var(--primary-dark);
  position: relative;
  overflow: hidden;
}

.why-choose::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.why-choose-text {
  padding: 80px 50px;
  position: relative;
  z-index: 2;
}

.why-choose-text .section-title {
  margin-bottom: 40px;
}

.why-choose-text .section-title h2 {
  color: var(--white);
  font-size: 2.25rem;
}

.why-choose-text .section-title h2::after {
  left: 0;
  transform: none;
}

.why-choose-text .section-title p {
  color: rgba(255, 255, 255, 0.75);
  max-width: none;
  margin-left: 0;
}

.why-choose-text .media {
  display: flex;
  margin-bottom: 35px;
  align-items: flex-start;
}

.why-choose-text .media i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 28px;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  margin-right: 20px;
}

.why-choose-text .media .media-body h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.why-choose-text .media .media-body p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  margin-bottom: 0;
  max-width: 280px;
}

/* Counter Area */
.counter-area {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.counter-area .counter-text {
  text-align: center;
  padding: 15px;
}

.counter-area .counter-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 5px;
}

.counter-area .counter-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
}

.why-choose-img {
  height: 100%;
  min-height: 500px;
  background: url(../img/why.choose.jpg) center center / cover no-repeat;
  position: relative;
}

.why-choose-img::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.3) 0%, rgba(201, 168, 76, 0.2) 100%);
}

/* ==================== TESTIMONIALS ==================== */
.testimonial-section {
  background: var(--primary-navy);
  position: relative;
  overflow: hidden;
}

.testimonial-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/section-bg/2.jpg) center center / cover no-repeat;
  opacity: 0.15;
}

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

.testimonial-section .section-title h2 {
  color: var(--white);
}

.testimonial-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.testimonial-items .testimonial-img {
  margin-bottom: 20px;
}

.testimonial-items .testimonial-img img {
  width: 100%;
  border-radius: 15px;
}

.testimonial-items .testimonial-img-text {
  text-align: center;
  margin-top: 15px;
}

.testimonial-items .testimonial-img-text h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.testimonial-items .testimonial-img-text p {
  color: var(--accent-gold);
  margin-bottom: 0;
  font-size: 14px;
}

.testimonial-items .testimonial-text {
  background: var(--white);
  padding: 50px;
  border-radius: 15px;
  position: relative;
}

.testimonial-items .testimonial-text::before {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50px;
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid var(--white);
}

.testimonial-items .testimonial-text i {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: block;
}

.testimonial-items .testimonial-text > p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-items .testimonial-text .testimonial-rating {
  display: flex;
  gap: 5px;
}

.testimonial-items .testimonial-text .testimonial-rating i {
  font-size: 18px;
  color: #ffc107;
  margin-bottom: 0;
  display: inline-block;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-slider .owl-nav {
  margin-top: 30px;
  text-align: center;
}

.testimonial-slider .owl-prev,
.testimonial-slider .owl-next {
  width: 50px !important;
  height: 50px !important;
  line-height: 50px !important;
  background: var(--accent-gold) !important;
  color: var(--primary-dark) !important;
  border-radius: 50% !important;
  font-size: 24px !important;
  transition: var(--transition-medium);
  margin: 0 5px;
}

.testimonial-slider .owl-prev:hover,
.testimonial-slider .owl-next:hover {
  background: var(--white) !important;
}

/* ==================== COMPANY SECTION ==================== */
.company-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 15px;
  padding: 40px 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: var(--transition-medium);
}

.company-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.company-card .company-logo {
  margin-bottom: 25px;
}

.company-card .company-logo img {
  max-height: 60px;
}

.company-card .company-text h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.company-card .company-text p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.company-card .company-text .company-btn {
  display: inline-block;
  padding: 10px 25px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: 25px;
  transition: var(--transition-medium);
}

.company-card:hover .company-btn {
  transform: scale(1.05);
}

/* ==================== JOB INFO CARDS ==================== */
.looking-job {
  background: var(--gradient-gold);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.looking-job::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.looking-job .media {
  display: flex;
  align-items: flex-start;
}

.looking-job .media i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 28px;
  background: rgba(255, 255, 255, 0.25);
  color: var(--primary-dark);
  border-radius: 12px;
  margin-right: 20px;
}

.looking-job .media .media-body h5 {
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.looking-job .media .media-body p {
  color: var(--primary-dark);
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 8px;
}

.looking-job .media .media-body a {
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.looking-job .media .media-body a:hover {
  text-decoration: underline;
}

.recruiting-card {
  background: var(--primary-dark);
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.recruiting-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200px;
  height: 200px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
}

.recruiting-card .media {
  display: flex;
  align-items: flex-start;
}

.recruiting-card .media i {
  width: 60px;
  height: 60px;
  min-width: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 28px;
  background: rgba(201, 168, 76, 0.2);
  color: var(--accent-gold);
  border-radius: 12px;
  margin-right: 20px;
}

.recruiting-card .media .media-body h5 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.recruiting-card .media .media-body p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 8px;
}

.recruiting-card .media .media-body a {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.recruiting-card .media .media-body a:hover {
  color: var(--white);
}

/* ==================== SUBSCRIBE SECTION ==================== */
.subscribe-section {
  background: var(--primary-dark);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.subscribe-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

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

.subscribe-section .section-title {
  margin-bottom: 0;
}

.subscribe-section .section-title h2 {
  color: var(--white);
  margin-bottom: 10px;
}

.subscribe-section .section-title h2::after {
  display: none;
}

.subscribe-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.subscribe-section .newsletter-form {
  position: relative;
}

.subscribe-section .newsletter-form .form-control {
  height: 60px;
  border-radius: 50px;
  padding: 15px 160px 15px 30px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 16px;
}

.subscribe-section .newsletter-form .form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.subscribe-section .newsletter-form .form-control:focus {
  border-color: var(--accent-gold);
  background: rgba(255, 255, 255, 0.15);
}

.subscribe-section .newsletter-form .sub-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  height: 50px;
  padding: 0 35px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  transition: var(--transition-medium);
}

.subscribe-section .newsletter-form .sub-btn:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-gold);
}

/* ==================== FOOTER ==================== */
.footer-area {
  background: var(--primary-dark);
  padding: 100px 0 70px;
  position: relative;
}

.footer-area::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-navy) 0%, var(--primary-dark) 100%);
  opacity: 0.5;
}

.footer-area .container {
  position: relative;
  z-index: 2;
}

.footer-area .footer-widget {
  margin-bottom: 30px;
}

.footer-area .footer-widget .footer-logo {
  margin-bottom: 25px;
}

.footer-area .footer-widget .footer-logo img {
  max-height: 50px;
  filter: brightness(0) invert(1);
}

.footer-area .footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
}

.footer-area .footer-widget .footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-area .footer-widget .footer-social a i {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  font-size: 16px;
  transition: var(--transition-medium);
}

.footer-area .footer-widget .footer-social a i:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.footer-area .footer-widget h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-gold);
  display: inline-block;
}

.footer-area .footer-widget ul li {
  margin-bottom: 12px;
}

.footer-area .footer-widget ul li:last-child {
  margin-bottom: 0;
}

.footer-area .footer-widget ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition-medium);
}

.footer-area .footer-widget ul li a i {
  color: var(--accent-gold);
  font-size: 16px;
}

.footer-area .footer-widget ul li a:hover {
  color: var(--accent-gold);
  transform: translateX(5px);
}

.footer-area .footer-widget.footer-info ul li {
  margin-bottom: 15px;
}

.footer-area .footer-widget.footer-info ul li span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 5px;
}

.footer-area .footer-widget.footer-info ul li span i {
  color: var(--accent-gold);
  font-size: 18px;
}

.footer-area .footer-widget.footer-info ul li a {
  color: rgba(255, 255, 255, 0.7);
  padding-left: 28px;
}

.footer-area .footer-widget.pl-60 {
  padding-left: 30px;
}

.copyright-text {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 0;
  text-align: center;
}

.copyright-text p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 0;
  font-size: 14px;
}

.copyright-text p a {
  color: var(--accent-gold);
  font-weight: 500;
}

.copyright-text p a:hover {
  color: var(--white);
}

/* ==================== BACK TO TOP ==================== */
.top-btn {
  position: fixed;
  bottom: -100px;
  right: 30px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-size: 24px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 999;
  transition: var(--transition-medium);
  box-shadow: var(--shadow-gold);
}

.top-btn:hover {
  transform: translateY(-5px);
}

.top-btn.active {
  bottom: 30px;
}

/* ==================== PAGE TITLE ==================== */
.page-title {
  position: relative;
  padding: 150px 0;
  text-align: center;
  background: var(--primary-dark);
  overflow: hidden;
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  z-index: 1;
}

.page-title.title-bg1 { background: url(../img/title-bg/1.jpg) center center / cover no-repeat; }
.page-title.title-bg2 { background: url(../img/title-bg/2.jpg) center center / cover no-repeat; }
.page-title.title-bg3 { background: url(../img/title-bg/3.jpg) center center / cover no-repeat; }
.page-title.title-bg4 { background: url(../img/title-bg/4.jpg) center center / cover no-repeat; }

.page-title .d-table {
  position: relative;
  z-index: 3;
}

.page-title h2 {
  color: var(--white);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.page-title ul {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  padding: 12px 25px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.page-title ul li {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

.page-title ul li::after {
  content: '\ea50';
  font-family: 'boxicons';
  margin-left: 15px;
  color: var(--accent-gold);
}

.page-title ul li:last-child::after {
  display: none;
}

.page-title ul li a {
  color: var(--white);
  font-weight: 500;
}

.page-title ul li a:hover {
  color: var(--accent-gold);
}

.page-title .lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 2;
  overflow: hidden;
}

.page-title .lines .line {
  position: absolute;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  top: 0;
}

.page-title .lines .line:nth-child(1) { left: 25%; }
.page-title .lines .line:nth-child(2) { left: 50%; }
.page-title .lines .line:nth-child(3) { left: 75%; }

.page-title .lines .line::after {
  content: '';
  position: absolute;
  width: 3px;
  height: 20px;
  background: var(--accent-gold);
  left: -1px;
  animation: lineMove 8s infinite linear;
}

@keyframes lineMove {
  0% { top: -20px; }
  100% { top: 100%; }
}

/* ==================== ABOUT PAGE ==================== */
.about-section .about-text .section-title h2 {
  margin-left: 0;
}

.about-section .about-text .section-title h2::after {
  left: 0;
  transform: none;
}

.about-section .about-img img {
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
}

/* Accreditations Section */
.accreditations-section {
  background: var(--off-white);
  padding: 100px 0;
}

.accreditation-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  margin-bottom: 30px;
  transition: var(--transition-medium);
}

.accreditation-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.accreditation-card img {
  max-height: 80px;
  margin-bottom: 20px;
}

.accreditation-card h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.accreditation-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Mission Vision Values */
.mission-vision-section {
  padding: 100px 0;
}

.mvv-card {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
  border-top: 4px solid var(--accent-gold);
  transition: var(--transition-medium);
}

.mvv-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.mvv-card i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  font-size: 36px;
  border-radius: 50%;
  margin-bottom: 25px;
  display: inline-block;
}

.mvv-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.mvv-card p {
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ==================== JOBS FILTER ==================== */
.jobs-filter-section {
  background: var(--off-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--light-gray);
}

.filter-card {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: var(--shadow-sm);
}

.filter-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-gold);
}

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

.filter-card .form-group:last-child {
  margin-bottom: 0;
}

.filter-card .form-group label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
}

.filter-card .form-control,
.filter-card .form-select {
  width: 100%;
  height: 48px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 10px 15px;
  font-size: 14px;
  transition: var(--transition-medium);
  box-sizing: border-box;
}

.filter-card select.form-control {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 45px;
  cursor: pointer;
  background-color: var(--white);
}

.filter-card .form-control:focus,
.filter-card .form-select:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.filter-card .filter-btn {
  width: 100%;
  padding: 14px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  border-radius: 10px;
  border: none;
  transition: var(--transition-medium);
}

.filter-card .filter-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.filter-card .clear-btn {
  width: 100%;
  padding: 12px;
  background: transparent;
  color: var(--text-muted);
  font-weight: 500;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  margin-top: 10px;
  transition: var(--transition-medium);
}

.filter-card .clear-btn:hover {
  background: var(--light-gray);
  color: var(--text-dark);
}

/* Filter Tags */
.filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-copper);
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
}

.filter-tag .remove-tag {
  cursor: pointer;
  opacity: 0.7;
  transition: var(--transition-fast);
}

.filter-tag .remove-tag:hover {
  opacity: 1;
}

/* Job Count */
.jobs-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--light-gray);
}

.jobs-count p {
  margin-bottom: 0;
  color: var(--text-muted);
}

.jobs-count p strong {
  color: var(--text-dark);
}

.jobs-sort select {
  border: 2px solid var(--light-gray);
  padding: 8px 35px 8px 15px;
  border-radius: 8px;
  font-size: 14px;
  background: var(--white);
  cursor: pointer;
}

/* ==================== RESUME UPLOAD ==================== */
.resume-upload-section {
  padding: 100px 0;
}

.resume-upload-card {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.resume-upload-card h2 {
  text-align: center;
  margin-bottom: 15px;
}

.resume-upload-card > p {
  text-align: center;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 40px;
}

.upload-area {
  border: 3px dashed var(--light-gray);
  border-radius: 15px;
  padding: 60px 30px;
  text-align: center;
  margin-bottom: 30px;
  transition: var(--transition-medium);
  cursor: pointer;
  background: var(--off-white);
}

.upload-area:hover,
.upload-area.dragover {
  border-color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.05);
}

.upload-area i {
  font-size: 60px;
  color: var(--accent-gold);
  margin-bottom: 20px;
  display: block;
}

.upload-area h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.upload-area p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

.upload-area .browse-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  border-radius: 50px;
  font-size: 14px;
}

.resume-form .form-group {
  margin-bottom: 25px;
}

.resume-form .form-group label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: block;
}

.resume-form .form-group label span {
  color: #dc3545;
}

.resume-form .form-control {
  height: 50px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  background-color: var(--white);
  color: var(--text-dark);
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.resume-form select.form-control {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 45px;
  cursor: pointer;
}

.resume-form .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
  outline: none;
}

.resume-form textarea.form-control {
  height: auto;
  min-height: 120px;
}

/* Nice Select Styling for Resume Form */
.resume-form .nice-select {
  width: 100%;
  height: 50px;
  line-height: 46px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  background: var(--white);
  color: var(--text-dark);
  float: none;
}

.resume-form .nice-select:focus,
.resume-form .nice-select.open {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.resume-form .nice-select::after {
  right: 18px;
  border-color: var(--medium-gray);
}

.resume-form .nice-select .list {
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  margin-top: 5px;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  z-index: 9999;
  background: var(--white);
}

.resume-form .nice-select .option {
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.5;
  min-height: auto;
}

.resume-form .nice-select .option:hover,
.resume-form .nice-select .option.focus,
.resume-form .nice-select .option.selected.focus {
  background-color: rgba(201, 168, 76, 0.15);
  color: var(--text-dark);
}

.resume-form .nice-select .option.selected {
  font-weight: 600;
  color: var(--accent-gold);
}

.resume-form .submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  transition: var(--transition-medium);
}

.resume-form .submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==================== CONTACT PAGE ==================== */
.contact-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-md);
  margin-bottom: 30px;
  border-top: 4px solid var(--accent-gold);
  transition: var(--transition-medium);
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.contact-card i {
  width: 70px;
  height: 70px;
  line-height: 70px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  font-size: 30px;
  border-radius: 50%;
  margin-bottom: 20px;
  display: inline-block;
}

.contact-card h4 {
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-card ul li {
  margin-bottom: 5px;
  color: var(--text-muted);
}

.contact-card ul li a {
  color: var(--text-muted);
}

.contact-card ul li a:hover {
  color: var(--accent-gold);
}

.contact-area {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.contact-area h3 {
  text-align: center;
  margin-bottom: 30px;
}

.contact-area .form-group {
  margin-bottom: 25px;
}

.contact-area .form-control {
  height: 55px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 15px 20px;
}

.contact-area .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.contact-area .message-field {
  height: auto;
  min-height: 150px;
}

.contact-area .contact-btn {
  width: 100%;
  padding: 16px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 10px;
  transition: var(--transition-medium);
}

.contact-area .contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==================== CHOOSE CARD STYLES ==================== */
.choose-card {
  background: var(--white);
  padding: 45px 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  margin-bottom: 30px;
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.choose-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: var(--primary-dark);
  transition: var(--transition-medium);
  z-index: 0;
}

.choose-card:hover::before {
  height: 100%;
}

.choose-card > * {
  position: relative;
  z-index: 1;
}

.choose-card i {
  width: 80px;
  height: 80px;
  line-height: 80px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  font-size: 36px;
  border-radius: 50%;
  margin-bottom: 25px;
  display: inline-block;
  transition: var(--transition-medium);
}

.choose-card:hover i {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.choose-card h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  transition: var(--transition-medium);
}

.choose-card:hover h3 {
  color: var(--white);
}

.choose-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 0;
  transition: var(--transition-medium);
}

.choose-card:hover p {
  color: rgba(255, 255, 255, 0.7);
}

/* ==================== WHY CHOOSE TWO ==================== */
.why-choose-two {
  background: var(--off-white);
}

/* ==================== FORMS ==================== */
.job-post-from {
  background: var(--white);
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.job-post-from h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}

.job-post-from .form-group {
  margin-bottom: 25px;
}

.job-post-from .form-group label {
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: block;
}

.job-post-from .form-control {
  height: 50px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 12px 18px;
  font-size: 15px;
  background-color: var(--white);
  width: 100%;
}

.job-post-from select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 45px;
  cursor: pointer;
}

.job-post-from .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
  outline: none;
}

/* Nice Select for Job Post Form */
.job-post-from .nice-select {
  width: 100%;
  height: 50px;
  line-height: 46px;
  border: 2px solid var(--light-gray);
  border-radius: 10px;
  padding: 0 18px;
  font-size: 15px;
  background: var(--white);
  float: none;
}

.job-post-from .nice-select:focus,
.job-post-from .nice-select.open {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.job-post-from .nice-select .list {
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  background: var(--white);
}

.job-post-from .nice-select .option {
  padding: 12px 18px;
  font-size: 14px;
}

.job-post-from .nice-select .option:hover,
.job-post-from .nice-select .option.focus {
  background-color: rgba(201, 168, 76, 0.15);
}

.job-post-from .post-btn {
  padding: 14px 40px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  border: none;
  transition: var(--transition-medium);
}

.job-post-from .post-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

/* ==================== PAGINATION ==================== */
.pagination {
  margin: 40px 0;
  justify-content: center;
}

.pagination .page-item .page-link {
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  padding: 0;
  margin: 0 5px;
  border-radius: 10px;
  border: 2px solid var(--light-gray);
  color: var(--text-dark);
  font-weight: 600;
  transition: var(--transition-medium);
}

.pagination .page-item .page-link:hover,
.pagination .page-item.active .page-link {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: var(--primary-dark);
}

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

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

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

/* ==================== RESPONSIVE STYLES ==================== */
@media (max-width: 1199px) {
  .why-choose-text {
    padding: 60px 30px;
  }
  
  .footer-area .footer-widget.pl-60 {
    padding-left: 0;
  }
}

@media (max-width: 991px) {
  .navbar-area .mobile-nav {
    display: block;
    padding: 15px;
    background: var(--primary-dark);
  }
  
  .navbar-area .main-nav {
    display: none;
  }
  
  .banner-section {
    min-height: auto;
    padding: 150px 0 100px;
  }
  
  .banner-section .banner-content h1 {
    font-size: 2.5rem;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .why-choose-text {
    padding: 50px 20px;
  }
  
  .why-choose-img {
    min-height: 350px;
  }
  
  .testimonial-items .testimonial-text {
    padding: 30px;
  }
  
  .resume-upload-card {
    padding: 30px;
  }
  
  .contact-area {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .section-title {
    margin-bottom: 40px;
  }
  
  .pt-100 { padding-top: 60px; }
  .pb-70 { padding-bottom: 40px; }
  .pb-100 { padding-bottom: 60px; }
  .ptb-100 { padding: 60px 0; }
  
  .banner-section .banner-content .banner-form {
    padding: 20px;
  }
  
  .page-title {
    padding: 100px 0;
  }
  
  .page-title h2 {
    font-size: 2rem;
  }
  
  .subscribe-section {
    padding: 50px 0;
    text-align: center;
  }
  
  .subscribe-section .newsletter-form {
    margin-top: 30px;
  }
  
  .footer-area {
    padding: 60px 0 40px;
  }
  
  .job-post-from {
    padding: 30px 20px;
  }
}

@media (max-width: 575px) {
  .banner-section .banner-content h1 {
    font-size: 2rem;
  }
  
  .banner-section .banner-content .keyword {
    flex-direction: column;
    gap: 5px;
  }
  
  .stat-item .stat-number {
    font-size: 2rem;
  }
  
  .category-card {
    padding: 30px 20px;
  }
  
  .use-text i {
    width: 100px;
    height: 100px;
    line-height: 100px;
    font-size: 40px;
  }
  
  .counter-area .counter-text h2 {
    font-size: 2rem;
  }
}

/* ==================== SERVICES PAGE STYLES ==================== */
.services-hero {
  position: relative;
  min-height: 80vh;
  background: url(../img/section-bg/1.jpg) center center / cover no-repeat;
  display: flex;
  align-items: center;
  padding: 150px 0 100px;
}

.services-hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(10, 22, 40, 0.95) 0%, rgba(26, 41, 66, 0.9) 100%);
}

.services-hero .container {
  position: relative;
  z-index: 2;
}

.services-hero-content .hero-tag {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.services-hero-content h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.services-hero-content h1 span {
  color: var(--accent-gold);
}

.services-hero-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 550px;
}

.services-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition-medium);
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.stat-box .stat-icon {
  width: 55px;
  height: 55px;
  min-width: 55px;
  background: var(--accent-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-box .stat-icon i {
  font-size: 26px;
  color: var(--primary-dark);
}

.stat-box .stat-info h3 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0;
}

.stat-box .stat-info p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  margin-bottom: 0;
}

/* Service Cards Modern */
.service-card-modern {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition-medium);
  position: relative;
  overflow: hidden;
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent-gold);
}

.service-card-modern.featured {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  border: none;
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-gold);
  color: var(--primary-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
}

.service-card-modern .service-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-card-modern.featured .service-icon {
  background: rgba(201, 168, 76, 0.3);
}

.service-card-modern .service-icon i {
  font-size: 36px;
  color: var(--accent-gold);
}

.service-card-modern h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.service-card-modern.featured h3 {
  color: var(--white);
}

.service-card-modern p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 20px;
}

.service-card-modern.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-muted);
}

.service-card-modern.featured .service-features li {
  color: rgba(255, 255, 255, 0.8);
}

.service-features li i {
  color: var(--accent-gold);
  font-size: 18px;
}

/* Categories Served Section */
.categories-served-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 100px 0;
}

.categories-served-section .section-title h2 {
  color: var(--white);
}

.categories-served-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-top: 50px;
}

.category-served-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  transition: var(--transition-medium);
}

.category-served-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.category-served-item i {
  font-size: 40px;
  color: var(--accent-gold);
  margin-bottom: 15px;
}

.category-served-item h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
}

.category-served-item span {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 500;
}

/* Process Timeline */
.recruitment-process-section {
  background: var(--off-white);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-step {
  background: var(--white);
  border-radius: 20px;
  padding: 35px 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
}

.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-dark);
}

.step-content {
  margin-top: 25px;
}

.step-content h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.step-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

/* Services Accreditations */
.services-accreditations-section {
  background: var(--white);
  padding: 100px 0;
}

.accreditations-showcase {
  margin-top: 50px;
}

.accreditation-badge {
  text-align: center;
  padding: 30px 15px;
  margin-bottom: 30px;
}

.accreditation-badge .badge-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2) 0%, rgba(201, 168, 76, 0.1) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  border: 2px dashed var(--accent-gold);
}

.accreditation-badge .badge-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.accreditation-badge h5 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.accreditation-badge p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
}

/* Download Profile Section */
.download-profile-section {
  background: var(--off-white);
  padding: 100px 0;
}

.download-card {
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.download-content h2 {
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.download-content p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

.profile-includes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.profile-includes li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-dark);
}

.profile-includes li i {
  color: var(--accent-gold);
  font-size: 18px;
}

.download-cta {
  padding: 30px;
}

.download-cta .pdf-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.download-cta .pdf-icon i {
  font-size: 50px;
  color: var(--white);
}

.download-cta p {
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 15px;
}

.btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  transition: var(--transition-medium);
}

.btn-download:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--primary-dark);
}

/* Why Partner Section */
.partner-benefits {
  margin-top: 40px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 15px;
  transition: var(--transition-medium);
}

.benefit-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.benefit-icon {
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--gradient-gold);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 24px;
  color: var(--primary-dark);
}

.benefit-content h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.benefit-content p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 0;
}

.partner-image {
  position: relative;
  padding: 30px;
}

.floating-card {
  position: absolute;
  bottom: 60px;
  left: 0;
  background: var(--white);
  padding: 20px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
}

.floating-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-icon i {
  font-size: 24px;
  color: var(--primary-dark);
}

.floating-text h4 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 0;
}

.floating-text p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Services CTA Section */
.services-cta-section {
  background: var(--gradient-gold);
  padding: 80px 0;
}

.cta-wrapper h2 {
  color: var(--primary-dark);
  font-family: var(--font-body);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-wrapper p {
  color: rgba(10, 22, 40, 0.8);
  margin-bottom: 0;
}

.btn-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--primary-dark);
  color: var(--white);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  margin-right: 15px;
  margin-bottom: 15px;
  transition: var(--transition-medium);
}

.btn-cta-primary:hover {
  background: var(--primary-navy);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: transparent;
  border: 2px solid var(--primary-dark);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 15px;
  border-radius: 50px;
  margin-bottom: 15px;
  transition: var(--transition-medium);
}

.btn-cta-secondary:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-info-section {
  padding: 80px 0;
  background: var(--off-white);
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.contact-info-card {
  background: var(--white);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--light-gray);
  transition: var(--transition-medium);
  margin-bottom: 30px;
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.contact-info-card.featured {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  border: none;
}

.contact-info-card .info-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.contact-info-card.featured .info-icon {
  background: rgba(201, 168, 76, 0.3);
}

.contact-info-card .info-icon i {
  font-size: 32px;
  color: var(--accent-gold);
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.contact-info-card.featured h4 {
  color: var(--white);
}

.contact-info-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 15px;
}

.contact-info-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.contact-info-card .info-link {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-info-card.featured .info-link {
  color: var(--accent-gold);
}

/* Contact Form Card */
.contact-form-card {
  background: var(--white);
  border-radius: 25px;
  padding: 50px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
}

.form-header {
  margin-bottom: 35px;
}

.form-header h3 {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.form-header p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.contact-form-modern .form-group {
  margin-bottom: 25px;
}

.contact-form-modern .form-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-form-modern .form-group label i {
  color: var(--accent-gold);
}

.contact-form-modern .form-control {
  height: 55px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 15px;
  transition: var(--transition-medium);
  background-color: var(--white);
  width: 100%;
}

.contact-form-modern select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 45px;
  cursor: pointer;
}

.contact-form-modern textarea.form-control {
  height: auto;
  resize: none;
}

.contact-form-modern .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
  outline: none;
}

/* Nice Select for Contact Form */
.contact-form-modern .nice-select {
  width: 100%;
  height: 55px;
  line-height: 51px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 0 20px;
  font-size: 15px;
  background: var(--white);
  float: none;
}

.contact-form-modern .nice-select:focus,
.contact-form-modern .nice-select.open {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
}

.contact-form-modern .nice-select .list {
  width: 100%;
  max-height: 200px;
  overflow-y: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  background: var(--white);
}

.contact-form-modern .nice-select .option {
  padding: 12px 20px;
  font-size: 14px;
}

.contact-form-modern .nice-select .option:hover,
.contact-form-modern .nice-select .option.focus {
  background-color: rgba(201, 168, 76, 0.15);
}

.contact-form-modern .submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition-medium);
}

.contact-form-modern .submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.form-message {
  margin-top: 20px;
  text-align: center;
}

/* Map Card */
.map-card {
  background: var(--white);
  border-radius: 25px;
  padding: 30px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--light-gray);
  height: 100%;
}

.map-header {
  margin-bottom: 20px;
}

.map-header h3 {
  font-family: var(--font-body);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.map-header p {
  color: var(--text-muted);
  margin-bottom: 0;
}

.map-container {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 25px;
}

.map-details {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.detail-item {
  display: flex;
  gap: 15px;
}

.detail-item i {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--accent-gold);
}

.detail-item h5 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.detail-item p {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 0;
  line-height: 1.5;
}

.directions-link {
  color: var(--accent-gold);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.directions-link:hover {
  color: var(--accent-copper);
}

/* Social Connect Section */
.social-connect-section {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  padding: 80px 0;
}

.social-connect-section .section-title h2 {
  color: var(--white);
}

.social-connect-section .section-title p {
  color: rgba(255, 255, 255, 0.7);
}

.social-icons-large {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}

.social-icon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 25px 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 15px;
  transition: var(--transition-medium);
  min-width: 120px;
}

.social-icon:hover {
  transform: translateY(-10px);
}

.social-icon i {
  font-size: 36px;
  color: var(--white);
}

.social-icon span {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  font-weight: 500;
}

.social-icon.facebook:hover { background: #1877f2; border-color: #1877f2; }
.social-icon.twitter:hover { background: #1da1f2; border-color: #1da1f2; }
.social-icon.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); border-color: #dc2743; }
.social-icon.linkedin:hover { background: #0077b5; border-color: #0077b5; }
.social-icon.whatsapp:hover { background: #25d366; border-color: #25d366; }
.social-icon.tiktok:hover { background: #000; border-color: #69c9d0; }

/* Contact FAQ Section */
.contact-faq-section {
  background: var(--off-white);
}

.quick-contact {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

.quick-contact h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.quick-contact p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ==================== JOB DETAILS PAGE ==================== */
.job-header-section {
  position: relative;
  padding: 150px 0 50px;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
  overflow: hidden;
}

.job-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/section-bg/1.jpg) center center / cover no-repeat;
  opacity: 0.1;
}

.job-header-content {
  position: relative;
  z-index: 2;
}

.job-header-info {
  display: flex;
  align-items: flex-start;
  gap: 30px;
}

.company-logo-large {
  width: 100px;
  height: 100px;
  min-width: 100px;
  background: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
  box-shadow: var(--shadow-lg);
}

.company-logo-large img {
  max-width: 100%;
  max-height: 100%;
}

.job-header-text .job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}

.job-badges span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.badge-country {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

.badge-type {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.badge-posted {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
}

.job-header-text h1 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 15px;
}

.job-meta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.job-meta-info span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.job-meta-info span i {
  color: var(--accent-gold);
  font-size: 18px;
}

.job-header-actions {
  text-align: center;
}

.salary-display {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 20px 30px;
  margin-bottom: 20px;
}

.salary-display .salary-label {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.salary-display .salary-amount {
  display: block;
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
}

.salary-display .salary-period {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.btn-apply-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 30px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
  border-radius: 50px;
  transition: var(--transition-medium);
}

.btn-apply-now:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
  color: var(--primary-dark);
}

/* Job Details Section */
.job-details-section {
  padding: 60px 0 100px;
  background: var(--off-white);
}

.job-detail-card {
  background: var(--white);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.card-header-custom {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--light-gray);
}

.card-header-custom i {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--accent-gold);
}

.card-header-custom h3 {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0;
}

.card-body-custom p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 15px;
}

.requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--light-gray);
}

.requirements-list li:last-child {
  border-bottom: none;
}

.requirements-list li i {
  font-size: 22px;
  color: #28a745;
  margin-top: 2px;
}

.requirements-list.requirements li i {
  color: var(--accent-gold);
}

.requirements-list li span {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Benefits Card */
.benefits-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.benefits-card .card-header-custom {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.benefits-card .card-header-custom i {
  background: rgba(201, 168, 76, 0.3);
}

.benefits-card .card-header-custom h3 {
  color: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  transition: var(--transition-medium);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.12);
}

.benefit-item i {
  font-size: 20px;
  color: var(--accent-gold);
}

.benefit-item span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

/* Share Card */
.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
}

.share-btn i {
  font-size: 18px;
}

.share-btn.facebook {
  background: #1877f2;
  color: var(--white);
}

.share-btn.twitter {
  background: #1da1f2;
  color: var(--white);
}

.share-btn.linkedin {
  background: #0077b5;
  color: var(--white);
}

.share-btn.whatsapp {
  background: #25d366;
  color: var(--white);
}

.share-btn.email {
  background: var(--medium-gray);
  color: var(--white);
}

.share-btn.copy-link {
  background: var(--off-white);
  color: var(--text-dark);
  border: 2px solid var(--light-gray);
}

.share-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  color: var(--white);
}

.share-btn.copy-link:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  border-color: var(--accent-gold);
}

/* Sidebar Cards */
.sidebar-card {
  background: var(--white);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 25px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--light-gray);
}

.sidebar-card h4 i {
  color: var(--accent-gold);
  font-size: 22px;
}

/* Overview Card */
.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--light-gray);
}

.overview-list li:last-child {
  border-bottom: none;
}

.overview-icon {
  width: 45px;
  height: 45px;
  min-width: 45px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overview-icon i {
  font-size: 20px;
  color: var(--accent-gold);
}

.overview-text .label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}

.overview-text .value {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

/* Apply Card */
.apply-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-navy) 100%);
}

.apply-card h4 {
  color: var(--white);
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.apply-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-bottom: 20px;
}

.btn-sidebar-apply {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 15px;
  border-radius: 50px;
  margin-bottom: 12px;
  transition: var(--transition-medium);
}

.btn-sidebar-apply:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
  color: var(--primary-dark);
}

.btn-sidebar-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-weight: 600;
  font-size: 14px;
  border-radius: 50px;
  transition: var(--transition-medium);
}

.btn-sidebar-call:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Company Card */
.company-info {
  text-align: center;
  margin-bottom: 20px;
}

.company-info img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 15px;
}

.company-info h5 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.company-info span {
  font-size: 13px;
  color: var(--accent-gold);
}

.company-details {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.company-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--light-gray);
}

.company-details li:last-child {
  border-bottom: none;
}

.company-details li i {
  color: var(--accent-gold);
  font-size: 18px;
}

.btn-view-profile {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--off-white);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 14px;
  border-radius: 10px;
  transition: var(--transition-medium);
}

.btn-view-profile:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* Categories Card */
.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-tag {
  display: inline-block;
  padding: 8px 15px;
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  border-radius: 20px;
  transition: var(--transition-medium);
}

.category-tag:hover,
.category-tag.active {
  background: var(--accent-gold);
  color: var(--primary-dark);
}

/* Responsive Job Details */
@media (max-width: 991px) {
  .job-header-info {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
  
  .job-meta-info {
    justify-content: center;
  }
  
  .job-header-actions {
    margin-top: 30px;
  }
  
  .salary-display {
    display: inline-block;
  }
}

@media (max-width: 767px) {
  .job-header-section {
    padding: 120px 0 40px;
  }
  
  .company-logo-large {
    width: 80px;
    height: 80px;
    min-width: 80px;
  }
  
  .job-header-text h1 {
    font-size: 1.5rem;
  }
  
  .job-badges span {
    font-size: 11px;
    padding: 5px 12px;
  }
  
  .job-detail-card {
    padding: 25px;
  }
  
  .card-header-custom i {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .card-header-custom h3 {
    font-size: 1.15rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .share-buttons {
    flex-direction: column;
  }
  
  .share-btn {
    width: 100%;
    justify-content: center;
  }
  
  .sidebar-card {
    padding: 25px;
  }
}

/* ==================== FIND JOB PAGE ==================== */

/* Advanced Search Section */
.find-job-search {
  position: relative;
}

.search-box-wrapper {
  background: var(--white);
  padding: 50px;
  border-radius: 25px;
  box-shadow: var(--shadow-lg);
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.advanced-search-form .search-field {
  margin-bottom: 0;
}

.advanced-search-form .search-field label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.advanced-search-form .search-field label i {
  color: var(--accent-gold);
  font-size: 16px;
}

.advanced-search-form .form-control {
  height: 55px;
  border: 2px solid var(--light-gray);
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 15px;
  transition: var(--transition-medium);
  width: 100%;
  box-sizing: border-box;
}

.advanced-search-form select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236c757d' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 16px 12px;
  padding-right: 45px;
  cursor: pointer;
  background-color: var(--white);
}

.advanced-search-form .form-control:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.15);
  outline: none;
}

.search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 55px;
  background: var(--gradient-gold);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-medium);
  margin-top: 28px;
}

.search-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.search-btn i {
  font-size: 20px;
}

.clear-search-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition-medium);
}

.clear-search-btn:hover {
  color: var(--accent-gold);
}

/* Quick Search Tags */
.quick-search-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--light-gray);
}

.quick-search-tags span {
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.quick-search-tags a {
  display: inline-block;
  padding: 8px 18px;
  background: var(--off-white);
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 500;
  border-radius: 25px;
  transition: var(--transition-medium);
}

.quick-search-tags a:hover {
  background: var(--accent-gold);
  color: var(--primary-dark);
  transform: translateY(-2px);
}

/* Job Categories Section */
.job-categories-section {
  background: var(--white);
}

.category-card-link {
  display: block;
  text-decoration: none;
}

.category-card-modern {
  position: relative;
  background: var(--white);
  padding: 35px 25px;
  border-radius: 20px;
  text-align: center;
  border: 2px solid var(--light-gray);
  transition: var(--transition-medium);
  overflow: hidden;
}

.category-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
  transform: scaleX(0);
  transition: var(--transition-medium);
}

.category-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

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

.category-card-modern .category-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15) 0%, rgba(201, 168, 76, 0.05) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-medium);
}

.category-card-modern:hover .category-icon {
  background: var(--gradient-gold);
  transform: scale(1.1);
}

.category-card-modern .category-icon i {
  font-size: 36px;
  color: var(--accent-gold);
  transition: var(--transition-medium);
}

.category-card-modern:hover .category-icon i {
  color: var(--primary-dark);
}

.category-card-modern h4 {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  transition: var(--transition-medium);
}

.category-card-modern:hover h4 {
  color: var(--primary-dark);
}

.category-card-modern p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 0;
}

.category-card-modern .category-arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 35px;
  height: 35px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition-medium);
}

.category-card-modern:hover .category-arrow {
  opacity: 1;
  transform: translateX(0);
}

.category-card-modern .category-arrow i {
  font-size: 20px;
  color: var(--accent-gold);
}

/* Featured Jobs Section */
.featured-jobs-section {
  background: var(--off-white);
}

.job-card-featured {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-medium);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.job-card-featured:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.job-card-featured .job-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 25px 0;
}

.job-card-featured .company-logo {
  width: 60px;
  height: 60px;
  background: var(--off-white);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.job-card-featured .company-logo img {
  max-width: 100%;
  max-height: 100%;
}

.job-card-featured .job-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

.job-card-featured .job-type {
  display: inline-block;
  padding: 5px 12px;
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-copper);
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
}

.job-card-featured .job-posted {
  font-size: 12px;
  color: var(--text-muted);
}

.job-card-featured .job-card-body {
  padding: 20px 25px;
  flex-grow: 1;
}

.job-card-featured .job-title {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.job-card-featured .job-title a {
  color: var(--text-dark);
  transition: var(--transition-medium);
}

.job-card-featured .job-title a:hover {
  color: var(--accent-gold);
}

.job-card-featured .job-role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.job-card-featured .job-details-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-card-featured .job-details-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.job-card-featured .job-details-list span i {
  color: var(--accent-gold);
  font-size: 16px;
}

.job-card-featured .job-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 25px;
  border-top: 1px solid var(--light-gray);
  background: var(--off-white);
}

.job-card-featured .job-category {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--text-muted);
}

.job-card-featured .job-category i {
  color: var(--accent-gold);
}

.job-card-featured .apply-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  transition: var(--transition-medium);
}

.job-card-featured .apply-link:hover {
  color: var(--accent-copper);
}

.job-card-featured .apply-link i {
  font-size: 18px;
  transition: var(--transition-medium);
}

.job-card-featured:hover .apply-link i {
  transform: translateX(5px);
}

/* Responsive Find Job Page */
@media (max-width: 991px) {
  .search-box-wrapper {
    padding: 35px;
    margin-top: -40px;
  }
  
  .search-btn {
    margin-top: 20px;
  }
}

@media (max-width: 767px) {
  .search-box-wrapper {
    padding: 25px;
    margin-top: -30px;
    border-radius: 15px;
  }
  
  .advanced-search-form .search-field {
    margin-bottom: 15px;
  }
  
  .advanced-search-form .form-control {
    height: 50px;
  }
  
  .search-btn {
    height: 50px;
    margin-top: 10px;
  }
  
  .quick-search-tags {
    margin-top: 25px;
    padding-top: 20px;
  }
  
  .quick-search-tags span {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
  }
  
  .category-card-modern {
    padding: 25px 20px;
  }
  
  .category-card-modern .category-icon {
    width: 70px;
    height: 70px;
  }
  
  .category-card-modern .category-icon i {
    font-size: 30px;
  }
  
  .job-card-featured .job-card-header,
  .job-card-featured .job-card-body,
  .job-card-featured .job-card-footer {
    padding-left: 20px;
    padding-right: 20px;
  }
}
