:root {
  --primary-color: #00020a;
  --secondary-color: #0a0a0a;
  --accent-color: #3b82f6;
  --accent-gradient: linear-gradient(135deg, #3b82f6, #1d4ed8);
  --text-color: #ffffff;
  --text-secondary: #cccccc;
  --border-color: #333333;
  --card-bg: rgba(10, 10, 10, 0.7);
  --shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-accent: 0 10px 25px rgba(59, 130, 246, 0.25);
  --transition-fast: 0.2s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-normal: 0.3s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-slow: 0.5s cubic-bezier(0.65, 0, 0.35, 1);
  --transition-extra-slow: 0.8s cubic-bezier(0.65, 0, 0.35, 1);
  --easing-smooth: cubic-bezier(0.65, 0, 0.35, 1);
  --easing-bounce: cubic-bezier(0.37, 1.55, 0.68, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: "Montserrat", sans-serif;
  background-color: var(--primary-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

a {
  text-decoration: none;
  color: var(--text-color);
  transition: all var(--transition-normal);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: "Montserrat", sans-serif;
  transition: all var(--transition-normal);
  border: none;
  background: none;
  outline: none;
}

.section-spacing {
  padding: 120px 0;
  position: relative;
}



.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  animation: shapeFloat 20s infinite alternate ease-in-out;
}

.shape-1 {
  top: 10%;
  left: 10%;
  width: 500px;
  height: 500px;
  animation-delay: 0s;
}

.shape-2 {
  bottom: 20%;
  right: 5%;
  width: 400px;
  height: 400px;
  animation-delay: 5s;
}

.shape-3 {
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  animation-delay: 10s;
}

@keyframes shapeFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.05;
  }

  50% {
    transform: translate(50px, -30px) scale(1.1);
    opacity: 0.08;
  }

  100% {
    transform: translate(-30px, 50px) scale(-30px) scale(1.1);
    opacity: 0.08;
  }

  100% {
    transform: translate(-30px, 50px) scale(0.9);
    opacity: 0.05;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes gradientBg {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@keyframes textReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(59, 130, 246, 0);
  }
}

@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-15deg) scale(0.9);
  }

  to {
    opacity: 1;
    transform: rotate(0) scale(1);
  }
}

@keyframes verticalScroll {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes horizontalScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes underlineReveal {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes blurIn {
  from {
    opacity: 0;
    filter: blur(10px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

@keyframes blurOut {
  from {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 0;
    filter: blur(10px);
  }
}

.reveal-element {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--easing-smooth), transform 0.8s var(--easing-smooth);
}

.reveal-element.visible {
  opacity: 1;
  transform: translateY(0);
}



header.hidden {
  transform: translateY(-100%);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin-bottom: 10px;
  transition: all 0.4s var(--easing-smooth);
}

.logo {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  transition: all 0.4s var(--easing-smooth);
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: gradientBg 8s ease infinite;
}

header.scrolled .logo {
  font-size: 1.5rem;
}

nav {
  text-align: center;
  transition: all 0.5s var(--easing-smooth);
  overflow: hidden;
  max-height: 50px;
  opacity: 1;
}

header.scrolled nav {
  max-height: 0;
  opacity: 0;
  margin-top: 0;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 30px;
  transition: transform 0.5s var(--easing-smooth);
}

header.scrolled nav ul {
  transform: translateY(-100%);
}

nav ul li a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

nav ul li a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: width 0.3s var(--easing-smooth);
}

nav ul li a:hover::after,
nav ul li a.active::after {
  width: 100%;
  animation: underlineReveal 0.3s var(--easing-smooth);
}

.header-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s var(--easing-smooth);
}

.icon-notification,
.icon-search {
  width: 24px;
  height: 24px;
  background-color: var(--text-color);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  transition: transform var(--transition-fast), background-color var(--transition-fast), opacity var(--transition-fast);
}

.icon-notification:hover,
.icon-search:hover {
  background-color: var(--accent-color);
  opacity: 0.9;
}

.icon-notification {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22c1.1 0 2-.9 2-2h-4c0 1.1.9 2 2 2zm6-6v-5c0-3.07-1.63-5.64-4.5-6.32V4c0-.83-.67-1.5-1.5-1.5s-1.5.67-1.5 1.5v.68C7.64 5.36 6 7.92 6 11v5l-2 2v1h16v-1l-2-2zm-2 1H8v-6c0-2.48 1.51-4.5 4-4.5s4 2.02 4 4.5v6z'/%3E%3C/svg%3E");
}

.icon-search {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.5 14h-.79l-.28-.27C15.41 12.59 16 11.11 16 9.5 16 5.91 13.09 3 9.5 3S3 5.91 3 9.5 5.91 16 9.5 16c1.61 0 3.09-.59 4.23-1.57l.27.28v.79l5 4.99L20.49 19l-4.99-5zm-6 0C7.01 14 5 11.99 5 9.5S7.01 5 9.5 5 14 7.01 14 9.5 11.99 14 9.5 14z'/%3E%3C/svg%3E");
}

.profile-dropdown {
  position: relative;
  display: inline-block;
}

.icon-profile img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  transition: all 0.4s var(--easing-smooth);
  border: 2px solid transparent;
}

.icon-profile:hover img {
  border-color: var(--accent-color);
  opacity: 0.9;
}

.dropdown-content {
  display: none;
  position: absolute;
  right: 0;
  background-color: #fff;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1100;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.3s var(--easing-smooth);
  transform: translateY(10px);
  opacity: 0;
}

.profile-dropdown:hover .dropdown-content {
  display: block;
  transform: translateY(0);
  opacity: 1;
  animation: fadeIn 0.3s var(--easing-smooth) forwards;
}

.dropdown-content a {
  color: #000;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  font-size: 14px;
  transition: background-color 0.3s, color 0.3s, opacity 0.3s;
}

.dropdown-content a:hover {
  background-color: #f1f1f1;
  color: var(--accent-color);
}

.dropdown-content::before {
  content: "";
  position: absolute;
  top: -10px;
  right: 15px;
  border-width: 0 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #fff transparent;
}

.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 2, 10, 0.9), rgba(10, 10, 10, 0.95));
  background-size: 200% 200%;
  animation: gradientBg 15s ease infinite;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  z-index: 2;
  height: 100%;
}

.hero-text {
  flex: 1;
  max-width: 50%;
}

.hero-title-wrapper {
  position: relative;
  margin-bottom: 30px;
  overflow: hidden;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 1.1;
  background: #ffffff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  animation: textReveal 1s var(--easing-smooth) forwards;
}

.hero-title-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--primary-color);
  transform: translateX(-100%);
  animation: slideInRight 1s var(--easing-smooth) forwards;
  z-index: -1;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.8;
  opacity: 0;
  animation: fadeIn 1s var(--easing-smooth) 0.5s forwards;
}

.hero-cta {
  opacity: 0;
  animation: fadeIn 1s var(--easing-smooth) 0.8s forwards;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--accent-gradient);
  color: white;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: var(--shadow-accent);
  transition: all var(--transition-normal);
}

.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.7s var(--easing-smooth);
  z-index: -1;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(29, 78, 216, 0.3);
  opacity: 0.95;
}

.btn-primary:hover::before {
  left: 100%;
}

.hero-carousel {
  position: relative;
  height: 100%;
  width: 40%;
  overflow: hidden;
  margin-left: auto;
}

.hero-carousel .carousel-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: verticalScroll 30s linear infinite;
  height: auto;
  padding: 20px 0;
}

.hero-carousel .carousel-item {
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
}

.hero-carousel .carousel-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  width: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-carousel .carousel-card:hover {
  transform: scale(1.03);
}

.hero-carousel .carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-carousel .carousel-card:hover img {
  transform: scale(1.05);
}

.hero-carousel .carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  color: white;
  transition: opacity 0.3s ease;
}

.hero-carousel .carousel-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}

.hero-carousel .carousel-category {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.2);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-top: 8px;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.9rem;
  opacity: 0.7;
  transition: opacity 0.3s var(--easing-smooth);
  z-index: 2;
}

.scroll-indicator span {
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
}

.scroll-icon {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
}

.scroll-indicator:hover {
  opacity: 1;
}

@media (max-width: 1024px) {
  .hero-content {
    flex-direction: column;
  }

  .hero-text {
    max-width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }

  .hero-carousel {
    width: 100%;
    height: 400px;
  }

  .hero-carousel .carousel-track {
    display: flex;
    flex-direction: row;
    animation: horizontalScroll 30s linear infinite;
  }

  .hero-carousel .carousel-item {
    min-width: 250px;
  }

  @keyframes horizontalScroll {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}

@media (max-width: 768px) {
  .hero-carousel .carousel-item {
    min-width: 200px;
  }
}

.main-content {
  position: relative;
  z-index: 2;
  background-color: transparent;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.highlight {
  color: var(--accent-color);
}

.view-all {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  position: relative;
  padding-right: 20px;
}

.view-all i {
  transition: transform var(--transition-fast);
  position: absolute;
  right: 0;
}

.view-all:hover i {
  transform: translateX(5px);
}

.news-today {
  position: relative;
}

.news-today::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(59, 130, 246, 0.05), transparent 70%);
  z-index: -1;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.news-card {
  perspective: 1000px;
  height: 400px;
}

.card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s var(--easing-smooth);
  transform-style: preserve-3d;
}

.news-card:hover .card-inner {
  transform: rotateY(180deg);
}

.card-front,
.card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-front {
  background-color: var(--secondary-color);
}

.card-back {
  background-color: var(--secondary-color);
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
}

.news-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.news-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(40, 40, 40, 0.4));
  z-index: 1;
}

.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing-smooth);
}

.news-card:hover .news-image img {
  transform: scale(1.05);
}

.news-content {
  padding: 25px;
}

.news-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.news-meta::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
}

.news-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.card-back h3 {
  color: var(--accent-color);
  margin-bottom: 15px;
}

.card-back p {
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.6;
}

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--accent-color);
  transition: all var(--transition-fast);
  position: relative;
}

.read-more::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s var(--easing-smooth);
}

.read-more:hover::after {
  width: 100%;
}

.read-more i {
  transition: transform var(--transition-fast);
}

.read-more:hover {
  color: #ffffff;
}

.read-more:hover i {
  transform: translateX(5px);
}


.job-offers {
  background-color: var(--primary-color);
  position: relative;
}

.job-offers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom left, rgba(59, 130, 246, 0.05), transparent 70%);
  z-index: 0;
}

.job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 1;
}

.job-card {
  background-color: var(--secondary-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition-normal);
  position: relative;
  height: 100%;
  transform: translateY(0);
}

.job-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: 0;
}

.job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.job-card:hover::before {
  opacity: 1;
}

.job-image {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.job-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(40, 40, 40, 0.6));
  z-index: 1;
  transition: background 0.3s var(--easing-smooth);
}

.job-card:hover .job-overlay {
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.3), rgba(50, 50, 50, 0.7));
}

.job-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing-smooth), filter 0.3s var(--easing-smooth);
}

.job-card:hover .job-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.job-logo {
  position: absolute;
  top: 180px;
  left: 20px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--accent-color);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  z-index: 2;
  overflow: hidden;
  transition: transform var(--transition-normal), opacity var(--transition-normal);
}

.job-card:hover .job-logo {
  opacity: 0.9;
  animation: borderPulse 2s infinite;
}

.job-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.job-content {
  padding: 25px;
  padding-top: 50px;
}

.job-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 10px;
}

.job-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  transition: color var(--transition-fast);
  line-height: 1.4;
  position: relative;
  z-index: 1;
}

.job-card:hover h3 {
  color: var(--accent-color);
}

.job-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 25px;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.job-apply {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all var(--transition-fast);
  position: relative;
  z-index: 1;
}

.job-apply::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s var(--easing-smooth);
}

.job-apply:hover::after {
  width: 100%;
}

.job-apply i {
  transition: transform var(--transition-fast);
}

.job-apply:hover {
  color: #ffffff;
}

.job-apply:hover i {
  transform: translateX(5px);
}

.job-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 15px;
  margin-top: 30px;
}

.nav-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

/* Success Stories Section */
.success-stories {
  position: relative;
}

.success-stories::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(59, 130, 246, 0.05), transparent 70%);
  z-index: -1;
}

.story-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  height: 450px;
  box-shadow: var(--shadow);
  transition: all var(--transition-normal);
}

.story-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.story-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.story-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--easing-smooth), filter 0.3s var(--easing-smooth);
}

.story-card:hover .story-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.story-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.8));
  transition: background 0.3s var(--easing-smooth);
}

.story-card:hover .story-image::after {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.9));
}

.story-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  transform: translateY(20px);
  opacity: 0.9;
  transition: all var(--transition-normal);
}

.story-card:hover .story-content {
  transform: translateY(0);
  opacity: 1;
}

.story-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.story-meta::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
}

.story-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  font-weight: 700;
  line-height: 1.3;
}

.story-content p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 20px;
}

.story-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all var(--transition-fast);
  position: relative;
}

.story-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s var(--easing-smooth);
}

.story-link:hover::after {
  width: 100%;
}

.story-link i {
  transition: transform var(--transition-fast);
}

.story-link:hover {
  color: #ffffff;
}

.story-link:hover i {
  transform: translateX(5px);
}

.story-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 30px;
  gap: 25px;
}

.pagination-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.pagination-btn:hover {
  background-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pagination-numbers {
  display: flex;
  gap: 12px;
}

.pagination-numbers span {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all var(--transition-fast);
  font-weight: 600;
}

.pagination-numbers span:hover {
  background-color: rgba(59, 130, 246, 0.2);
}

.pagination-numbers span.active {
  background-color: var(--accent-color);
  color: white;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.trending-news {
  padding: 100px 0;
  position: relative;
}

.trending-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.05), transparent 70%);
  z-index: -1;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.trending-card {
  background-color: var(--secondary-color);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
  z-index: 1;
  transform: translateY(0);
}

.trending-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), transparent);
  opacity: 0;
  transition: opacity var(--transition-normal);
  z-index: -1;
}

.trending-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.trending-card:hover::before {
  opacity: 1;
}

.trending-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.trending-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.5));
  z-index: 1;
  transition: background 0.3s var(--easing-smooth);
}

.trending-card:hover .trending-overlay {
  background: linear-gradient(to bottom, rgba(30, 30, 30, 0.3), rgba(50, 50, 50, 0.6));
}

.trending-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--easing-smooth), filter 0.3s var(--easing-smooth);
}

.trending-card:hover .trending-image img {
  transform: scale(1.05);
  filter: brightness(1.1);
}

.trending-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.trending-meta {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.trending-meta::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
}

.trending-card h3 {
  font-size: 1.3rem;
  margin-bottom: 15px;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.trending-card:hover h3 {
  color: var(--accent-color);
}

.trending-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.trending-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all var(--transition-fast);
  margin-top: auto;
  position: relative;
}

.trending-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s var(--easing-smooth);
}

.trending-link:hover::after {
  width: 100%;
}

.trending-link i {
  transition: transform var(--transition-fast);
}

.trending-link:hover {
  color: #ffffff;
}

.trending-link:hover i {
  transform: translateX(5px);
}

.featured-article {
  padding: 60px 0;
}

.featured-card {
  position: relative;
  height: 350px;
  background-image: url("../img/IM-20.jpg");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition-normal);
}

.featured-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.featured-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
  transition: background 0.5s var(--easing-smooth);
}

.featured-card:hover::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.9));
}

.featured-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent-color);
  color: white;
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  transform: translateY(10px);
  opacity: 0.9;
  transition: all var(--transition-normal);
}

.featured-card:hover .featured-content {
  transform: translateY(0);
  opacity: 1;
}

.featured-meta {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.featured-meta::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: var(--accent-color);
  border-radius: 50%;
  margin-right: 10px;
}

.featured-content h2 {
  font-size: 2rem;
  font-weight: 700;
  max-width: 800px;
  line-height: 1.3;
  margin-bottom: 20px;
}

.featured-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  transition: all var(--transition-fast);
  position: relative;
}

.featured-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--accent-color);
  transition: width 0.3s var(--easing-smooth);
}

.featured-link:hover::after {
  width: 100%;
}

.featured-link i {
  transition: transform var(--transition-fast);
}

.featured-link:hover {
  color: #ffffff;
}

.featured-link:hover i {
  transform: translateX(5px);
}

.image-carousel {
  padding: 100px 0;
  position: relative;
}

.image-carousel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at bottom right, rgba(59, 130, 246, 0.05), transparent 70%);
  z-index: -1;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.carousel-track {
  display: flex;
  transition: transform 0.8s var(--easing-smooth);
}

.carousel-slide {
  min-width: 100%;
  height: 450px;
  position: relative;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.carousel-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  z-index: 1;
}

.slide-content {
  position: absolute;
  bottom: 40px;
  left: 40px;
  z-index: 2;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s var(--easing-smooth);
}

.carousel-slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.slide-content p {
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.carousel-progress {
  position: absolute;
  bottom: 80px;
  left: 40px;
  width: calc(100% - 80px);
  z-index: 2;
}

.progress-bar {
  height: 2px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: 0;
  background-color: var(--accent-color);
  transition: width 0.3s linear;
}

.carousel-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  z-index: 2;
}

.carousel-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(5px);
}

.carousel-btn:hover {
  background-color: var(--accent-color);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(59, 130, 246, 0.3);
}

.carousel-dots {
  display: flex;
  gap: 12px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.3);
  transition: all var(--transition-fast);
}

.dot:hover {
  background-color: rgba(255, 255, 255, 0.7);
}

.dot.active {
  background-color: var(--accent-color);
  transform: scale(1.2);
  box-shadow: 0 0 10px rgba(59, 130, 246, 0.5);
}

footer {
  padding: 80px 0 30px;
  background-color: var(--primary-color);
  background-image: radial-gradient(circle at top center, rgba(41, 52, 92, 0.5), rgba(30, 30, 30, 0.9) 70%);
  color: var(--text-color);
  position: relative;
}

.footer-content {
  display: flex;
  flex-direction: column;
}

.italic {
  font-style: italic;
  font-weight: 300;
}

.footer-content h2 {
  font-size: 3.5rem;
  margin-bottom: 80px;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
}

.footer-content h2 span {
  font-weight: 700;
}

.footer-columns {
  display: flex;
  justify-content: space-between;
  margin-bottom: 100px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links a {
  color: var(--text-color);
  transition: all 0.3s ease;
  font-size: 1rem;
  position: relative;
  padding-left: 15px;
}

.footer-links a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: var(--accent-color);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-links a:hover::before {
  transform: translateY(-50%) scale(1.5);
}

.footer-cta {
  text-align: right;
}

.footer-cta p {
  margin-bottom: 15px;
  color: var(--text-color);
}

.btn-footer {
  background-color: var(--text-color);
  color: var(--primary-color);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  transition: all var(--transition-normal);
}

.btn-footer:hover {
  background-color: #e0e0e0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-footer::after {
  content: "→";
  margin-left: 10px;
  transition: transform var(--transition-fast);
}

.btn-footer:hover::after {
  transform: translateX(5px);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  color: var(--text-secondary);
  font-size: 0.8rem;
  margin-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 1024px) {
  .hero-title {
    font-size: 3.8rem;
  }

  .trending-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content h2 {
    font-size: 3rem;
  }

  .job-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
  }

  .header-icons {
    position: static;
    transform: none;
    margin-top: 15px;
    justify-content: center;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-description {
    margin: 0 auto 40px;
  }

  .job-grid,
  .trending-grid {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    flex-direction: column;
    gap: 30px;
  }

  .footer-cta {
    text-align: left;
  }

  .footer-content h2 {
    font-size: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .story-content h2 {
    font-size: 1.5rem;
  }

  .featured-content h2 {
    font-size: 1.5rem;
  }

  .carousel-slide {
    height: 300px;
  }
}