
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
  }

  body {
    font-family: 'Source Sans 3', sans-serif;
    background-color: #F8F5EE;
    color: #1F2937;
    line-height: 1.7;
    overflow-x: hidden;
  }

  ::selection {
    background-color: #C9A227;
    color: white;
  }

  
::-webkit-scrollbar {
  width: 8px; 
}


::-webkit-scrollbar-track {
  background: #f4f4f4; 
}


::-webkit-scrollbar-thumb {
  background: #D4AF37; 
  border-radius: 10px; 
}


::-webkit-scrollbar-thumb:hover {
  background: #C5A028; 
}

  .text-gradient {
    background: linear-gradient(135deg, #C9A227 0%, #E4C46A 50%, #8F7118 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .hero-pattern {
    background-color: #1F1A14;
    background-image:
      radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.14) 0%, transparent 50%),
      radial-gradient(circle at 80% 20%, rgba(228, 196, 106, 0.10) 0%, transparent 50%);
  }

  /* Image Styles */
  .img-cover {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .img-contain {
    object-fit: contain;
  }

  /* Parallax Effect */
  .parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Image Overlay Gradients */
  .img-overlay-dark::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 41, 66, 0.9) 0%, rgba(15, 41, 66, 0.4) 50%, transparent 100%);
  }

  .img-overlay-light::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
  }

  /* Reveal Animations */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal.active {
    opacity: 1;
    transform: translateY(0);
  }

  .reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal-left.active {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal-right.active {
    opacity: 1;
    transform: translateX(0);
  }

  .reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .reveal-scale.active {
    opacity: 1;
    transform: scale(1);
  }

  .stagger-1 {
    transition-delay: 0.1s;
  }

  .stagger-2 {
    transition-delay: 0.2s;
  }

  .stagger-3 {
    transition-delay: 0.3s;
  }

  .stagger-4 {
    transition-delay: 0.4s;
  }

  .stagger-5 {
    transition-delay: 0.5s;
  }

  /* Card Hover */
  .card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .card-hover:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(15, 41, 66, 0.25);
  }

  /* Hero Stats Hover */
  .stat-hover {
    border: 1px solid transparent;
    transition: all 0.35s ease;
  }

  .stat-hover:hover {
    background: rgba(212, 175, 55, 0.18);
    border: 1px solid #D4AF37;
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
  }

  .stat-hover:hover .stat-number {
    color: #D4AF37;
  }

  .stat-hover:hover .stat-label {
    color: #F6E6B4;
  }

  /* Buttons */
  .btn-primary {
    background: linear-gradient(135deg, #D4AF37 0%, #B38F1F 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, #E4C46A 0%, #C9A227 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(201, 162, 39, 0.45);
  }

  .btn-accent {
    background: linear-gradient(135deg, #D4AF37 0%, #C9A227 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
  }

  .btn-accent:hover {
    background: linear-gradient(135deg, #E4C46A 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px -10px rgba(212, 175, 55, 0.45);
  }

  .btn-outline {
    background: transparent;
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
  }

  .btn-outline:hover {
    background: white;
    color: #0f2942;
    border-color: white;
  }

  .btn-outline-dark {
    background: transparent;
    color: #8F7118;
    padding: 14px 32px;
    border: 2px solid #C9A227;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #164072;
    cursor: pointer;
  }

  .btn-outline-dark:hover {
    background: #C9A227;
    color: white;
  }

  /* Input */
  .input-field {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: white;
  }

  .input-field:focus {
    outline: none;
    border-color: #C9A227;
    box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.12);
  }

  /* Wave Divider */
  .wave-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
  }

  .wave-divider svg {
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
  }

  /* Nav */
  .nav-link {
    position: relative;
    transition: color 0.3s ease;
  }

  .nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #D4AF37;
    transition: width 0.3s ease;
  }

  .nav-link:hover::after {
    width: 100%;
  }

  .job-filter-btn {
  background: transparent;
  color: #1e293b;
  border: 1.5px solid #1e293b;
  transition: all 0.25s ease;
}

.job-filter-btn:hover {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.job-filter-btn.active {
  background: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}

/* Apply Now buttons */
.job-apply-btn {
  background: #0f172a !important;
  border: 1.5px solid #0f172a;
  transition: all 0.25s ease;
}

.job-apply-btn:hover {
  background: #000000 !important;
  border-color: #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Job cards */
.job-card {
  position: relative;
  border: 1.5px solid #e2e8f0 !important;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  border-color: #d4a017 !important;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.12);
}


  /* Badge */
  .badge {
    display: inline-flex;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
  }

  .badge-primary {
    background: rgba(201, 162, 39, 0.12);
    color: #8F7118;
  }

  .badge-accent {
    background: rgba(228, 196, 106, 0.18);
    color: #8F7118;
  }

  .badge-teal {
    background: rgba(212, 175, 55, 0.14);
    color: #8F7118;
  }

  .badge-success {
    background: rgba(201, 162, 39, 0.12);
    color: #8F7118;
  }

  /* Loading Spinner */
  .loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #efe7d6;
    border-top-color: #C9A227;
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }

  @keyframes spin {
    to {
      transform: rotate(360deg);
    }
  }

  @keyframes float {

    0%,
    100% {
      transform: translateY(0);
    }

    50% {
      transform: translateY(-20px);
    }
  }

  .float-element {
    animation: float 6s ease-in-out infinite;
  }

  .animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }

  .animate-bounce-slow {
    animation: bounce 3s ease-in-out infinite;
  }

  /* Mobile Menu */
  .mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: #0f2942;
    z-index: 100;
    transition: right 0.4s ease;
    padding: 80px 30px 30px;
  }

  .mobile-menu.active {
    right: 0;
  }

  .mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Social Icons */
  .social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
  }

  .social-icon:hover {
    background: #D4AF37;
    transform: translateY(-3px);
  }

  /* Profile Image */
  .profile-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  /* Country Card Image */
  .country-img {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.2);
  }

  /* Hero Image */
  .hero-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

  /* Service Image Container */
  .service-img-container {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 1.5rem;
  }

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

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

  /* About Image */
  .about-image-container {
    position: relative;
    height: 420px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  }

  .about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
  }

  .about-image-container:hover img {
    transform: scale(1.05);
  }

  .floating-badge {
    animation: floatCard 4s ease-in-out infinite;
  }

  @keyframes floatCard {
    0% {
      transform: translateY(0)
    }

    50% {
      transform: translateY(-10px)
    }

    100% {
      transform: translateY(0)
    }
  }

  /* Testimonial Avatar */
  .testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #e2e8f0;
  }

  /* Country Flag Image */
  .flag-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.3);
  }

  /* Focus Styles */
  *:focus-visible {
    outline: 2px solid #C9A227;
    outline-offset: 2px;
  }

  @media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      transition-duration: 0.01ms !important;
    }

    html {
      scroll-behavior: auto;
    }
  }
