/* ==========================================================================
   VTC NETVIET — Full Stylesheet
   Copied from new-themes/index.html inline <style>
   ========================================================================== */

/* 1. CORE DESIGN SYSTEM & VARIABLES */
:root {
  --primary: #0a58ca;
  --primary-hover: #084095;
  --secondary: #0077d6;
  --accent-teal: #007d8a;
  --accent-orange: #d86a00;
  --accent-orange-light: #ff9000;

  --text-dark: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-light: #f8fafc;

  --bg-white: #ffffff;
  --bg-light: #f8fafc;
  --bg-slate: #f1f5f9;
  --bg-dark: #0b1226;
  --bg-darker: #060b18;

  --border-color: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md:
    0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg:
    0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-xl:
    0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);

  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --font-display: "Montserrat", sans-serif;
  --font-body: "Inter", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.03em;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-light);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 88, 202, 0.3);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(10, 88, 202, 0.2);
}

.btn-white-outline {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--text-light);
}

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

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

/* 2. HEADER & NAVIGATION */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  z-index: 1000;
  transition: var(--transition);
}

.site-header.scrolled {
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  height: 48px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-tagline {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  text-transform: uppercase;
  padding: 8px 0;
  letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-item.active .nav-link {
  color: var(--primary);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item.has-dropdown {
  position: relative;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-icon {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
  fill: currentColor;
}

.nav-item.has-dropdown:hover .dropdown-icon,
.nav-item.has-dropdown.active .dropdown-icon {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

.dropdown-link {
  display: block;
  padding: 10px 24px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: none;
  white-space: nowrap;
  transition: var(--transition);
  text-align: left;
}

.dropdown-link:hover {
  background-color: rgba(10, 88, 202, 0.06);
  color: var(--primary);
  padding-left: 28px;
}

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

.btn-consult {
  padding: 10px 20px;
  font-size: 13px;
  border-radius: 4px;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 6px 0;
  transition: var(--transition);
}

/* 3. HERO SECTION */
.hero-section {
  position: relative;
  min-height: 100vh;
  padding-top: 120px;
  display: flex;
  align-items: center;
  background: linear-gradient(
      to right,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.8) 35%,
      rgba(255, 255, 255, 0) 65%
    )
    no-repeat center right / cover;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-title {
  font-size: 46px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: -1px;
}

.hero-title span {
  color: var(--text-dark);
  display: block;
}

.hero-description {
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.hero-graphics {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 500px;
}

.hero-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 15px 35px rgba(10, 88, 202, 0.15));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

.graphics-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
    circle at 60% 50%,
    rgba(10, 88, 202, 0.15) 0%,
    transparent 60%
  );
  border-radius: 50%;
  animation: pulse 6s infinite alternate;
}

.network-canvas-container {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
}

.network-nodes {
  position: relative;
  width: 100%;
  height: 100%;
}

.node {
  position: absolute;
  background: white;
  border: 4px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  z-index: 10;
}

.node:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(10, 88, 202, 0.4);
}

.node svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.node-1 {
  top: 20%;
  right: 25%;
  width: 70px;
  height: 70px;
  border-color: var(--secondary);
}

.node-2 {
  top: 50%;
  right: 5%;
  width: 90px;
  height: 90px;
  border-color: var(--primary);
}

.node-2 svg {
  width: 36px;
  height: 36px;
}

.node-3 {
  bottom: 10%;
  right: 40%;
  width: 80px;
  height: 80px;
  border-color: var(--accent-teal);
}

.network-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 5;
}

.hero-stats-bar {
  background: linear-gradient(90deg, #f8fafc 0%, #edf2f7 100%);
  border-top: 1px solid rgba(10, 88, 202, 0.06);
  border-bottom: 1px solid rgba(10, 88, 202, 0.06);
  padding: 35px 0;
  position: relative;
  z-index: 10;
}

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

.stat-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-bar-icon-wrapper {
  width: 50px;
  height: 50px;
  background-color: rgba(10, 88, 202, 0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-bar-icon-wrapper svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.stat-bar-info {
  display: flex;
  flex-direction: column;
}

.stat-bar-number {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
}

.stat-bar-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* 4. PILLARS / CORE SERVICES */
.pillars-section {
  padding: 50px 0;
  background-color: var(--bg-white);
  position: relative;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.pillar-card {
  position: relative;
  border-radius: 16px;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  min-height: 580px;
  box-shadow: var(--shadow-lg);
  transition: var(--transition);
  overflow: hidden;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.pillar-card-header {
  position: relative;
  padding: 40px 30px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background-size: cover;
  background-position: center;
  height: 240px;
  justify-content: flex-end;
}

.pillar-card-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}

.pillar-card-header > * {
  position: relative;
  z-index: 2;
}

.pillar-card-body {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pillar-card.communication .pillar-card-body {
  background: linear-gradient(180deg, #0a58ca 0%, #003b80 100%);
}

.pillar-card.technology .pillar-card-body {
  background: linear-gradient(180deg, #007d8a 0%, #003f52 100%);
}

.pillar-card.education .pillar-card-body {
  background: linear-gradient(180deg, #d86a00 0%, #c25b00 100%);
}

.pillar-icon-container {
  width: 70px;
  height: 70px;
  background-color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.pillar-icon-container svg {
  width: 32px;
  height: 32px;
}

.pillar-card.communication .pillar-icon-container svg {
  color: #0a58ca;
}
.pillar-card.technology .pillar-icon-container svg {
  color: #007d8a;
}
.pillar-card.education .pillar-icon-container svg {
  color: #d86a00;
}

.pillar-title {
  font-size: 26px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pillar-subtitle {
  font-size: 14px;
  opacity: 0.9;
  font-weight: 500;
}

.pillar-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.pillar-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}

.pillar-list-item svg {
  width: 18px;
  height: 18px;
  color: var(--text-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.pillar-btn {
  margin-top: 30px;
  width: 100%;
}

/* 5. TYPICAL PROJECTS */
.projects-section {
  padding: 50px 0;
  background-color: var(--bg-light);
  position: relative;
}

.projects-header-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 50px;
}

.projects-header-left {
  max-width: 700px;
}

.projects-header-left .section-title {
  margin-bottom: 12px;
}

.projects-grid {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 24px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 10px;
}

.projects-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--border-color);
  transition: var(--transition);
  flex: 0 0 calc(25% - 18px);
  scroll-snap-align: start;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 88, 202, 0.2);
}

.project-img-wrapper {
  position: relative;
  height: 200px;
  background-color: var(--bg-slate);
  overflow: hidden;
}

.project-image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.1) 0%,
    rgba(0, 125, 138, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.project-image-placeholder svg {
  width: 60px;
  height: 60px;
  opacity: 0.7;
}

.project-card-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-sm);
}

.project-card-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.project-card-title {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  line-height: 1.3;
}

.project-card-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: auto;
}

.project-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  margin-top: 10px;
}

.project-card-link:hover {
  gap: 10px;
}

.slider-nav-arrows {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background-color: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
}

/* 6. HOAT DONG (ACTIVITIES) */
.activities-section {
  padding: 50px 0;
  background-color: var(--bg-white);
}

.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.activity-card {
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 88, 202, 0.15);
}

.activity-img-wrapper {
  position: relative;
  height: 220px;
  background-color: var(--bg-slate);
}

.activity-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 125, 138, 0.1) 0%,
    rgba(216, 106, 0, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-teal);
}

.activity-img-placeholder svg {
  width: 50px;
  height: 50px;
  opacity: 0.6;
}

.activity-tag {
  position: absolute;
  top: 15px;
  left: 15px;
  background-color: var(--primary);
  color: var(--text-light);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: var(--shadow-sm);
}

.activity-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.activity-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.activity-date svg {
  width: 14px;
  height: 14px;
}

.activity-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}

.activity-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: auto;
}

.activity-footer {
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.activity-author {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.activity-author svg {
  width: 14px;
  height: 14px;
}

/* 7. TIN TUC (NEWS) */
.news-section {
  padding: 50px 0;
  background-color: var(--bg-light);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.news-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: var(--transition);
}

.news-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 88, 202, 0.15);
}

.news-img-wrapper {
  position: relative;
  height: 200px;
  background-color: var(--bg-slate);
}

.news-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.05) 0%,
    rgba(10, 88, 202, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.news-img-placeholder svg {
  width: 50px;
  height: 50px;
  opacity: 0.6;
}

.news-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 12px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

.news-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.news-meta-item svg {
  width: 14px;
  height: 14px;
}

.news-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-desc {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: auto;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-readmore {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}

.news-readmore:hover {
  gap: 10px;
}

/* 8. TUYEN DUNG (RECRUITMENT) */
.recruitment-section {
  padding: 50px 0;
  background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.job-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.job-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-5px);
  border-color: rgba(10, 88, 202, 0.15);
}

.job-card-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.job-dept-tag {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.job-card.training-job .job-dept-tag {
  color: var(--accent-orange);
}
.job-card.tech-job .job-dept-tag {
  color: var(--secondary);
}

.job-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  transition: var(--transition);
}

.job-card:hover .job-title {
  color: var(--primary);
}

.job-card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.job-requirements {
  background-color: var(--bg-light);
  border-radius: 8px;
  padding: 16px;
}

.req-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.job-requirements ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-requirements li {
  font-size: 13.5px;
  color: var(--text-body);
  position: relative;
  padding-left: 18px;
  line-height: 1.4;
}

.job-requirements li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: var(--primary);
  font-weight: bold;
}

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

.job-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--bg-slate);
  color: var(--text-body);
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
}

.job-tag.salary {
  background-color: rgba(10, 88, 202, 0.06);
  color: var(--primary);
}

.job-tag svg {
  width: 14px;
  height: 14px;
}

.job-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 8px;
}

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

.job-deadline svg {
  width: 14px;
  height: 14px;
}

.job-apply-btn {
  padding: 10px 20px;
  font-size: 13px;
  text-transform: none;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.job-apply-btn svg {
  transition: transform 0.3s ease;
}

.job-apply-btn:hover svg {
  transform: translateX(4px);
}

/* 8.5 PRESS / MEDIA COVERAGE */
.press-section {
  padding: 50px 0;
  background-color: var(--bg-white);
}

.press-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
}

.press-featured {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.press-featured:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 88, 202, 0.15);
}

.press-featured-img-wrapper {
  position: relative;
  height: 320px;
  overflow: hidden;
}

.press-featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.press-meta-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
}

.press-source-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  border-radius: 2px;
  flex-shrink: 0;
}

.press-divider {
  color: var(--text-muted);
  opacity: 0.5;
}

.press-source {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.press-date {
  color: var(--text-muted);
}

.press-featured-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.35;
  transition: var(--transition);
}

.press-featured:hover .press-featured-title {
  color: var(--primary);
}

.press-featured-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.6;
}

.press-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
  margin-top: auto;
  align-self: flex-start;
  transition: var(--transition);
}

.press-more-btn:hover {
  gap: 10px;
}

.press-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.press-item {
  display: flex;
  gap: 16px;
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.press-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(10, 88, 202, 0.15);
}

.press-thumb-wrapper {
  width: 130px;
  height: 85px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

.press-item-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.press-item-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}

.press-item:hover .press-item-title {
  color: var(--primary);
}

.press-item-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.press-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}

.press-featured:hover .press-image,
.press-item:hover .press-image {
  transform: scale(1.05);
}

/* 9. CLIENTS & PARTNERS */
.partners-section {
  padding: 40px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.partner-logo-wrapper {
  width: 130px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partner-logo-wrapper:hover {
  transform: scale(1.05);
}

.partner-logo-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: #334155;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}

.partner-logo-text span {
  display: block;
  font-size: 9px;
  font-weight: 600;
  color: var(--text-muted);
}

/* 10. STATS BANNER */
.stats-banner {
  background-color: var(--bg-dark);
  padding: 30px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.stats-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 80% 50%,
    rgba(10, 88, 202, 0.15) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
}

.stat-banner-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--text-light);
  position: relative;
}

.stat-banner-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 20%;
  right: -15px;
  width: 1px;
  height: 60%;
  background-color: rgba(255, 255, 255, 0.1);
}

.stat-banner-icon {
  margin-bottom: 15px;
  color: var(--secondary);
}

.stat-banner-icon svg {
  width: 36px;
  height: 36px;
}

.stat-banner-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--text-light);
  margin-bottom: 6px;
}

.stat-banner-label {
  font-size: 11px;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 1px;
  max-width: 180px;
}

/* 11. FOOTER */
.site-footer {
  background-color: var(--bg-darker);
  color: rgba(255, 255, 255, 0.6);
  padding: 40px 0 20px 0;
  font-size: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-widget-title {
  color: var(--text-light);
  font-size: 16px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 10px;
}

.footer-widget-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer-about {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  width: fit-content;
}

.footer-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.footer-desc {
  line-height: 1.6;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.social-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition);
}

.social-icon:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.social-icon svg {
  width: 18px;
  height: 18px;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-link-item svg {
  width: 12px;
  height: 12px;
  color: var(--primary);
}

.footer-link-item a:hover {
  color: var(--text-light);
  padding-left: 5px;
}

.footer-newsletter {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-newsletter .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  color: var(--text-light);
  outline: none;
  transition: var(--transition);
}

.newsletter-input:focus {
  border-color: var(--primary);
  background-color: rgba(255, 255, 255, 0.08);
}

.newsletter-btn {
  width: 100%;
  padding: 12px;
  font-size: 13px;
  margin-top: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 30px;
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.copyright {
  font-size: 13px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
  font-size: 13px;
}

/* 12. MODAL & INTERACTIVE COMPONENTS */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(5px);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background-color: var(--bg-white);
  border-radius: 12px;
  width: 100%;
  max-width: 550px;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  transform: scale(0.9);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-box {
  transform: scale(1);
}

.modal-header {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 20px 30px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.modal-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-body {
  padding: 30px;
}

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

.form-label {
  display: block;
  font-weight: 600;
  font-size: 13.5px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

.form-submit-btn {
  width: 100%;
  padding: 14px;
}

.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #10b981;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  transform: translateY(100px);
  opacity: 0;
  z-index: 1200;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.toast-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* 13. RESPONSIVE */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 40px;
  }
  .project-card {
    flex: 0 0 calc(50% - 12px);
  }
}

@media (max-width: 992px) {
  .header-actions {
    display: none;
  }
  .mobile-nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--bg-white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 40px;
    gap: 30px;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-lg);
    z-index: 999;
    overflow-y: auto;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-item.has-dropdown {
    width: 100%;
    text-align: center;
  }

  .dropdown-toggle {
    justify-content: center;
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: rgba(10, 88, 202, 0.03);
    padding: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition:
      max-height 0.3s ease-out,
      opacity 0.3s ease,
      padding 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 0;
    min-width: 100%;
  }

  .dropdown-menu.show {
    max-height: 250px;
    opacity: 1;
    visibility: visible;
    padding: 12px 0;
    margin-top: 10px;
  }

  .dropdown-link {
    padding: 8px 20px;
    font-size: 14px;
    text-align: center;
  }

  .hero-section {
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.85) 100%
      )
      no-repeat center center / cover;
  }

  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-content {
    align-items: center;
  }
  .hero-graphics {
    display: none;
  }

  .stats-bar-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .pillars-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  .activities-grid,
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-stats-bar {
    padding: 30px 0;
  }

  .jobs-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
    gap: 20px;
  }

  .job-card {
    padding: 24px;
    gap: 16px;
  }

  .job-card-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    width: 100%;
  }

  .job-apply-btn {
    width: 100%;
    justify-content: center;
  }

  .stats-banner-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .stat-banner-item:nth-child(3)::after {
    display: none;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }
  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .stats-bar-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .projects-header-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .projects-header-container .btn {
    width: 100%;
  }
  .project-card {
    flex: 0 0 100%;
  }

  .activities-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .stats-banner-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-banner-item::after {
    display: none !important;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

.project-image,
.activity-image,
.news-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#trangchu,
#truyenthong,
#congnghe,
#daotao,
#giaiphap,
#duan,
#hoatdong,
#tintuc,
#tuyendung,
#baochi {
  scroll-margin-top: 95px;
}

/* 3.5 SOLUTIONS SECTION */
.solutions-section {
  padding: 50px 0;
  background-color: var(--bg-light);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.solution-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  height: 100%;
}

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(10, 88, 202, 0.15);
}

.solution-icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(10, 88, 202, 0.05);
  border-radius: 50%;
  padding: 12px;
  transition: var(--transition);
}

.solution-card:hover .solution-icon-wrapper {
  background-color: var(--primary);
  transform: rotate(360deg);
}

.solution-icon-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: var(--transition);
}

.solution-card:hover .solution-icon-wrapper img {
  filter: brightness(0) invert(1);
}

.solution-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
}

.solution-desc {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}

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

@media (max-width: 600px) {
  .solutions-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

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

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 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.95);
  transition:
    opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-400 {
  transition-delay: 400ms;
}
.delay-500 {
  transition-delay: 500ms;
}

/* Mobile Menu Overrides */
@media (max-width: 992px) {
  .nav-menu {
    align-items: flex-start !important;
    padding: 40px 50px !important;
    gap: 24px !important;
  }
  .nav-item {
    width: 100% !important;
    text-align: left !important;
  }
  .nav-item.has-dropdown {
    width: 100% !important;
    text-align: left !important;
  }
  .dropdown-toggle {
    justify-content: flex-start !important;
    width: 100% !important;
  }
  .dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 10px 0 0 20px !important;
    max-height: none !important;
    overflow: visible !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    min-width: auto !important;
  }
  .dropdown-link {
    padding: 6px 0 !important;
    font-size: 13.5px !important;
    opacity: 0.85 !important;
  }
  .dropdown-link:hover {
    padding-left: 4px !important;
    background-color: transparent !important;
  }
}

/* Modal Scrolling Overrides */
.modal-overlay {
  align-items: flex-start !important;
  padding: 40px 20px !important;
  overflow-y: auto !important;
}

.modal-box {
  margin: auto !important;
}

/* CV Upload Component */
.cv-upload-wrapper {
  margin-bottom: 20px;
}

.cv-toggle-btn {
  display: inline-block;
  font-size: 13px;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
  margin-top: 8px;
  text-decoration: underline;
  transition: var(--transition);
  padding: 0;
}

.cv-toggle-btn:hover {
  color: var(--primary-hover);
}

.cv-dropzone {
  border: 2px dashed var(--border-color);
  border-radius: 8px;
  padding: 24px;
  text-align: center;
  background-color: var(--bg-light);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.cv-dropzone:hover,
.cv-dropzone.dragover {
  border-color: var(--primary);
  background-color: rgba(10, 88, 202, 0.03);
}

.cv-dropzone-icon {
  width: 40px;
  height: 40px;
  color: var(--text-muted);
  margin: 0 auto 12px;
  transition: var(--transition);
  display: block;
}

.cv-dropzone:hover .cv-dropzone-icon {
  color: var(--primary);
  transform: translateY(-2px);
}

.cv-dropzone-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cv-dropzone-subtext {
  font-size: 12px;
  color: var(--text-muted);
}

.cv-file-details {
  display: none;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.3);
  border-radius: 8px;
  margin-top: 8px;
}

.cv-file-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: var(--text-dark);
  font-weight: 500;
}

.cv-file-icon {
  width: 20px;
  height: 20px;
  color: #10b981;
  flex-shrink: 0;
}

.cv-file-name {
  max-width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cv-file-size {
  font-size: 11.5px;
  color: var(--text-muted);
}

.cv-file-remove {
  background: none;
  border: none;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1;
  padding: 4px;
  transition: var(--transition);
}

.cv-file-remove:hover {
  color: #ef4444;
  transform: scale(1.1);
}

.cv-mode-link {
  display: none;
}
.cv-mode-link.active {
  display: block;
}
.cv-mode-file {
  display: none;
}
.cv-mode-file.active {
  display: block;
}
/* ==========================================================================

/* ==========================================================================
   PAGE: Tin tức Archive (category-tin-tuc)
   ========================================================================== */
.page-hero {
  padding-top: 80px;
  background: linear-gradient(135deg, #1e3a5f 0%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.page-hero-teal {
  background: linear-gradient(135deg, #007d8a 0%, #005a63 60%, #003840 100%);
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/tritueviet_hero_skyline_hd.jpg") no-repeat
    center/cover;
  opacity: 0.1;
}
.page-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 0 50px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
}
.breadcrumb a:hover {
  color: #fff;
}
.breadcrumb svg {
  width: 14px;
  height: 14px;
}
.page-hero-title {
  font-size: 40px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.page-hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 650px;
  line-height: 1.7;
}
.filter-bar {
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 80px;
  z-index: 100;
}
.filter-bar-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.filter-label {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tag {
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.filter-tag:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.filter-tag.active {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.filter-bar-teal .filter-tag:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}
.filter-bar-teal .filter-tag.active {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
  color: #fff;
}
.news-list-section {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
}
.news-list-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.news-featured {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  transition: var(--transition);
  display: block;
}
.news-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.news-featured-content {
  padding: 30px;
}
.news-cat-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  background-color: rgba(10, 88, 202, 0.1);
  color: var(--primary);
}
.news-featured-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
}
.news-featured:hover .news-featured-title {
  color: var(--primary);
}
.news-featured-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.news-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.news-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.news-card:hover .news-img-wrapper img {
  transform: scale(1.05);
}
.news-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}
.news-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}
.news-card:hover .news-card-title {
  color: var(--primary);
}
.news-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-readmore svg {
  width: 14px;
  height: 14px;
}
.news-sidebar {
  min-width: 0;
}
.sidebar-widget {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding-bottom: 12px;
  margin-bottom: 16px;
  border-bottom: 2px solid var(--primary);
}
.sidebar-widget-title-teal {
  border-bottom-color: var(--accent-teal);
}
.popular-news-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
  text-decoration: none;
}
.popular-news-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.popular-news-item:hover {
  padding-left: 4px;
}
.popular-thumb {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.popular-title {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}
.popular-news-item:hover .popular-title {
  color: var(--primary);
}
.popular-date {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}
.category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.category-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-radius: 8px;
  background: none;
  background-color: var(--bg-light);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: none;
  font-family: inherit;
  width: 100%;
  text-align: left;
}
.category-item:hover {
  background-color: rgba(10, 88, 202, 0.06);
  color: var(--primary);
}
.category-item-teal:hover {
  background-color: rgba(0, 125, 138, 0.06);
  color: var(--accent-teal);
}
.category-count {
  font-size: 12px;
  font-weight: 700;
  background-color: var(--primary);
  color: #fff;
  padding: 2px 8px;
  border-radius: 50px;
}
.category-count-teal {
  background-color: var(--accent-teal);
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
}
.pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination a.page-numbers,
.pagination span.page-numbers {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  font-family: var(--font-display);
  box-sizing: border-box;
}
.pagination a.page-numbers:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.pagination span.page-numbers.current {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
.pagination a.page-numbers svg {
  width: 16px;
  height: 16px;
  display: block;
}

/* Teal pagination variant (hoat-dong) */
.pagination-teal a.page-numbers:hover {
  border-color: var(--accent-teal);
  color: var(--accent-teal);
}
.pagination-teal span.page-numbers.current {
  background-color: var(--accent-teal);
  border-color: var(--accent-teal);
}

/* PAGE: Tin tức Single (single-post) */
.page-hero-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.hero-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}
.hero-meta-badge svg {
  width: 15px;
  height: 15px;
}
.detail-section {
  padding: 70px 0 90px;
  background-color: var(--bg-white);
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.detail-hero-img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-lg);
}
.detail-body h2 {
  font-size: 22px;
  color: var(--primary);
  margin: 34px 0 14px;
}
.detail-body h2:first-child {
  margin-top: 0;
}
.detail-body p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-body);
  margin-bottom: 16px;
}
.detail-body strong {
  color: var(--text-dark);
}
.detail-body blockquote {
  font-style: italic;
  border-left: 4px solid var(--primary);
  padding-left: 20px;
  margin: 24px 0;
  color: var(--text-muted);
}

/* PAGE: Về chúng tôi (page-ve-chung-toi) */
.highlight-pillars {
  color: #ffb800;
  font-size: 1.15em;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(255, 184, 0, 0.2);
}
.section {
  padding: 80px 0;
}
.section-alt {
  background-color: var(--bg-light);
}
.section-label {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 12px;
  display: inline-block;
}
.section-title span {
  color: var(--primary);
}
.section-desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.75;
  max-width: 750px;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.intro-img-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.intro-img-wrapper img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.intro-img-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--primary);
  color: #fff;
  padding: 16px 24px;
  border-radius: 12px;
  line-height: 1.3;
  font-size: 13px;
}
.intro-img-badge strong {
  font-size: 28px;
  display: block;
  line-height: 1.1;
  margin-bottom: 2px;
}
.intro-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.intro-text {
  font-size: 15.5px;
  color: var(--text-body);
  line-height: 1.8;
  text-align: justify;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.mvv-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.mvv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.mvv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
}
.mvv-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(
    135deg,
    rgba(10, 88, 202, 0.08) 0%,
    rgba(10, 88, 202, 0.15) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.mvv-icon svg {
  width: 26px;
  height: 26px;
  color: var(--primary);
}
.mvv-title {
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.mvv-text {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.75;
}
.mvv-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
  flex: 1;
}
.mvv-list-item {
  display: grid;
  grid-template-columns: 185px auto 1fr;
  gap: 10px;
  align-items: baseline;
  padding: 6px 0;
  border-bottom: 1px solid var(--border-color);
}
.mvv-list-item:last-child {
  border-bottom: none;
}
.mvv-list-title {
  font-weight: 700;
  color: var(--text-dark);
}
.mvv-list-separator {
  color: var(--text-muted);
  font-weight: 500;
}
.mvv-list-desc {
  color: var(--text-body);
}
.fields-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}
.field-card {
  background: var(--bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.field-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.field-card-header {
  padding: 40px 30px 30px;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-size: cover;
  background-position: center;
}
.field-card-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(15, 23, 42, 0.1) 0%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}
.field-card-header > * {
  position: relative;
  z-index: 2;
}
.field-card.comm .field-card-header {
  background-image: url("../images/pillar_communication.png");
}
.field-card.tech .field-card-header {
  background-image: url("../images/pillar_technology.png");
}
.field-card.edu .field-card-header {
  background-image: url("../images/pillar_education.png");
}
.field-card-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.field-card-icon svg {
  width: 24px;
  height: 24px;
  color: #fff;
}
.field-card-title {
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.field-card-body {
  padding: 28px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.field-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.field-item-dot {
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin-top: 7px;
}
.field-card.comm .field-item-dot {
  background: var(--accent-orange);
}
.field-card.tech .field-item-dot {
  background: var(--primary);
}
.field-card.edu .field-item-dot {
  background: var(--accent-teal);
}
.field-item-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}
.partner-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(10, 88, 202, 0.2);
}
.partner-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(10, 88, 202, 0.08);
  color: var(--primary);
  width: fit-content;
}
.partner-card.exclusive .partner-badge {
  background: rgba(216, 106, 0, 0.08);
  color: var(--accent-orange);
}
.partner-name {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 12px;
}
.partner-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  text-align: justify;
}
.partner-highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.partner-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.5;
}
.partner-highlight-item svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}
.partner-card.exclusive .partner-highlight-item svg {
  color: var(--accent-orange);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}
.program-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.program-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(10, 88, 202, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.program-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}
.program-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.program-desc {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  text-align: justify;
  flex-grow: 1;
}
.program-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-top: 1px solid var(--border-color);
  padding-top: 16px;
}
.program-feature {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg-slate);
  color: var(--text-muted);
  padding: 4px 10px;
  border-radius: 50px;
}
.timeline-horizontal-wrapper {
  position: relative;
  margin-top: 40px;
}
.timeline-axis {
  position: relative;
  max-width: 900px;
  margin: 0 auto 40px auto;
  padding: 10px 0;
}
.axis-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    rgba(10, 88, 202, 0.2) 0%,
    var(--primary) 50%,
    rgba(10, 88, 202, 0.2) 100%
  );
  transform: translateY(-50%);
  z-index: 1;
}
.axis-points {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.axis-point {
  background: var(--bg-white);
  border: 2px solid rgba(10, 88, 202, 0.25);
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.axis-point:hover,
.axis-point.active {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.15);
}
.axis-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.8;
  z-index: 2;
  background-color: #f8fafc;
  padding: 0 10px;
}
.axis-arrow svg {
  width: 14px;
  height: 14px;
}
.timeline-horizontal-container {
  position: relative;
  overflow: visible;
  padding: 0 20px;
}
.timeline-horizontal {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  padding: 20px 10px;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.timeline-horizontal::-webkit-scrollbar {
  display: none;
}
.timeline-horizontal-item {
  flex: 0 0 360px;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.timeline-horizontal-item:hover,
.timeline-horizontal-item.active {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
  border-color: var(--primary);
  background: linear-gradient(
    135deg,
    var(--bg-white) 0%,
    rgba(10, 88, 202, 0.03) 100%
  );
}
.timeline-horizontal-year {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}
.timeline-horizontal-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
}
.timeline-horizontal-text {
  font-size: 13.5px;
  color: var(--text-body);
  line-height: 1.6;
  text-align: justify;
}
.timeline-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.timeline-nav-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.timeline-nav-btn.prev {
  left: -10px;
}
.timeline-nav-btn.next {
  right: -10px;
}
.stats-section {
  background: linear-gradient(135deg, #0b1226 0%, #0a58ca 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(10, 88, 202, 0.2) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.stats-inner {
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.stat-card {
  text-align: center;
  padding: 36px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.8);
}
.stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 auto;
}
.project-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.project-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.project-card:hover .project-card-img img {
  transform: scale(1.05);
}

.project-card-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.project-card-text {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 10px;
}

/* PAGE: Du an Archive (archive-du-an) */
.projects-list-section {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
}
.projects-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.project-card-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
  margin-top: 4px;
  flex-wrap: wrap;
}
.project-card-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.project-card-meta-item svg {
  width: 13px;
  height: 13px;
}

/* PAGE: Du an Single (single-du-an) */
.sidebar-card {
  background-color: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}
.sidebar-info-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sidebar-info-item {
  display: flex;
  gap: 12px;
}
.sidebar-info-icon {
  width: 36px;
  height: 36px;
  background-color: rgba(10, 88, 202, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sidebar-info-icon svg {
  width: 17px;
  height: 17px;
  color: var(--primary);
}
.sidebar-info-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  margin-bottom: 3px;
}
.sidebar-info-value {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}
.result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 24px 0 32px;
}
.result-card {
  background: linear-gradient(135deg, var(--bg-light) 0%, #eef3ff 100%);
  border: 1px solid rgba(10, 88, 202, 0.1);
  border-radius: 14px;
  padding: 24px 20px;
  text-align: center;
}
.result-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}
.result-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-item {
  padding: 6px 14px;
  border-radius: 50px;
  background-color: rgba(10, 88, 202, 0.07);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid rgba(10, 88, 202, 0.15);
}
.img-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 24px 0;
}
.img-gallery img {
  border-radius: 10px;
  height: 160px;
  object-fit: cover;
  width: 100%;
  transition: var(--transition);
}
.img-gallery img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-md);
}
.related-project-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.related-project-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.related-project-item:hover {
  padding-left: 6px;
}
.related-thumb {
  width: 70px;
  height: 50px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.related-project-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: var(--transition);
}
.related-project-item:hover .related-project-title {
  color: var(--primary);
}

/* PAGE: Hoat dong Archive (archive-hoat-dong) */
.activities-list-section {
  padding: 60px 0 80px;
  background-color: var(--bg-light);
}
.activities-list-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
.activity-featured {
  background-color: var(--bg-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  transition: var(--transition);
  display: block;
}
.activity-featured:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.activity-featured-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}
.activity-featured-content {
  padding: 30px;
}
.activity-featured-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition);
}
.activity-featured:hover .activity-featured-title {
  color: var(--accent-teal);
}
.activity-featured-desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 16px;
}
.activity-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}
.activity-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.activity-meta-item svg {
  width: 13px;
  height: 13px;
}
.activity-grid-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.activity-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 8px;
}
.activity-card-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: var(--transition);
}
.activity-card:hover .activity-card-title {
  color: var(--accent-teal);
}
.activity-card-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.activity-cat-badge {
  display: inline-block;
  width: fit-content;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  background-color: rgba(0, 125, 138, 0.1);
  color: var(--accent-teal);
}
.activity-readmore {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-teal);
  margin-top: 6px;
}
.activity-readmore:hover {
  gap: 10px;
}
.activity-readmore svg {
  width: 14px;
  height: 14px;
}
.popular-activity-item {
  display: flex;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.popular-activity-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.popular-activity-item:hover {
  padding-left: 4px;
}
.popular-activity-item:hover .popular-title {
  color: var(--accent-teal);
}

/* PAGE: Hoat dong Single (single-hoat-dong) */
.btn-teal {
  background-color: var(--accent-teal);
  color: var(--text-light);
  border-color: var(--accent-teal);
}
.btn-teal:hover {
  background-color: #005a63;
  transform: translateY(-2px);
}
.highlight-box {
  background: linear-gradient(
    135deg,
    rgba(0, 125, 138, 0.06) 0%,
    rgba(0, 125, 138, 0.12) 100%
  );
  border-left: 4px solid var(--accent-teal);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  font-size: 16px;
  color: var(--text-dark);
}
.event-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 24px 0 32px;
}
.event-stat {
  background: linear-gradient(135deg, #007d8a 0%, #005a63 100%);
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  color: #fff;
}
.event-stat-number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
}
.event-stat-label {
  font-size: 12px;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.gallery-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  margin: 30px 0;
  padding: 0 45px;
}
.gallery-slider-container {
  overflow-x: auto;
  width: 100%;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.gallery-slider-container::-webkit-scrollbar {
  display: none;
}
.gallery-slider-track {
  display: flex;
  gap: 16px;
}
.gallery-slide {
  scroll-snap-align: start;
  flex: 0 0 calc(33.333% - 11px);
  max-width: calc(33.333% - 11px);
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-slide:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.gallery-slide img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: var(--transition);
}
.gallery-slide:hover img {
  transform: scale(1.05);
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.slider-btn:hover:not(:disabled) {
  background-color: var(--accent-teal);
  color: var(--text-light);
  border-color: var(--accent-teal);
}
.slider-btn.prev-btn {
  left: 0;
}
.slider-btn.next-btn {
  right: 0;
}

/* PAGE: Tuyen dung Single (single-tuyen-dung) */
.apply-card-box {
  background-color: var(--bg-white);
  border: 2px solid var(--border-color);
  border-radius: 16px;
  padding: 35px;
  margin-top: 40px;
  box-shadow: var(--shadow-md);
}
.apply-card-box .wpcf7-form .form-group:last-of-type {
  margin-bottom: 0;
}
.apply-card-box .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  border: 1px solid;
}
.apply-card-box .wpcf7-response-output.wpcf7-mail-sent-ok {
  background-color: rgba(16, 185, 129, 0.1);
  border-color: #10b981;
  color: #065f46;
}
.apply-card-box .wpcf7-response-output.wpcf7-validation-errors,
.apply-card-box .wpcf7-response-output.wpcf7-mail-sent-ng {
  background-color: rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
  color: #991b1b;
}
.apply-card-box .wpcf7-not-valid-tip {
  font-size: 12px;
  color: #ef4444;
  margin-top: 4px;
}
.apply-card-box .wpcf7-form-control-wrap.cv {
  display: block;
  position: relative;
}
.apply-card-box .cv-upload-wrapper input[type="file"] {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  border: 0 !important;
}
.apply-box-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}
.apply-box-subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

/* MISSING STRUCTURAL CLASSES */
.activities-main {
  min-width: 0;
}
.detail-sidebar {
  min-width: 0;
}
.news-main {
  min-width: 0;
}
.nav-bar {
  display: flex;
  align-items: center;
}
.site-content {
  min-height: 60vh;
}
.modal-logo-wrapper {
  text-align: center;
  margin-bottom: 20px;
}
.modal-logo-wrapper img {
  height: 45px;
  display: inline-block;
}
.related-item {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition);
}
.related-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.related-item:hover {
  padding-left: 6px;
}
.related-title {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
}
.related-item:hover .related-title {
  color: var(--accent-teal);
}
.count-down strong {
  font-weight: inherit;
}

/* Responsive additions */
@media (max-width: 1200px) {
  .page-hero-title {
    font-size: 32px;
  }
}
@media (max-width: 992px) {
  .news-list-layout,
  .detail-layout,
  .activities-list-layout {
    grid-template-columns: 1fr;
  }
  .projects-list-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-grid,
  .img-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery-slide {
    flex: 0 0 calc(50% - 8px);
    max-width: calc(50% - 8px);
  }
  .activity-sidebar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-img-wrapper img {
    height: 350px;
  }
  .mvv-grid,
  .fields-grid,
  .programs-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .news-sidebar,
  .detail-sidebar,
  .activity-sidebar {
    grid-template-columns: 1fr;
  }
  .partners-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .projects-list-grid,
  .result-grid,
  .img-gallery {
    grid-template-columns: 1fr;
  }
  .activity-grid-cards {
    grid-template-columns: 1fr;
  }
  .activity-sidebar {
    grid-template-columns: 1fr;
  }
  .gallery-slide {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .event-stats {
    grid-template-columns: 1fr;
  }
  .apply-card-box {
    padding: 20px;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .page-hero-title {
    font-size: 26px;
  }
  .news-grid-cards {
    grid-template-columns: 1fr;
  }
  .news-sidebar {
    display: grid;
    grid-template-columns: 1fr;
  }
  .gallery-slider-wrapper {
    padding: 0 10px;
  }
  .slider-btn.prev-btn {
    left: -10px;
  }
  .slider-btn.next-btn {
    right: -10px;
  }
  .timeline-horizontal-item {
    flex: 0 0 300px;
    padding: 24px;
    margin: 0 10px;
  }
  .timeline-nav-btn {
    display: none;
  }
  .timeline-axis {
    display: flex;
    overflow-x: auto;
    padding: 10px;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .timeline-axis::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
  }
  .axis-line {
    display: none;
  }
  .axis-points {
    display: flex;
    gap: 10px;
    width: max-content;
  }
  .axis-arrow {
    background: transparent;
    padding: 0;
  }
}
@media (max-width: 576px) {
  .mvv-list-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 10px 0;
  }
  .mvv-list-separator {
    display: none;
  }
}

/* PAGE: Ve chung toi - specific grids (non-conflicting) */
.about-partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}
.about-projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 992px) {
  .about-partners-grid {
    grid-template-columns: 1fr;
  }
  .about-projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .about-projects-grid {
    grid-template-columns: 1fr;
  }
}

/* Active menu item (WordPress default classes) */
.nav-item.current-menu-item .nav-link,
.nav-item.current_page_item .nav-link,
.nav-item.current-menu-ancestor .nav-link,
.nav-item.current-post-ancestor .nav-link,
li.current-menu-item > .nav-link,
li.current_page_item > .nav-link {
  color: var(--primary);
}

.nav-item.current-menu-item .nav-link::after,
.nav-item.current_page_item .nav-link::after,
.nav-item.current-menu-ancestor .nav-link::after,
li.current-menu-item > .nav-link::after,
li.current_page_item > .nav-link::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-item.current-menu-item.has-dropdown .dropdown-icon {
  transform: rotate(180deg);
}
