/* 
  TELIN GROUP - Premium Core Stylesheets
  Architecture: Custom Vanilla CSS with CSS Custom Properties (Design Tokens)
  Responsiveness: Desktop-first & Mobile-first hybrid using CSS Grid & Flexbox
*/

/* ----------------------------------------------------
   1. DESIGN TOKENS (CSS Variables)
---------------------------------------------------- */
:root {
  /* Color Palette */
  --primary: #003e7f;
  --primary-rgb: 0, 62, 127;
  --primary-dark: #002c5c;
  --deep-navy: #003366;
  --deep-navy-rgb: 0, 51, 102;
  --accent: #FFB800;
  --accent-rgb: 255, 184, 0;
  --accent-hover: #e0a200;
  --secondary: #3b6a00;
  --on-primary: #ffffff;
  --on-surface: #171c20;
  --on-surface-variant: #424752;
  --industrial-gray: #4A5568;
  --background: #f5faff;
  --surface: #ffffff;
  --surface-low: #eff4f9;
  --surface-dim: #d5dbdf;
  --outline-variant: rgba(194, 198, 212, 0.4);
  --error: #ba1a1a;

  /* Typography */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-label: 'IBM Plex Sans', sans-serif;

  /* Layout & Spacing */
  --container-max: 1280px;
  --section-padding: 80px 0;
  --section-padding-mobile: 48px 0;

  /* Corner Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Transitions & Shadows */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 24px rgba(0, 51, 102, 0.08);
  --shadow-lg: 0 16px 36px rgba(0, 51, 102, 0.12);
}

/* Dark Mode Tokens */
html.dark {
  --background: #0f1319;
  --surface: #161c24;
  --surface-low: #1c2530;
  --on-surface: #f5faff;
  --on-surface-variant: #c2c6d4;
  --industrial-gray: #a0aec0;
  --outline-variant: rgba(194, 198, 212, 0.1);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
}

/* ----------------------------------------------------
   2. BASE & RESET
---------------------------------------------------- */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-body);
  background-color: var(--background);
  color: var(--on-surface);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-normal), color var(--transition-normal);
}

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

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

/* ----------------------------------------------------
   3. LAYOUT UTILITIES
---------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.section {
  padding: var(--section-padding);
}

@media (max-width: 768px) {
  .section {
    padding: var(--section-padding-mobile);
  }
}

/* Typography styles */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--deep-navy);
}

html.dark h1, html.dark h2, html.dark h3, html.dark h4, html.dark h5, html.dark h6 {
  color: #ffffff;
}

.text-accent {
  color: var(--accent);
}

.text-muted {
  color: var(--industrial-gray);
}

/* Flex & Grid system */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

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

@media (max-width: 640px) {
  .grid-cols-2, .grid-cols-3, .grid-cols-4 { grid-template-columns: 1fr; }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: var(--font-label);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  font-size: 14px;
  letter-spacing: 0.02em;
}

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

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 62, 127, 0.2);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--deep-navy);
}

.btn-accent:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 184, 0, 0.25);
}

.btn-outline {
  border: 1px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background-color: rgba(0, 62, 127, 0.05);
  transform: translateY(-2px);
}

.btn-white-outline {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
}

/* ----------------------------------------------------
   4. NAVIGATION HEADER
---------------------------------------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--outline-variant);
  z-index: 100;
  transition: all var(--transition-normal);
}

html.dark .header {
  background-color: rgba(22, 28, 36, 0.95);
}

.header.scrolled {
  height: 70px;
  box-shadow: var(--shadow-md);
}

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

.logo img {
  height: 40px;
  object-contain: fit;
  transition: height var(--transition-normal);
}

.header.scrolled .logo img {
  height: 35px;
}

/* Desktop Menu */
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 100%;
}

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

.nav-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--on-surface-variant);
  display: flex;
  align-items: center;
  gap: 4px;
}

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

.nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--accent);
}

/* Dropdown Menu */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 250px;
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-normal);
}

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

.dropdown-link {
  display: block;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 500;
  color: var(--on-surface-variant);
}

.dropdown-link:hover {
  background-color: var(--surface-low);
  color: var(--primary);
  padding-left: 28px;
}

/* Language Switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-btn {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  overflow: hidden;
  border: 1px solid transparent;
  opacity: 0.5;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  opacity: 1;
  border-color: var(--primary);
  transform: scale(1.1);
  box-shadow: 0 0 4px rgba(0, 62, 127, 0.3);
}

.lang-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Right Header Utilities */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.search-btn, .theme-toggle {
  color: var(--on-surface-variant);
  font-size: 24px;
  transition: color var(--transition-fast);
}

.search-btn:hover, .theme-toggle:hover {
  color: var(--primary);
}

/* Mobile Toggle */
.mobile-menu-btn {
  display: none;
  font-size: 28px;
  color: var(--primary);
}

@media (max-width: 1024px) {
  .mobile-menu-btn { display: block; }
  .header-actions .btn-contact { display: none; }
}

/* ----------------------------------------------------
   5. MOBILE SLIDE MENU
---------------------------------------------------- */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 300px;
  height: 100%;
  background-color: var(--surface);
  box-shadow: var(--shadow-lg);
  z-index: 1000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: right var(--transition-normal);
}

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-menu-close {
  font-size: 28px;
  color: var(--primary);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-item {
  border-bottom: 1px solid var(--outline-variant);
  padding-bottom: 12px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--on-surface);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mobile-submenu {
  display: none;
  padding-left: 16px;
  margin-top: 10px;
  flex-direction: column;
  gap: 12px;
}

.mobile-submenu.active {
  display: flex;
}

.mobile-submenu-link {
  font-size: 14px;
  color: var(--on-surface-variant);
  font-weight: 500;
}

/* ----------------------------------------------------
   6. HERO SECTION
---------------------------------------------------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(0, 31, 63, 0.92) 0%, rgba(0, 31, 63, 0.6) 50%, rgba(0, 31, 63, 0.15) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: #ffffff;
  max-width: 800px;
  text-align: left;
}

.hero h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.95);
  max-width: 640px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-tag {
  background-color: var(--accent);
  color: var(--deep-navy);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  align-items: center;
}

.hero-btn {
  height: 48px;
  padding: 0 28px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  border-radius: var(--radius-md) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.hero-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
  .hero h1 {
    font-size: 38px;
  }
  .hero p {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 32px;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero-btn {
    width: 100% !important;
    min-width: unset;
  }
}

/* ----------------------------------------------------
   7. SECTIONS & COMPONENTS
---------------------------------------------------- */
/* Stats Section */
.stats-section {
  background-color: var(--surface);
  border-bottom: 1px solid var(--outline-variant);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

.stat-item {
  padding: 24px;
  border-right: 1px solid var(--outline-variant);
}

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

@media (max-width: 768px) {
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--outline-variant);
    padding: 16px;
  }
  .stat-item:last-child {
    border-bottom: none;
  }
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  margin-bottom: 8px;
}

.stat-label {
  font-family: var(--font-label);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--industrial-gray);
  font-weight: 600;
}

/* Sectors Grid */
.section-title-wrapper {
  margin-bottom: 48px;
}

.section-subtitle {
  font-family: var(--font-label);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.section-title {
  font-size: 36px;
  color: var(--deep-navy);
}

.sectors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

@media (max-width: 1200px) {
  .sectors-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

.sector-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition-normal);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.sector-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-full);
  background-color: rgba(0, 62, 127, 0.05);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 24px;
  transition: all var(--transition-fast);
}

.sector-card:hover .sector-icon {
  background-color: var(--accent);
  color: var(--deep-navy);
}

.sector-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

.sector-card p {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.5;
  flex-grow: 1;
}

/* Tabbed Operations */
.operations-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.tab-btn {
    padding: 12px 32px;
    font-family: var(--font-label);
    font-weight: 600;
    border-radius: var(--radius-md);
    border: 1px solid var(--outline-variant);
    color: var(--on-surface-variant);
    background-color: var(--surface);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.tab-btn.active {
    background-color: var(--primary);
    color: #ffffff;
    border-color: var(--primary);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

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

@media (max-width: 640px) {
  .tab-content.active { grid-template-columns: 1fr; }
}

/* Project Card */
.project-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.project-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal);
}

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

.project-info {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.project-tag {
  color: var(--accent);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.project-info h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

.project-info p {
  font-size: 14px;
  color: var(--on-surface-variant);
  margin-bottom: 20px;
  flex-grow: 1;
}

.project-link {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* News Section & Card */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

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

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

.news-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.news-img{

    width:100%;

    height:240px;

    overflow:hidden;

    border-radius:16px 16px 0 0;

    flex-shrink:0;

}

.news-img img{

    width:100%;

    height:240px;

    object-fit:cover;

    object-position:center;

    display:block;

}

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

.news-date {
  font-size: 12px;
  font-family: var(--font-label);
  color: var(--industrial-gray);
  margin-bottom: 8px;
}

.news-card h4 {
  font-size: 18px;
  color: var(--deep-navy);
  margin-bottom: 12px;
  transition: color var(--transition-fast);
  line-height: 1.4;
}

.news-card:hover h4 {
  color: var(--primary);
}

.news-card p {
  font-size: 14px;
  color: var(--on-surface-variant);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ----------------------------------------------------
   8. FOOTER
---------------------------------------------------- */
.footer {
  background-color: var(--surface-low);
  padding-top: 80px;
  border-top: 1px solid var(--outline-variant);
}

.footer-top {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 40px;
  padding-bottom: 60px;
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
  }
}

.footer-col-5 {
  grid-column: span 5;
}

.footer-col-4 {
  grid-column: span 4;
}

.footer-col-3 {
  grid-column: span 3;
}

@media (max-width: 1024px) {
  .footer-col-5, .footer-col-4, .footer-col-3 {
    grid-column: span 12;
  }
}

.footer-logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.footer-item {
  margin-bottom: 24px;
}

.footer-item h5 {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--deep-navy);
  margin-bottom: 8px;
  font-family: var(--font-label);
}

.footer-item p {
  font-size: 14px;
  color: var(--on-surface-variant);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 14px;
  color: var(--on-surface-variant);
}

.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--deep-navy);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: background-color var(--transition-fast);
}

.social-btn:hover {
  background-color: var(--primary);
}

.footer-bottom {
  background-color: var(--deep-navy);
  padding: 20px 0;
  text-align: center;
  color: #ffffff;
}

.footer-bottom p {
  font-family: var(--font-label);
  font-size: 12px;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

/* ----------------------------------------------------
   9. INTERACTION COMPONENTS (FLOATING BUTTONS)
---------------------------------------------------- */
.floating-widgets {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99;
}

.widget-btn {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: #ffffff;
  font-size: 24px;
}

.widget-btn:hover {
  transform: scale(1.1) translateY(-2px);
}

.zalo-btn {
  background-color: #0068ff;
}

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

.back-to-top {
  background-color: var(--accent);
  color: var(--deep-navy);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Breadcrumb styling */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 110px;
  margin-bottom: 24px;
  font-family: var(--font-label);
  font-size: 13px;
  color: var(--on-surface-variant);
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb-separator {
  font-size: 12px;
  opacity: 0.6;
}

/* ----------------------------------------------------
   10. SPECIFIC PAGES
---------------------------------------------------- */
/* News Page */
.featured-news-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  background-color: var(--deep-navy);
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .featured-news-hero { aspect-ratio: 4/3; }
}

.featured-news-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.featured-news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.7;
}

.featured-news-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0, 51, 102, 0.9) 0%, rgba(0, 51, 102, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
  color: #ffffff;
}

@media (max-width: 768px) {
  .featured-news-overlay { padding: 24px; }
}

.featured-news-badge {
  background-color: var(--accent);
  color: var(--deep-navy);
  padding: 4px 12px;
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  margin-bottom: 16px;
  width: fit-content;
}

.featured-news-overlay h2 {
  font-size: 32px;
  color: #ffffff;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .featured-news-overlay h2 { font-size: 20px; }
}

.featured-news-overlay p {
  font-size: 16px;
  opacity: 0.9;
  max-width: 700px;
}

.news-layout {
  display: grid;
  grid-template-columns: 8fr 4fr;
  gap: 40px;
}

@media (max-width: 1024px) {
  .news-layout { grid-template-columns: 1fr; }
}

.sidebar-widget {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 32px;
}

.sidebar-title {
  font-size: 18px;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.recent-post-item {
  display: flex;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--outline-variant);
  margin-bottom: 16px;
}

.recent-post-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.recent-post-img {
  width: 80px;
  height: 60px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.recent-post-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recent-post-info h5 {
  font-size: 14px;
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 48px;
}

.page-number {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--outline-variant);
  font-family: var(--font-label);
  font-weight: 600;
  transition: all var(--transition-fast);
}

.page-number.active {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}

.page-number:hover:not(.active) {
  background-color: var(--surface-low);
  border-color: var(--primary);
}

/* Detail Pages */
.detail-content {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 48px;
}

@media (max-width: 768px) {
  .detail-content { padding: 24px; }
}

.detail-meta {
  display: flex;
  gap: 16px;
  color: var(--industrial-gray);
  font-family: var(--font-label);
  font-size: 13px;
  margin-bottom: 24px;
}

.detail-content h1 {
  font-size: 38px;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .detail-content h1 { font-size: 24px; }
}

.detail-body {
  font-size: 16px;
  color: var(--on-surface-variant);
}

.detail-body p {
  margin-bottom: 20px;
}

.detail-body img {
  border-radius: var(--radius-md);
  margin: 32px 0;
  width: 100%;
}

/* Careers Page & Job card */
.job-filter-bar {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-top: -64px;
  position: relative;
  z-index: 10;
  margin-bottom: 48px;
}

.filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 20px;
}

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

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-group label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--industrial-gray);
  text-transform: uppercase;
}

.filter-input {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--surface-low);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
}

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

.job-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all var(--transition-normal);
}

.job-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
  .job-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .job-card .btn {
    width: 100%;
  }
}

.job-info-main {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.job-meta-tags {
  display: flex;
  gap: 8px;
}

.job-tag {
  background-color: rgba(0, 62, 127, 0.08);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-sm);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
}

.job-tag-location {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--industrial-gray);
  font-family: var(--font-label);
}

.job-title {
  font-size: 20px;
  color: var(--deep-navy);
}

.job-deadline {
  font-size: 12px;
  color: var(--industrial-gray);
}

/* Contact Page Form */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 48px;
}

@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.contact-info-block {
  background-color: var(--primary);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px;
}

.contact-info-block h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.contact-icon {
  font-size: 24px;
  color: var(--accent);
}

.contact-text h5 {
  color: #ffffff;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-text p {
  opacity: 0.8;
  font-size: 14px;
}

.contact-form-block {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 48px;
}

@media (max-width: 768px) {
  .contact-form-block { padding: 24px; }
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--industrial-gray);
  text-transform: uppercase;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  background-color: var(--surface-low);
}

.form-input:focus {
  border-color: var(--primary);
  background-color: var(--surface);
}

/* 404 Page styling */
.error-page-wrapper {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px;
}

.error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.error-title {
  font-size: 28px;
  margin-bottom: 16px;
  margin-top: 16px;
}

.error-message {
  font-size: 16px;
  color: var(--on-surface-variant);
  max-width: 500px;
  margin-bottom: 32px;
}

/* ==========================================================================
   ABOUT PAGE CUSTOM STYLES
   ========================================================================== */

.about-hero {
  position: relative;
  background-image: linear-gradient(rgba(10, 25, 47, 0.75), rgba(10, 25, 47, 0.85)), url('https://lh3.googleusercontent.com/aida-public/AB6AXuAmGJBfRvh3S2pC7CVgawyQRxfdcItEKtrlO_jtzrsP3_dfmGokqH87O3new4sfjJynrH0nxvsCbs0GKY-ioZLsHg2HuTDRNxIX4CaQiFuKQtxK3W4OiaKRiZIXyWz03Rs_zS9P_MOPQU9arrji1nYRXPKuGC2JTaOPqhqzST2mpJvD_HLs8YXUWeQvZaByaBRSfy_7p-wkeZYg5bFCSL7GvrWq5I0rSmnnLzUj70fw_fbFk7p3q1bJ01exh88Zv3sfjaH9kI12BxoQ');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 140px 0 100px 0;
  color: #ffffff !important;
  text-align: center;
  margin-bottom: 64px;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.about-hero-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep-navy);
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.about-hero p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
  margin-bottom: 32px;
}

.about-hero .btn-primary {
  background-color: var(--accent);
  color: var(--deep-navy);
  border-color: var(--accent);
}

.about-hero .btn-primary:hover {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

.about-hero .btn-secondary {
  background-color: transparent;
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.about-hero .btn-secondary:hover {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .about-hero {
    padding: 100px 0 60px 0;
  }
  .about-hero h1 {
    font-size: 36px;
  }
  .about-hero p {
    font-size: 15px;
  }
}

/* Artistic Image Grid */
.artistic-image-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
  height: 480px;
}

.artistic-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-normal);
}

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

.artistic-img:hover {
  transform: translateY(-8px) scale(1.02);
  z-index: 10;
}

.artistic-img-1 {
  grid-column: 1 / 8;
  grid-row: 1 / 10;
  z-index: 1;
}

.artistic-img-2 {
  grid-column: 7 / 13;
  grid-row: 3 / 8;
  z-index: 2;
  border: 4px solid var(--surface);
}

.artistic-img-3 {
  grid-column: 3 / 9;
  grid-row: 7 / 13;
  z-index: 3;
  border: 4px solid var(--surface);
}

@media (max-width: 1024px) {
  .artistic-image-grid {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .artistic-image-grid {
    display: none;
  }
}

/* About Statistics */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--outline-variant);
}

.about-stat-item {
  text-align: left;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-family: var(--font-label);
  font-size: 12px;
  font-weight: 700;
  color: var(--industrial-gray);
  text-transform: uppercase;
}

/* Timeline History */
.timeline-section {
  position: relative;
  padding: 80px 0;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: var(--outline-variant);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  width: 50%;
  padding: 24px 40px;
  box-sizing: border-box;
}

.timeline-item-left {
  left: 0;
  text-align: right;
}

.timeline-item-right {
  left: 50%;
  text-align: left;
}

.timeline-dot {
  position: absolute;
  top: 32px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: var(--primary);
  border: 4px solid var(--surface);
  box-shadow: var(--shadow-sm);
  z-index: 5;
}

.timeline-item-left .timeline-dot {
  right: -8px;
}

.timeline-item-right .timeline-dot {
  left: -8px;
}

.timeline-content {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal), border-color var(--transition-normal);
}

.timeline-content:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.timeline-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.timeline-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 24px;
  }
  .timeline-item {
    width: 100%;
    padding: 16px 16px 16px 48px;
    left: 0;
    text-align: left;
  }
  .timeline-dot {
    left: 16px !important;
  }
}

/* Core Values, Vision & Mission Cards */
.value-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all var(--transition-normal);
}

.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.value-card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background-color: rgba(0, 62, 127, 0.08);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.value-card-icon span {
  font-size: 32px;
}

.value-card-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--deep-navy);
}

/* Ecosystem Sector Grid */
.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.ecosystem-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all var(--transition-fast);
}

.ecosystem-card:hover {
  border-color: var(--primary);
  background-color: var(--surface-container-low);
  transform: translateY(-2px);
}

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

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

/* Leadership Custom Style */
.leader-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-normal);
}

.leader-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
}

.leader-image-wrapper {
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--surface-container-high);
  position: relative;
}

.leader-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-normal), filter var(--transition-normal);
  filter: grayscale(100%);
}

.leader-card:hover .leader-image-wrapper img {
  transform: scale(1.05);
  filter: grayscale(0%);
}

.leader-info {
  padding: 24px;
  text-align: center;
}

.leader-name {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--deep-navy);
}

.leader-role {
  font-family: var(--font-label);
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
}

/* Contact CTA Block */
.contact-cta-section {
  background-image: linear-gradient(rgba(0, 62, 127, 0.9), rgba(0, 62, 127, 0.95)), url('https://lh3.googleusercontent.com/aida-public/AB6AXuAmGJBfRvh3S2pC7CVgawyQRxfdcItEKtrlO_jtzrsP3_dfmGokqH87O3new4sfjJynrH0nxvsCbs0GKY-ioZLsHg2HuTDRNxIX4CaQiFuKQtxK3W4OiaKRiZIXyWz03Rs_zS9P_MOPQU9arrji1nYRXPKuGC2JTaOPqhqzST2mpJvD_HLs8YXUWeQvZaByaBRSfy_7p-wkeZYg5bFCSL7GvrWq5I0rSmnnLzUj70fw_fbFk7p3q1bJ01exh88Zv3sfjaH9kI12BxoQ');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
  border-radius: var(--radius-lg);
  color: #ffffff !important;
  text-align: center;
  margin: 64px 0;
}

.contact-cta-content {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px;
}

.contact-cta-section h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff !important;
  margin-bottom: 16px;
}

.contact-cta-section p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 32px;
}

.contact-cta-section .btn-accent {
  background-color: var(--accent);
  color: var(--deep-navy);
}

.contact-cta-section .btn-accent:hover {
  background-color: #ffffff;
  color: var(--primary);
}

.contact-cta-section .btn-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.contact-cta-section .btn-outline:hover {
  background-color: #ffffff;
  color: var(--primary);
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .contact-cta-section h2 {
    font-size: 28px;
  }
}

/* ==========================================================================
   CAREERS PAGE CUSTOM STYLES
   ========================================================================== */

.careers-hero {
  position: relative;
  background-image: linear-gradient(rgba(10, 25, 47, 0.7), rgba(10, 25, 47, 0.8)), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 160px 0 120px 0;
  color: #ffffff !important;
  margin-bottom: 48px;
}

.careers-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: left;
}

.careers-hero-badge {
  display: inline-block;
  background-color: var(--accent);
  color: var(--deep-navy);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.careers-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.25;
  margin-bottom: 20px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.careers-hero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9) !important;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 680px;
}

.careers-hero .btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.careers-hero .btn-primary:hover {
  background-color: var(--accent);
  color: var(--deep-navy);
  border-color: var(--accent);
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 120px 0 80px 0;
  }
  .careers-hero h1 {
    font-size: 32px;
  }
  .careers-hero p {
    font-size: 14px;
  }
}

/* Careers Job Filter Card */
.careers-filter-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  margin-top: -80px;
  position: relative;
  z-index: 10;
  margin-bottom: 48px;
}

.careers-filter-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}

@media (max-width: 768px) {
  .careers-filter-grid {
    grid-template-columns: 1fr;
  }
}

/* Horizontal Job Cards */
.jobs-list-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 64px;
}

.job-card-horizontal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  transition: all var(--transition-normal);
}

.job-card-horizontal:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.job-card-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 70%;
}

.job-card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--deep-navy);
}

.job-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.job-card-tag-dept {
  background-color: rgba(0, 62, 127, 0.08);
  color: var(--primary);
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
}

.job-card-tag-loc {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--industrial-gray);
  font-family: var(--font-label);
}

.job-card-tag-loc span {
  font-size: 16px;
}

.job-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.job-card-deadline {
  font-size: 13px;
  color: var(--industrial-gray);
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-label);
}

.job-card-deadline span {
  font-size: 16px;
}

@media (max-width: 768px) {
  .job-card-horizontal {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
  }
  .job-card-left {
    max-width: 100%;
  }
  .job-card-right {
    width: 100%;
    align-items: flex-start;
    border-top: 1px solid var(--outline-variant);
    padding-top: 16px;
  }
  .job-card-right .btn {
    width: 100%;
  }
}

/* Recruitment Process Styles */
.process-grid {
  display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin-top:40px;
}

.process-step-card {
  position:relative;

    background:#fff;

    border:1px solid #dfe5ec;

    border-radius:12px;

    padding:24px;

    min-height:150px;

    overflow:hidden;

    transition:.3s;
}

.process-step-card:hover {
  transform:translateY(-5px);
  box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.process-number{

    position:absolute;

    right:15px;

    top:10px;

    font-size:56px;

    font-weight:800;

    color:#edf1f5;

    line-height:1;

    z-index:1;

}

.process-step-card h3{

    position:relative;

    z-index:2;

    font-size:16px;

    margin-bottom:12px;

    color:#0d3f86;

}

.process-step-card p{

    position:relative;

    z-index:2;

    font-size:14px;

    line-height:1.7;

    color:#5d6b7c;

}
.process-step-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.08;
  position: absolute;
  right: 16px;
  top: 8px;
  line-height: 1;
}

.process-step-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--deep-navy);
  position: relative;
  z-index: 2;
}

.process-step-desc {
  font-size: 14px;
  color: var(--on-surface-variant);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

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

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

/* Why Choose Us & Quote Card overlay */
.why-us-grid {
  display:grid;

    grid-template-columns:45% 55%;

    gap:40px;

    align-items:center;
}

.why-us-card{

    background:#fff;

    border:1px solid #dfe5ec;

    border-radius:12px;

    padding:24px;

    transition:.3s;

}

.why-us-card:hover{

    transform:translateY(-5px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.why-us-card .material-symbols-outlined{

    font-size:40px;

    color:#0d63c9;

    margin-bottom:12px;

}

.why-us-card h4{

    font-size:16px;

    margin-bottom:10px;

    color:#0d3f86;

}

.why-us-card p{

    font-size:14px;

    line-height:1.6;

    color:#5d6b7c;

}

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

.why-us-item-card {
  background-color: var(--surface);
  border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition-normal);
}

.why-us-item-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.why-us-icon-wrapper {
  color: var(--primary);
  margin-bottom: 16px;
}

.why-us-icon-wrapper span {
  font-size: 28px;
}

.why-us-item-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--deep-navy);
}

.why-us-item-desc {
  font-size: 13px;
  color: var(--on-surface-variant);
  line-height: 1.4;
}

.why-us-image-container {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
  height: 400px;
}

.why-us-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.quote-card-overlay {
  background-color: var(--accent);
  color: var(--deep-navy) !important;
  padding: 24px 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: -32px;
  left: -32px;
  max-width: 320px;
  z-index: 5;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.quote-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 12px;
  font-style: italic;
  color: var(--deep-navy) !important;
}

.quote-author {
  font-family: var(--font-label);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(10, 25, 47, 0.8) !important;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }
}

@media (max-width: 640px) {
  .why-us-cards-grid {
    grid-template-columns: 1fr;
  }
  .quote-card-overlay {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 16px;
    max-width: 100%;
  }
  .why-us-image-container {
    height: 280px;
  }
}

/* ===================================
   ABOUT - ECOSYSTEM SECTION
=================================== */

/* =====================================
   ECOSYSTEM
===================================== */

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

.ecosystem-card{
    background:#fff;
    border-radius:24px;
    padding:32px 24px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.35s ease;
}

.ecosystem-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 40px rgba(0,0,0,.12);
}

.ecosystem-icon{
    width:72px;
    height:72px;
    margin:0 auto 24px;
    border-radius:50%;
    background:rgba(13,71,161,.08);
    display:flex;
    align-items:center;
    justify-content:center;
}

.ecosystem-icon .material-symbols-outlined{
    font-size:36px;
    color:var(--primary);
}

.ecosystem-card h3{
    margin-bottom:16px;
    font-size:22px;
    font-weight:700;
}

.ecosystem-card p{
    font-size:15px;
    line-height:1.8;
}

@media(max-width:991px){

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

}

@media(max-width:768px){

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

}


/* =========================
   LEADERSHIP CAROUSEL
========================= */

.leadership-slider{
    overflow:hidden;
    width:100%;
    position:relative;
}

.leadership-track{
    display:flex;
    gap:30px;
    width:max-content;

    animation:leadershipScroll 30s linear infinite;
}

.leader-card{
    width:280px;
    flex-shrink:0;
    text-align:center;
}

.leader-card img{
    width:100%;
    height:220px;

    object-fit:cover;

    border-radius:20px;

    margin-bottom:18px;
}

.leader-card h3{
    font-size:20px;
    font-weight:700;

    margin-bottom:8px;

    color:var(--deep-navy);
}

.leader-card p{
    color:var(--outline);
}

@keyframes leadershipScroll{

    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }

}

.leadership-slider:hover .leadership-track{
    animation-play-state:paused;
}

@media(max-width:768px){

    .leader-card{
        width:220px;
    }

    .leader-card img{
        height:180px;
    }

}

html{
    scroll-behavior:smooth;
}

#company-profile{
    scroll-margin-top:120px;
}

/* =====================================
   ABOUT CTA
===================================== */

.about-cta{
    margin-top:80px;
    padding:80px 50px;

    border-radius:32px;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--deep-navy)
    );

    color:#fff;

    text-align:center;
}

.about-cta h2{
    color:#fff;

    margin:20px 0;

    font-size:42px;
}

.about-cta p{
    max-width:800px;

    margin:0 auto 30px;

    opacity:.9;

    line-height:1.8;
}

.about-cta-buttons{
    display:flex;

    justify-content:center;

    gap:20px;
}

@media(max-width:768px){

    .about-cta{
        padding:50px 25px;
    }

    .about-cta h2{
        font-size:28px;
    }

    .about-cta-buttons{
        flex-direction:column;
    }

}

/* ===============================
   CONTACT PAGE
================================ */

.contact-layout{
    display:grid;
    grid-template-columns:400px 1fr;
    gap:40px;

    margin-bottom:80px;
}

.contact-card{
    background:#fff;

    border-radius:20px;

    padding:30px;

    margin-bottom:20px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.contact-card h3{
    margin-bottom:12px;

    color:var(--deep-navy);
}

.contact-form-card{
    background:#fff;

    padding:40px;

    border-radius:24px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

@media(max-width:991px){

    .contact-layout{
        grid-template-columns:1fr;
    }

}

.hero-page-banner{
    padding:80px 50px;
    border-radius:32px;
    text-align:center;

    background:linear-gradient(
        135deg,
        var(--primary),
        var(--deep-navy)
    );

    color:#fff;

    margin-bottom:60px;
}

.hero-page-banner h1{
    color:#fff;
    margin-bottom:20px;
}

.hero-page-banner p{
    max-width:800px;
    margin:auto;
}

.contact-map-box{
    height:350px;

    border-radius:24px;

    overflow:hidden;

    margin-top:20px;

    background:#f5f5f5;

    position:relative;
}

.contact-map-overlay{
    position:absolute;
    inset:0;

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    text-align:center;
}

.contact-card{
    margin-bottom:20px;
}


/* ==========================
   CONTACT FORM 7
========================== */

.wpcf7{
    width:100%;
}

.wpcf7 form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.form-group{
    display:flex;
    flex-direction:column;
    gap:8px;
}

.form-group label{
    font-size:14px;
    font-weight:600;
    color:var(--deep-navy);
}

.form-input{
    width:100%;

    min-height:52px;

    padding:14px 16px;

    border:1px solid var(--outline-variant);

    border-radius:12px;

    background:#fff;

    font-size:15px;

    transition:.3s ease;
}

textarea.form-input{
    min-height:140px;
    resize:vertical;
}

.form-input:focus{
    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(0,87,183,.08);
}

.wpcf7-submit{
    width:100%;

    border:none;

    cursor:pointer;
}

.article-body img{
    max-width:100%;
    height:auto;
    border-radius:12px;
}

.article-body iframe{
    max-width:100%;
}

/* ==========================
   PROJECTS HOME
========================== */

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

.project-card img{
    width:100%;
    height:240px;
    object-fit:cover;
    display:block;
}

.project-info{
    padding:20px;
}

.project-info h4{
    margin:12px 0;
    font-size:20px;
}

.project-info p{
    font-size:14px;
    line-height:1.6;
}

.project-link{
    display:inline-flex;
    align-items:center;
    gap:6px;
    margin-top:12px;
    color:var(--primary);
    font-weight:600;
}

@media(max-width:991px){

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

}

@media(max-width:576px){

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

}

.projects-view-all{
    text-align:center;
    margin-top:40px;
}

/* Tuyen dung ========================== */

.career-grid{

    display:grid;

    grid-template-columns:
    repeat(3,1fr);

    gap:30px;

    margin-top:50px;

}

.career-card{

    display:block;

    background:#fff;

    border:1px solid
    var(--outline-variant);

    border-radius:16px;

    padding:24px;

    transition:.3s;

}

.career-card:hover{

    transform:translateY(-5px);

}

.career-meta{

    display:flex;

    gap:20px;

    margin:15px 0;

    font-size:14px;

}

.quote-card-overlay{

    position:absolute;

    left:-20px;

    bottom:20px;

    width:260px;

    background:#f6b800;

    border-radius:12px;

    padding:20px;

    box-shadow:0 15px 30px rgba(0,0,0,.15);

}

.quote-card-overlay p{

    margin:0;

    font-size:14px;

    line-height:1.8;

    color:#111;

    font-style:italic;

}
.career-why-title{

    font-size:46px;

    font-weight:800;

    color:#0b3f85;

    line-height:1.1;

    margin-bottom:40px;

    max-width:420px;

}
@media(max-width:991px){

    .process-grid{

        grid-template-columns:repeat(2,1fr);

    }

    .why-us-grid{

        grid-template-columns:1fr;

    }

}

@media(max-width:767px){

    .process-grid{

        grid-template-columns:1fr;

    }

    .why-us-cards-grid{

        grid-template-columns:1fr;

    }

}

.career-layout{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:40px;

    align-items:start;
    margin-left: 25px;
    margin-top:40px;

}

.career-layout .article-content{

    margin:0;

}

.career-layout aside{

    margin:0;

}

.career-layout{
    display:grid;
    grid-template-columns:50% 50%;
    gap:40px;
}
.job-meta-value{
  font-weight: 700;
    color: var(--primary);
    font-size: 18px;
}
.article-content{

    min-width:0;

}

.article-content-body{

    overflow-wrap:break-word;

    word-wrap:break-word;

}
@media (max-width: 991px){

    .career-layout{

        grid-template-columns:1fr;
        margin-left: 25px;
        gap:24px;

    }

}
/* ==========================
   Career Apply Form
========================== */

.sidebar-widget form{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.sidebar-widget .form-group{

    display:flex;

    flex-direction:column;

}

.sidebar-widget .form-group label{

    font-size:14px;

    font-weight:600;

    color:var(--deep-navy);

    margin-bottom:8px;

}

.sidebar-widget .form-input{

    width:100%;

    min-height:48px;

    padding:12px 16px;

    border:1px solid var(--outline-variant);

    border-radius:8px;

    background:#fff;

    font-size:15px;

    color:var(--on-surface);

    transition:all .25s ease;

}

.sidebar-widget .form-input:focus{

    outline:none;

    border-color:var(--primary);

    box-shadow:0 0 0 3px rgba(39,136,243,.12);

}

.sidebar-widget input[type="file"]{

    padding:10px 12px;

    cursor:pointer;

}

.sidebar-widget input[type="file"]::file-selector-button{

    border:none;

    background:var(--surface-low);

    border-radius:6px;

    padding:8px 12px;

    margin-right:12px;

    cursor:pointer;

    font-size:13px;

}

.sidebar-widget input[type="file"]::file-selector-button:hover{

    background:var(--primary);

    color:#fff;

}

.sidebar-widget .btn-accent{

    width:100%;

    min-height:50px;

    border:none;

    border-radius:8px;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;

}

.sidebar-widget .btn-accent:hover{

    transform:translateY(-2px);

    box-shadow:0 8px 20px rgba(0,0,0,.12);

}
/* ==========================
   Contact Form 7 Career
========================== */

.sidebar-widget .wpcf7{

    width:100%;

}

.sidebar-widget .wpcf7-form{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.sidebar-widget .wpcf7-form label{

    display:block;

    font-size:14px;

    font-weight:600;

    color:var(--deep-navy);

}

.sidebar-widget .wpcf7-form-control-wrap{

    display:block;

    margin-top:8px;

}

.sidebar-widget .wpcf7-text,
.sidebar-widget .wpcf7-email,
.sidebar-widget .wpcf7-tel,
.sidebar-widget .wpcf7-file{

    width:100%;

    min-height:48px;

    padding:12px 16px;

    border:1px solid var(--outline-variant);

    border-radius:8px;

    background:#fff;

}

.sidebar-widget .wpcf7-submit{

    width:100%;

    height:50px;

    border:none;

    border-radius:8px;

    font-weight:700;

    cursor:pointer;

}
.sidebar-widget{

    padding:32px;

    border-radius:16px;

    position:sticky;

    top:120px;

}
/* Career Apply Button */

.career-submit-btn{

    width:100% !important;

    height:52px;

    border:none;

    border-radius:10px;

    background:#f5b400;

    color:#1a1a1a;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:all .3s ease;

    box-shadow:
        0 8px 20px rgba(245,180,0,.25);

}

.career-submit-btn:hover{

    background:#ffbf00;

    transform:translateY(-2px);

    box-shadow:
        0 12px 28px rgba(245,180,0,.35);

}

.career-submit-btn:active{

    transform:translateY(0);

}
.career-submit-btn{

    position:relative;

    padding-right:40px;

}

.career-submit-btn::after{

    content:"→";

    position:absolute;

    right:16px;

    top:50%;

    transform:translateY(-50%);

}

.sidebar-widget .wpcf7-submit{

    width:100% !important;

    height:52px;

    border:none;

    border-radius:10px;

    background:#f5b400;

    color:#1a1a1a;

    font-size:15px;

    font-weight:700;

    cursor:pointer;

    transition:.3s;

    box-shadow:
        0 8px 20px rgba(245,180,0,.25);

}

.sidebar-widget .wpcf7-submit:hover{

    background:#ffbf00;

    transform:translateY(-2px);

}

.project-gallery-slider{

    margin-top:60px;

}

.project-gallery-slider h2{

    text-align:center;

    margin-bottom:30px;

}

.projectGallerySwiper{

    width:100%;

}

.projectGallerySwiper .swiper-slide{

    height:220px;

    overflow:hidden;

    border-radius:12px;

}

.projectGallerySwiper .swiper-slide img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}

.project-gallery-slider{

    margin-top:60px;

}

.projectGallerySwiper{

    padding-bottom:20px;

}

.projectGallerySwiper{
    height:520px;
}

.projectGallerySwiper .swiper-slide{
    height:240px !important;
}

.projectGallerySwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:12px;
}

@media(max-width:768px){

    .projectSwiper img{

        height:300px;

    }

}

.project-gallery-slider{

    margin-top:60px;

}

.projectGallerySwiper{

    overflow:hidden;

}

.projectGallerySwiper .swiper-slide{

    height:250px;

    cursor:pointer;

}

.projectGallerySwiper img{

    width:100%;

    height:100%;

    object-fit:cover;

    border-radius:12px;

    transition:.3s;

}

.projectGallerySwiper img:hover{

    transform:scale(1.03);

}

.news-grid{

    display:grid;

    grid-template-columns:
        repeat(4,1fr);

    gap:30px;

}

@media(max-width:1024px){

    .news-grid{

        grid-template-columns:
            repeat(2,1fr);

    }

}

@media(max-width:768px){

    .news-grid{

        grid-template-columns:1fr;

    }

}

.news-card{

    display:flex;

    flex-direction:column;

    height:100%;

    background:#fff;

    border-radius:16px;

    overflow:hidden;

    text-decoration:none;

    transition:.3s;

    border:1px solid
    var(--outline-variant);

}

.news-card:hover{

    transform:translateY(-4px);

}

.news-img{

    width:100%;

    height:220px;

    overflow:hidden;

}

.news-img img{

    width:100%;

    height:100%;

    object-fit:cover;

}

.news-card:hover .news-img img{

    transform:scale(1.05);

}

.news-date{

    padding:18px 24px 0;

    font-size:13px;

    font-weight:600;

    color:var(--primary);

    letter-spacing:.5px;

    text-transform:uppercase;

}

.news-card h4{

    padding:10px 24px 0;

    margin:0;

    font-size:20px;

    line-height:1.4;

    font-weight:700;

    color:var(--on-surface);

    min-height:84px;

    display:-webkit-box;

    -webkit-line-clamp:3;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.news-card p{

    padding:12px 24px 24px;

    margin:0;

    color:var(--on-surface-variant);

    font-size:15px;

    line-height:1.7;

    flex:1;

    display:-webkit-box;

    -webkit-line-clamp:4;

    -webkit-box-orient:vertical;

    overflow:hidden;

}