/* ============================================
   RECRUTIZ - Components Stylesheet
   ============================================ */

/* ============================================
   7. Header & Navigation
   ============================================ */
.top-bar {
  background: var(--navy-blue);
  color: var(--white);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.top-bar a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.top-bar a:hover {
  color: var(--coral);
}

/* .header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  transition: all var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
} */
.header {
  position: fixed;
  left: 0;
  right: 0;
  margin: auto;
  top: 20px;
  width: 95%;
  /* padding: 0.75rem 1rem; */
  z-index: 9999;
  background: var(--white);
  /* background: linear-gradient(#0D2726, #0D2726) padding-box,
    linear-gradient(180deg, #2FC7A4 0%, rgba(47, 199, 164, 0) 100%) border-box; */
  border: 1px solid transparent;
  backdrop-filter: blur(16px);
  border-radius: 22px;
  transition: all 0.35s ease;
}

/* SCROLLED STATE */
.header.scrolled {
  top: 0;
  width: 100%;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo img {
  height: 8rem;
  /* height: 3.5rem; */
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  color: var(--gray-700);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: width var(--transition-normal);
}

.nav-link:hover {
  color: var(--navy-blue);
}

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

/* Mega Menu */
.nav-item {
  position: relative;
}

.nav-dropdown {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 700px;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-2xl);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  z-index: 50;
}

.nav-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.mega-menu-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem;
  border-radius: var(--radius-lg);
  transition: background var(--transition-normal);
}

.mega-menu-item:hover {
  background: var(--gray-100);
}

.mega-menu-item:hover .mega-menu-icon {
  background: var(--coral);
  color: var(--white);
}

.mega-menu-icon {
  width: 3rem;
  height: 3rem;
  background: rgba(10, 45, 106, 0.1);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition-normal);
  color: var(--navy-blue);
}

.mega-menu-content h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  transition: color var(--transition-normal);
}

.mega-menu-item:hover .mega-menu-content h4 {
  color: var(--coral);
}

.mega-menu-content p {
  font-size: 0.875rem;
  color: var(--gray-500);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Mobile Menu */
.hidden {
  display: none !important;
}

.mobile-dropdown {
  display: none;
  flex-direction: column;
  margin-top: 0.5rem;
  padding-left: 1rem;
}

.mobile-dropdown.active {
  display: block;
}

.rotate-180 {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}

.mobile-menu-btn {
  display: none;
  padding: 0.5rem;
  color: var(--gray-700);
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: 1.5rem;
}

.mobile-menu.active {
  display: block;
}

.mobile-nav-link {
  display: block;
  padding: 0.75rem 0;
  font-weight: 500;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}

@media (max-width: 1024px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

/* ============================================
   8. Hero Section
   ============================================ */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-blue) 0%, #1A4B8C 40%, var(--navy-blue) 100%);
  background-size: 200% 200%;
  animation: gradientShift 8s ease infinite;
  overflow: hidden;
  padding: 8rem 0 2rem 0;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(229, 57, 53, 0.6);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {

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

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

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
}

.hero-blob-1 {
  width: 400px;
  height: 400px;
  background: var(--coral);
  top: -100px;
  right: -100px;
}

.hero-blob-2 {
  width: 300px;
  height: 300px;
  background: var(--navy-blue);
  bottom: -50px;
  left: -50px;
}

.hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }
  .hero-title {
    font-size: 3rem;
  }
}

.hero-text {
  color: var(--white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-full);
  padding: 0.5rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.hero-badge::before {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: var(--coral);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.5;
  }
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--coral);
}

.hero-description {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  max-width: 32rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hero-stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-xl);
}

.hero-stat-value {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--coral);
}

.hero-stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* Hero Visual */
.hero-visual {
  position: relative;
}

.hero-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--radius-2xl);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  animation: float 6s ease-in-out infinite;
}

.hero-card:nth-child(2) {
  animation-delay: 1s;
}

.hero-card:nth-child(3) {
  animation-delay: 2s;
}

.hero-card:nth-child(4) {
  animation-delay: 3s;
}

.hero-card-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.hero-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-card p {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.hero-floating-badge {
  position: absolute;
  top: -1rem;
  right: -1rem;
  background: var(--coral);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  animation: float 6s ease-in-out infinite;
}

/* Hero Wave */
.hero-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.hero-wave svg {
  display: block;
  width: 100%;
}
.about-floating-card-year{
  font-size:1.5rem;
  font-weight:700;
  color:var(--navy-blue);
}