/* ════════════════════════════════════════════════════════════════
   VIETJOB - PREMIUM LIGHT STYLE SHEET (WHITE & ORANGE)
   ════════════════════════════════════════════════════════════════ */

:root {
  /* Colors */
  --or: #E8550A;       /* Primary Orange */
  --orl: #FF6B2B;      /* Light Orange */
  --orp: #FEF3EE;      /* Pale Orange tint */
  --ord: #C4420A;      /* Dark Orange */
  --gold: #C9A84C;     /* Gold Accent */
  --gold-l: #E8C96A;
  --gold-d: #9A7A2E;
  --ch: #0F172A;       /* Slate 900 for high-contrast dark texts */
  --w: #ffffff;
  
  /* Slate Grey scale */
  --g50: #F8FAFC;      /* Slate 50 background */
  --g100: #F1F5F9;     /* Slate 100 border/neutral */
  --g200: #E2E8F0;     /* Slate 200 border */
  --g300: #CBD5E1;     /* Slate 300 */
  --g400: #94A3B8;     /* Slate 400 text secondary */
  --g600: #475569;     /* Slate 600 body text */
  --g800: #1E293B;     /* Slate 800 headings */
  --g900: #0F172A;     /* Slate 900 title */

  /* Shadows */
  --shsm: 0 1px 3px rgba(15, 23, 42, 0.04), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shmd: 0 4px 18px rgba(15, 23, 42, 0.05), 0 2px 6px rgba(232, 85, 10, 0.02);
  --shlg: 0 12px 30px rgba(15, 23, 42, 0.08), 0 4px 12px rgba(232, 85, 10, 0.03);
  --shor: 0 8px 24px rgba(232, 85, 10, 0.16);
  --shorlg: 0 16px 40px rgba(232, 85, 10, 0.22);
  
  /* Corners & Transitions */
  --r: 10px;
  --rl: 18px;
  --ease: .3s cubic-bezier(.4, 0, .2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--g600);
  background: var(--w);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  box-sizing: border-box;
}

/* ── Typography and Titles ── */
.stag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--or) !important;
  background: var(--orp) !important;
  border: 1px solid rgba(232, 85, 10, 0.18) !important;
  border-radius: 50px;
  padding: 5px 14px;
  margin-bottom: 14px;
}

.stag::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--or) !important;
  flex-shrink: 0;
}

.stitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--g900);
}

.stitle span {
  color: var(--or) !important;
}

.ssub {
  color: var(--g600);
  font-size: 1rem;
  max-width: 540px;
  margin-top: 14px;
  line-height: 1.75;
}

.sc {
  text-align: center;
}

.sc .ssub {
  margin: 14px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: var(--ease);
  border: none;
  white-space: nowrap;
  line-height: 1;
}

.btn i {
  width: 16px;
  height: 16px;
}

.btn-p {
  background: linear-gradient(135deg, var(--or), var(--orl), var(--gold), var(--or)) !important;
  background-size: 300% 100% !important;
  color: var(--w) !important;
  animation: shimmer-p 4s linear infinite !important;
  box-shadow: var(--shor) !important;
  border: none !important;
}

@keyframes shimmer-p {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

.btn-p:hover {
  box-shadow: var(--shorlg) !important;
  transform: translateY(-3px) !important;
}

.btn-o {
  background: transparent;
  color: var(--or) !important;
  border: 2px solid var(--or) !important;
}

.btn-o:hover {
  background: var(--or) !important;
  color: var(--w) !important;
  transform: translateY(-2px);
  box-shadow: var(--shor);
}

.btn-w {
  background: var(--w) !important;
  color: var(--or) !important;
  box-shadow: var(--shsm);
}

.btn-w:hover {
  background: var(--orp) !important;
  transform: translateY(-2px);
  box-shadow: var(--shmd);
}

.btn-ch {
  background: var(--g800) !important;
  color: var(--w) !important;
  border: 1px solid var(--g200) !important;
}

.btn-ch:hover {
  background: var(--g900) !important;
  transform: translateY(-2px);
  box-shadow: var(--shmd);
}

/* ── Topbar ── */
.topbar {
  background: var(--g50) !important;
  color: var(--g600) !important;
  font-size: .78rem;
  padding: 8px 0;
  border-bottom: 1px solid var(--g100);
}

.topbar .ti {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar .ci {
  display: flex;
  gap: 20px;
}

.topbar .ci a {
  color: var(--g600) !important;
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.topbar .ci a:hover {
  color: var(--or) !important;
}

.topbar .ci a i {
  width: 14px;
  height: 14px;
  color: var(--or);
}

.lsw {
  display: flex;
  gap: 4px;
}

.lbtn {
  background: transparent;
  border: 2px solid transparent;
  padding: 3px 4px;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--ease);
  opacity: .5;
  filter: grayscale(.5) brightness(.9);
  line-height: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.lbtn.active,
.lbtn:hover {
  background: var(--g100) !important;
  border-color: var(--or) !important;
  opacity: 1;
  filter: none;
  transform: scale(1.15);
  box-shadow: var(--shsm);
}

.lbtn img {
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(0,0,0,.15);
}

/* ── Navbar ── */
#nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.96) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  border-bottom: 1px solid rgba(232, 85, 10, 0.08) !important;
  transition: box-shadow var(--ease);
}

#nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--or) 30%, var(--gold) 50%, var(--or) 70%, transparent);
  z-index: 1;
}

#nav.sc2 {
  box-shadow: var(--shmd);
}

.ni {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nlogo {
  display: flex;
  align-items: center;
  gap: 11px;
}

.liw {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(232, 85, 10, 0.03) !important;
  border: 1px solid rgba(232, 85, 10, 0.08) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}

.liw img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.lname {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--g900) !important;
}

.lname span {
  color: var(--or) !important;
}

.nlinks {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nlinks a {
  font-size: .87rem;
  font-weight: 600;
  color: var(--g600) !important;
  padding: 8px 14px;
  border-radius: 7px;
  transition: var(--ease);
}

.nlinks a:hover,
.nlinks a.act {
  color: var(--or) !important;
  background: var(--orp) !important;
}

.ncta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hbg {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  border-radius: 7px;
  transition: var(--ease);
}

.hbg:hover {
  background: var(--orp);
}

.hbg span {
  width: 22px;
  height: 2px;
  background: var(--g800) !important;
  border-radius: 2px;
  transition: var(--ease);
}

#mnav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(255, 255, 255, 0.98) !important;
  flex-direction: column;
  padding: 90px 28px 28px;
  gap: 6px;
  border-bottom: 1px solid var(--g200);
}

#mnav.open {
  display: flex;
}

#mnav a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--g800) !important;
  padding: 13px 0;
  border-bottom: 1px solid var(--g100) !important;
  transition: color .2s;
}

#mnav a:hover {
  color: var(--or) !important;
  background: var(--orp);
  padding-left: 8px;
  border-radius: 6px;
}

/* ── Hero Section (Light & Premium) ── */
#hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px !important;
  background: linear-gradient(140deg, #FFFBF9 0%, #FFF3EC 45%, #FFFFFF 100%) !important;
}

.hero-art {
  position: absolute;
  inset: 0;
  mask-image: radial-gradient(ellipse 70% 80% at 72% 45%, black, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 70% 80% at 72% 45%, black, transparent 72%);
  pointer-events: none;
  animation: hero-art-breathe 7s ease-in-out infinite alternate;
}

.hero-art svg {
  width: 100%;
  height: 100%;
}

@keyframes hero-art-breathe {
  from { opacity: .8; }
  to { opacity: 1; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-1 {
  top: -150px;
  right: -80px;
  width: 580px;
  height: 580px;
  background: radial-gradient(circle, rgba(232, 85, 10, 0.06), rgba(201, 168, 76, 0.02) 45%, transparent 70%);
  animation: orb-pulse 8s ease-in-out infinite;
}

.hero-orb-2 {
  bottom: -120px;
  left: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.03), transparent 70%);
  animation: orb-pulse 12s ease-in-out 2s infinite reverse;
}

@keyframes orb-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

.hinn {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orp) !important;
  border: 1px solid rgba(232, 85, 10, 0.15) !important;
  border-radius: 50px;
  padding: 7px 16px;
  font-size: .77rem;
  font-weight: 600;
  color: var(--or) !important;
  box-shadow: var(--shsm);
  margin-bottom: 22px;
}

.hbadge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--or) !important;
  box-shadow: 0 0 8px var(--or) !important;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.htitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--g900) !important;
  margin-bottom: 20px;
}

.htitle .hl {
  color: var(--or);
  position: relative;
}

.htitle .hl::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--or), var(--orl));
}

.hdesc {
  color: var(--g600) !important;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 520px;
}

.hacts {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Right side Hero card */
.hvis {
  position: relative;
}

.hcard {
  background: var(--w) !important;
  border-radius: var(--rl);
  box-shadow: var(--shlg) !important;
  padding: 28px;
  border: 1px solid var(--g200) !important;
}

.hcard-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--g100) !important;
}

.hcard-head h3 {
  font-size: .97rem;
  font-weight: 700;
  color: var(--g900) !important;
}

.hcard-head span {
  font-size: .76rem;
  color: var(--or) !important;
  font-weight: 700;
}

.mrow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mitem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  border-radius: var(--r);
  background: var(--g50) !important;
  border: 1px solid var(--g100) !important;
  transition: var(--ease);
}

.mitem:hover {
  border-color: rgba(232, 85, 10, 0.3) !important;
  background: var(--orp) !important;
  transform: translateX(4px);
}

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

.mic {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--or), var(--orl)) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--w) !important;
  font-size: .95rem;
  flex-shrink: 0;
}

.mic i {
  width: 18px;
  height: 18px;
}

.minfo strong {
  display: block;
  font-size: .82rem;
  font-weight: 700;
  color: var(--g900) !important;
}

.minfo span {
  font-size: .71rem;
  color: var(--g600) !important;
}

.mval {
  text-align: right;
}

.mval strong {
  display: block;
  font-size: .84rem;
  font-weight: 800;
  color: var(--or) !important;
}

.mval span {
  color: var(--g600) !important;
  font-size: .69rem;
}

.fbadge {
  position: absolute;
  background: var(--w) !important;
  border-radius: var(--r);
  box-shadow: var(--shmd) !important;
  padding: 11px 15px;
  border: 1px solid var(--g200) !important;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .76rem;
  font-weight: 600;
  color: var(--g800) !important;
}

.fbadge i {
  color: var(--or);
  width: 16px;
  height: 16px;
}

.fb1 {
  top: -18px;
  right: -18px;
}

.fb2 {
  bottom: 16px;
  left: -28px;
}

.fbn {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--or);
}

/* ── Clients Slider (Light Mode) ── */
#clients {
  padding: 44px 0;
  background: var(--g50) !important;
  border-top: 1px solid var(--g200) !important;
  border-bottom: 1px solid var(--g200) !important;
  overflow: hidden;
}

.clbl {
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--g600) !important;
  margin-bottom: 24px;
}

.ctwrap {
  overflow: hidden;
  position: relative;
}

.ctwrap::before,
.ctwrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
}

.ctwrap::before {
  left: 0;
  background: linear-gradient(to right, var(--g50), transparent);
}

.ctwrap::after {
  right: 0;
  background: linear-gradient(to left, var(--g50), transparent);
}

.ctrack {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: mq 55s linear infinite;
  width: max-content;
}

@keyframes mq {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.cn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .95rem;
  font-weight: 700;
  color: var(--g600) !important;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--ease);
}

.cn img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  flex-shrink: 0;
}

.cn:hover {
  color: var(--or) !important;
  transform: scale(1.08);
}

/* ── Stats Section (Light & Premium) ── */
#stats {
  padding: 68px 0;
  background: linear-gradient(135deg, #FFF9F6 0%, #FFF3EC 100%) !important;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(232, 85, 10, 0.05);
}

#stats::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 85, 10, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.sgd {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}

.si {
  text-align: center;
  padding: 28px 20px;
  border-right: 1px solid rgba(232, 85, 10, 0.08) !important;
}

.si:last-child {
  border-right: none !important;
}

.sn {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--g900) !important;
  line-height: 1;
  margin-bottom: 7px;
  text-shadow: none !important;
}

.sn span {
  color: var(--or) !important;
}

.sl {
  font-size: .8rem;
  color: var(--g600) !important;
  font-weight: 600;
}

/* ── Services Section ── */
#services {
  padding: 96px 0;
  background: var(--w);
}

.sgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.scard {
  padding: 32px 26px;
  border-radius: var(--rl);
  border: 1px solid var(--g200) !important;
  background: var(--w);
  transition: var(--ease);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.scard::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--or), var(--gold)) !important;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}

.scard:hover {
  transform: translateY(-8px) !important;
  box-shadow: var(--shlg) !important;
  border-color: transparent !important;
}

.scard:hover::before {
  transform: scaleX(1);
}

.sicon {
  width: 52px;
  height: 52px;
  border-radius: 13px;
  background: var(--orp) !important;
  color: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 18px;
  transition: var(--ease);
}

.sicon i {
  width: 24px;
  height: 24px;
}

.scard:hover .sicon {
  background: linear-gradient(135deg, var(--or), var(--orl)) !important;
  color: var(--w) !important;
  box-shadow: var(--shor) !important;
}

.scard h3 {
  font-size: 1.02rem;
  font-weight: 700;
  margin-bottom: 9px;
  color: var(--g900);
}

.scard p {
  font-size: .86rem;
  color: var(--g600);
  line-height: 1.7;
}

.slm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .8rem;
  font-weight: 600;
  color: var(--or);
  margin-top: 14px;
  transition: gap .2s;
}

.scard:hover .slm {
  gap: 9px;
}

/* ── Process Section ── */
#process {
  padding: 96px 0;
  background: var(--g50);
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}

.pgrid::before {
  content: '';
  position: absolute;
  top: 34px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--or), var(--gold), var(--or)) !important;
  z-index: 0;
}

.pstep {
  text-align: center;
  padding: 0 14px;
  position: relative;
  z-index: 1;
}

.pcirc {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--w);
  border: 3px solid var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  color: var(--or);
  font-size: 1.5rem;
  box-shadow: 0 0 0 7px var(--orp) !important;
  transition: var(--ease);
}

.pcirc i {
  width: 26px;
  height: 26px;
}

.pstep:hover .pcirc {
  background: linear-gradient(135deg, var(--or), var(--gold)) !important;
  color: var(--w) !important;
  box-shadow: 0 0 0 7px rgba(232, 85, 10, 0.12) !important;
  transform: scale(1.08);
}

.pnum {
  position: absolute;
  top: -5px;
  right: calc(50% - 44px);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or), var(--gold)) !important;
  color: var(--w) !important;
  font-size: .65rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pstep h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 7px;
}

.pstep p {
  font-size: .8rem;
  color: var(--g600);
  line-height: 1.65;
}

/* ── Industries Section ── */
#industries {
  padding: 96px 0;
  background: var(--w);
}

.igrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 52px;
}

.icard {
  padding: 26px 18px;
  border-radius: var(--r);
  border: 1px solid var(--g200) !important;
  text-align: center;
  transition: var(--ease);
  cursor: default;
  background: var(--w);
}

.icard:hover {
  background: linear-gradient(135deg, var(--or), var(--gold)) !important;
  border-color: transparent !important;
  transform: translateY(-6px) !important;
  box-shadow: var(--shorlg) !important;
}

.icard:hover h4,
.icard:hover p,
.icard:hover .ie {
  color: var(--w) !important;
}

.ie {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--or);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  transition: var(--ease);
}

.ie i {
  width: 32px;
  height: 32px;
}

.icard h4 {
  font-size: .86rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--g900);
  transition: var(--ease);
}

.icard p {
  font-size: .74rem;
  color: var(--g600);
  transition: var(--ease);
}

/* ── Why Choose Us ── */
#why {
  padding: 96px 0;
  background: var(--g50);
}

.winn {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.wlist {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 36px;
}

.witem {
  display: flex;
  gap: 18px;
}

.wchk {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--or), var(--gold)) !important;
  box-shadow: 0 4px 14px rgba(232, 85, 10, 0.2) !important;
  color: var(--w) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.wchk i {
  width: 20px;
  height: 20px;
}

.witem h4 {
  font-size: .9rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--g900);
}

.witem p {
  font-size: .83rem;
  color: var(--g600);
  line-height: 1.65;
}

.wvis {
  position: relative;
}

.wbigcard {
  background: var(--w) !important;
  border-radius: var(--rl);
  box-shadow: var(--shlg) !important;
  padding: 32px;
  border: 1px solid var(--g200) !important;
}

.wavs {
  display: flex;
  margin-bottom: 16px;
}

.wav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or), var(--orl));
  border: 3px solid var(--w);
  margin-right: -7px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  color: var(--w);
  font-weight: 700;
}

.wbigcard h3 {
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--g900);
}

.wbigcard > p {
  font-size: .84rem;
  color: var(--g600);
  margin-bottom: 16px;
}

.plist {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.pi label {
  display: flex;
  justify-content: space-between;
  font-size: .79rem;
  font-weight: 600;
  color: var(--g800);
  margin-bottom: 5px;
}

.pbar {
  height: 7px;
  background: var(--g100);
  border-radius: 4px;
  overflow: hidden;
}

.pf {
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--or), var(--gold)) !important;
  transition: width 1.2s cubic-bezier(.4, 0, .2, 1);
}

.satbadge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--or) !important;
  color: var(--w) !important;
  border-radius: var(--r);
  padding: 18px 22px;
  box-shadow: var(--shor) !important;
}

.satbadge .big {
  font-size: 1.8rem;
  font-weight: 800;
  line-height: 1;
}

.satbadge .sm {
  font-size: .7rem;
  opacity: .9;
}

/* ── Testimonials ── */
#testi {
  padding: 96px 0;
  background: var(--w);
}

.tgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 52px;
}

.tcard {
  background: var(--w);
  border: 1px solid var(--g200) !important;
  border-radius: var(--rl);
  padding: 28px;
  transition: var(--ease);
}

.tcard:hover {
  box-shadow: var(--shlg) !important;
  border-color: var(--or) !important;
  transform: translateY(-5px);
}

.tstars {
  color: var(--gold) !important;
  font-size: .88rem;
  margin-bottom: 13px;
}

.tquote {
  font-size: .86rem;
  color: var(--g600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.tquote::before {
  content: '\201C';
  color: var(--or);
  font-size: 1.4rem;
  line-height: 0;
  vertical-align: -.3em;
}

.trev {
  display: flex;
  align-items: center;
  gap: 11px;
}

.tav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--or), var(--orl));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .86rem;
  color: var(--w);
  font-weight: 700;
  flex-shrink: 0;
}

.trev strong {
  display: block;
  font-size: .84rem;
  font-weight: 700;
  color: var(--g900);
}

.trev span {
  font-size: .74rem;
  color: var(--g600);
}

.ttag {
  display: inline-block;
  background: var(--orp);
  color: var(--or);
  font-size: .67rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  margin-top: 3px;
}

/* ── CTA Banner ── */
#cta {
  padding: 96px 0;
  background: linear-gradient(135deg, #FF6B2B 0%, #E8550A 100%) !important;
  position: relative;
  overflow: hidden;
}

#cta::before {
  content: '';
  position: absolute;
  top: -160px;
  right: -80px;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08) !important;
  pointer-events: none;
}

#cta::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04) !important;
  pointer-events: none;
}

.ctain {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ctain h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 800;
  color: var(--w) !important;
  margin-bottom: 18px;
}

.ctain p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.ctaacts {
  display: flex;
  gap: 13px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── Contact Section ── */
#contact {
  padding: 96px 0;
  background: var(--g50);
}

.coinn {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}

.coib {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 36px;
}

.coii {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.coic {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 11px;
  background: var(--orp);
  color: var(--or);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.coic i {
  width: 20px;
  height: 20px;
}

.coii h4 {
  font-size: .87rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--g900);
}

.coii p {
  font-size: .83rem;
  color: var(--g600);
}

.cform {
  background: var(--w);
  border-radius: var(--rl);
  padding: 36px;
  box-shadow: var(--shmd);
  border: 1px solid var(--g100);
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ff {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.ff.full {
  grid-column: 1/-1;
}

.ff label {
  font-size: .79rem;
  font-weight: 600;
  color: var(--g700);
}

.ff input,
.ff select,
.ff textarea {
  width: 100%;
  min-width: 0;
  padding: 11px 14px;
  border: 1.5px solid var(--g200);
  border-radius: var(--r);
  font-family: 'Inter', sans-serif;
  font-size: .87rem;
  color: var(--g800);
  outline: none;
  transition: border-color .2s;
  background: var(--w);
  box-sizing: border-box;
}

.ff input:focus,
.ff select:focus,
.ff textarea:focus {
  border-color: var(--or);
  box-shadow: 0 0 0 3px rgba(232, 85, 10, .08);
}

.ff textarea {
  resize: vertical;
  min-height: 90px;
}

.fsub {
  margin-top: 6px;
  width: 100%;
  justify-content: center;
}

.fnote {
  font-size: .74rem;
  color: var(--g600);
  text-align: center;
  margin-top: 10px;
}

/* ── Footer (Premium Slate Dark) ── */
footer {
  background: #0B0F19 !important; /* Premium Slate-Black footer */
  color: rgba(255, 255, 255, .6) !important;
  padding: 60px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
}

.fgrid2 {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(255, 255, 255, .05) !important;
}

.fbrand .lname {
  color: #fff !important;
  margin-top: 14px;
}

.fbrand .lname span {
  color: var(--or) !important;
}

.fbrand p {
  font-size: .83rem;
  margin-top: 10px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.5) !important;
}

.fsocs {
  display: flex;
  gap: 9px;
  margin-top: 22px;
}

.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(255, 255, 255, .05) !important;
  color: rgba(255, 255, 255, .6) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .84rem;
  transition: var(--ease);
}

.fsoc i {
  width: 16px;
  height: 16px;
}

.fsoc:hover {
  background: var(--or) !important;
  color: var(--w) !important;
  box-shadow: 0 4px 14px rgba(232, 85, 10, 0.3) !important;
  transform: translateY(-2px);
}

.fcol h5 {
  font-size: .79rem;
  font-weight: 700;
  color: var(--w) !important;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.fcol ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fcol ul li a {
  font-size: .83rem;
  color: rgba(255, 255, 255, 0.5) !important;
  transition: color .2s;
}

.fcol ul li a:hover {
  color: var(--or) !important;
}

.fbot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: .76rem;
  border-color: rgba(255, 255, 255, .05) !important;
}

.fbot a {
  color: var(--or);
  font-weight: 600;
}

/* ── Consult Popup ── */
#consultPopup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 310px;
  background: linear-gradient(135deg, #1E293B, #0F172A) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35) !important;
  z-index: 10000;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1);
  transform: translateY(120%);
}

#consultPopup.show {
  transform: translateY(0);
}

#consultPopup .cp-head {
  padding: 16px 16px 11px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  position: relative;
  z-index: 1;
}

#consultPopup .cp-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

#consultPopup .cp-logo img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

#consultPopup .cp-logo-txt h4 {
  font-size: .83rem;
  font-weight: 700;
  color: #fff;
}

#consultPopup .cp-logo-txt span {
  font-size: .56rem;
  color: rgba(255, 255, 255, .5);
  display: block;
}

#consultPopup .cp-close {
  background: rgba(255, 255, 255, .15);
  border: 1px solid rgba(255, 255, 255, .2);
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  cursor: pointer;
  font-size: .7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s;
}

#consultPopup .cp-close:hover {
  background: rgba(255,255,255,.3);
}

#consultPopup .cp-body {
  margin: 0 14px 14px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 14px;
  position: relative;
  z-index: 1;
}

#consultPopup .cp-body-title {
  font-size: .78rem;
  font-weight: 800;
  color: var(--or) !important;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 12px;
  text-align: center;
}

#consultPopup .cp-field {
  position: relative;
  margin-bottom: 9px;
}

#consultPopup .cp-field i,
#consultPopup .cp-field svg {
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
  color: var(--g600);
  pointer-events: none;
}

#consultPopup input {
  width: 100%;
  padding: 10px 12px 10px 34px;
  border: 1.5px solid var(--g200);
  border-radius: 9px;
  font-size: .85rem;
  box-sizing: border-box;
  outline: none;
  color: var(--g900);
  background: var(--g50);
  transition: .2s;
}

#consultPopup input:focus {
  border-color: var(--or);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 85, 10, .1);
}

#consultPopup .cp-btn {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--or), var(--orl));
  color: #fff;
  border: none;
  border-radius: 9px;
  font-weight: 800;
  font-size: .88rem;
  cursor: pointer;
  margin-top: 4px;
  box-shadow: 0 4px 12px rgba(232, 85, 10, .3);
  transition: .2s;
}

#consultPopup .cp-btn:hover {
  box-shadow: 0 6px 18px rgba(232, 85, 10, .45);
  transform: translateY(-1px);
}

#consultPopup .cp-footer {
  padding: 0 14px 14px;
  text-align: center;
  font-size: .68rem;
  color: rgba(255, 255, 255, .7);
  position: relative;
  z-index: 1;
}

/* ── Floating Contact Buttons ── */
.float-btns {
  position: fixed;
  bottom: 28px;
  right: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 9999;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
  border: none;
  transition: transform .2s, box-shadow .2s;
  text-decoration: none;
  position: relative;
}

.float-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.float-btn .ftip {
  position: absolute;
  right: 62px;
  background: var(--ch);
  color: #fff;
  padding: 5px 12px;
  border-radius: 8px;
  font-size: .78rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
  box-shadow: var(--shmd);
}

.float-btn:hover .ftip {
  opacity: 1;
}

.float-btn-zalo {
  background: #0068FF;
}

.float-btn-phone {
  background: var(--or) !important;
  box-shadow: 0 6px 24px rgba(232,85,10,.3) !important;
}

.float-btn-top {
  background: var(--w) !important;
  border: 1.5px solid var(--g200) !important;
  font-size: 1.1rem;
  width: 42px;
  height: 42px;
  opacity: 0;
  transition: opacity .3s, transform .2s;
  pointer-events: none;
}

.float-btn-top.vis {
  opacity: 1;
  pointer-events: auto;
}

.pulse-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid #0068FF;
  animation: pulse-z 2s ease-out infinite;
}

.pulse-ring-or {
  border-color: var(--or) !important;
}

@keyframes pulse-z {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.7); opacity: 0; }
}

/* ── Teaser Grid (Homepage) ── */
.site-teaser-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 48px;
}

.fadein-card {
  display: block;
  text-decoration: none;
  background: var(--w);
  border: 1px solid var(--g200);
  border-radius: var(--rl);
  padding: 28px 20px;
  text-align: center;
  transition: var(--ease);
}

.fadein-card i {
  width: 36px;
  height: 36px;
  color: var(--or);
  margin: 0 auto 12px;
  transition: var(--ease);
}

.fadein-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shlg);
  border-color: var(--orl);
}

.fadein-card:hover i {
  transform: scale(1.15);
  color: var(--gold);
}

/* FAQ section styles */
.faq-item {
  background: var(--g50) !important;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--g200) !important;
  transition: box-shadow .2s;
  margin-bottom: 12px;
}
.faq-item:hover {
  box-shadow: var(--shmd) !important;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--g900) !important;
  gap: 12px;
}
.faq-q .faq-icon {
  font-size: 1.1rem;
  color: var(--or);
  min-width: 20px;
  transition: transform .3s;
  display: inline-block;
}
.faq-q.open .faq-icon {
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-a.open {
  max-height: 400px;
  padding: 0 24px 20px;
}
.faq-a p {
  color: var(--g600) !important;
  line-height: 1.8;
  margin: 0;
  font-size: .95rem;
}

/* Photo card hover */
.photo-card:hover img {
  transform: scale(1.06);
}


/* ── Responsive Rules ── */
@media(max-width: 1024px) {
  .sgrid {
    grid-template-columns: repeat(2, 1fr);
  }
  .igrid {
    grid-template-columns: repeat(3, 1fr);
  }
  .sgd {
    grid-template-columns: repeat(2, 1fr);
  }
  .si:nth-child(2) {
    border-right: none !important;
  }
  .fgrid2 {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  #teamGrid { grid-template-columns: repeat(2, 1fr) !important; }
  .cvg { grid-template-columns: repeat(3, 1fr) !important; }
}

@media(max-width: 768px) {
  .topbar .ti {
    justify-content: center;
  }
  .topbar .ci {
    display: none !important;
  }
  .nlinks, .ncta {
    display: none !important;
  }
  .hbg {
    display: flex;
  }
  #hero {
    background: linear-gradient(rgba(255, 249, 246, 0.95), rgba(255, 249, 246, 0.95)),
                url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=900&q=70&fm=webp')
                center / cover no-repeat !important;
  }
  .hinn {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .hvis {
    order: -1;
  }
  .hstats {
    gap: 18px;
  }
  .sgrid {
    grid-template-columns: 1fr;
  }
  .pgrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .pgrid::before {
    display: none;
  }
  .winn {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .trev {
    align-items: flex-start;
  }
  .tgrid {
    grid-template-columns: 1fr;
  }
  .coinn {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .fgrid2 {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  #about-us, #activities, #faq {
    padding: 60px 0 !important;
  }
  #faqList {
    margin-top: 32px !important;
  }
  .faq-q {
    font-size: .92rem !important;
    padding: 16px 18px !important;
  }
  #contact iframe {
    height: 180px !important;
  }
  .float-btns {
    bottom: 16px !important;
    right: 14px !important;
    gap: 8px !important;
  }
  .float-btn {
    width: 46px !important;
    height: 46px !important;
  }
  .float-btn .ftip {
    display: none !important;
  }
  .container {
    padding: 0 16px;
  }
  .sgd {
    gap: 16px !important;
  }
  section[style*="background-attachment:fixed"] {
    background-attachment: scroll !important;
  }
  .stitle {
    font-size: clamp(1.5rem, 5vw, 2.2rem);
  }
  #consultPopup {
    bottom: 0 !important;
    right: 0 !important;
    left: 0 !important;
    width: 100% !important;
    border-radius: 18px 18px 0 0 !important;
    transform: translateY(110%) !important;
  }
  #consultPopup.show {
    transform: translateY(0) !important;
  }
  #consultPopup .cp-head {
    padding: 20px 20px 14px;
  }
  #consultPopup .cp-body {
    margin: 0 16px 16px;
    padding: 18px 16px;
  }
  #consultPopup input {
    font-size: 1rem;
    padding: 13px 14px 13px 38px;
  }
  #consultPopup .cp-btn {
    padding: 14px;
    font-size: .95rem;
  }
  #consultPopup .cp-handle {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, .3);
    border-radius: 2px;
    margin: 10px auto 0;
  }
  /* ── Mobile hero: dark branded gradient ── */
  #hero {
    background: linear-gradient(150deg, #0C1445 0%, #1A2860 55%, #0E1A3A 100%) !important;
    padding: 64px 0 52px !important;
  }
  .hero-art { display: none; }
  .hero-orb-1 { background: radial-gradient(circle, rgba(249,115,22,.25), transparent 70%) !important; }
  .hero-orb-2 { background: radial-gradient(circle, rgba(201,168,76,.12), transparent 70%) !important; }
  .htitle { color: #fff !important; }
  .htitle .hl { color: #f97316 !important; }
  .hdesc { color: rgba(255,255,255,.78) !important; }
  .hbadge {
    background: rgba(255,255,255,.1) !important;
    border-color: rgba(255,255,255,.18) !important;
    color: rgba(255,255,255,.9) !important;
  }
  .hbadge .dot { background: var(--or) !important; box-shadow: 0 0 0 3px rgba(249,115,22,.25) !important; }
  .hcard {
    background: rgba(255,255,255,.08) !important;
    border-color: rgba(255,255,255,.14) !important;
    backdrop-filter: blur(10px);
  }
  .hcard-head { border-color: rgba(255,255,255,.12) !important; }
  .hcard-head h3 { color: #fff !important; }
  .minfo strong { color: #fff !important; }
  .minfo span { color: rgba(255,255,255,.65) !important; }
  .mval strong { color: #f97316 !important; }
  .mval span { color: rgba(255,255,255,.6) !important; }
  .mic { background: rgba(255,255,255,.12) !important; color: var(--or) !important; }
  .mitem { border-color: rgba(255,255,255,.1) !important; }
  /* ── Mobile witem: proper card styling ── */
  .witem {
    background: #fff !important;
    border-radius: 14px !important;
    padding: 18px 16px !important;
    box-shadow: 0 3px 16px rgba(15,23,42,.08), 0 1px 4px rgba(232,85,10,.05) !important;
    border-left: 4px solid var(--or) !important;
    gap: 14px !important;
    align-items: flex-start !important;
  }
  .witem h4 { font-size: .97rem !important; }
  .wlist { gap: 14px !important; margin-top: 24px !important; }
  .wchk { min-width: 40px !important; }
  #why { background: #f1f5fd !important; }
  /* ── Responsive grids (gioi-thieu) ── */
  .vmg { grid-template-columns: 1fr !important; }
  .cvg { grid-template-columns: repeat(2, 1fr) !important; }
  #teamGrid { grid-template-columns: repeat(2, 1fr) !important; }
  #aboutMiniStats { grid-template-columns: 1fr !important; }
  .about-img-stack { display: none !important; }
  /* ── Page banners ── */
  .page-banner { padding: 70px 0 50px !important; }
  #hero h1, .hinn h1 { font-size: clamp(1.6rem, 6vw, 2.4rem) !important; }
  /* ── scard mobile: add card depth ── */
  .scard {
    border-radius: 16px !important;
    box-shadow: 0 4px 20px rgba(15,23,42,.09) !important;
    border: none !important;
    padding: 24px 20px !important;
  }
  /* ── section background variation ── */
  #services { background: #fff !important; }
  #about-us { background: linear-gradient(160deg, #f8f9ff 0%, #fff 100%) !important; }
}

@media(max-width: 480px) {
  .pgrid {
    grid-template-columns: 1fr;
  }
  .igrid {
    grid-template-columns: repeat(2, 1fr);
  }
  #activities .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(5, 160px) !important;
  }
  #about-us .container > div:last-child img:nth-child(2) {
    display: none !important;
  }
  #about-us .container > div:last-child img:first-child {
    width: 100% !important;
    height: 220px !important;
  }
  #teamGrid { grid-template-columns: 1fr !important; }
  .cvg { grid-template-columns: 1fr !important; }
  .vmg { gap: 14px !important; }
  #aboutMiniStats { gap: 10px !important; }
}

/* Timeline, projects, news page adjustments */
.timeline {
  border-left: 1px solid var(--or) !important;
  margin-top: 48px;
  padding-left: 28px;
}
.tline-item {
  position: relative;
  margin-bottom: 40px;
}
.tline-dot {
  position: absolute;
  left: -37px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--or) !important;
  border: 4px solid var(--w);
  box-shadow: var(--shsm);
}
.tline-item:hover .tline-dot {
  background: var(--gold) !important;
  transform: scale(1.2);
}
.pcard {
  background: var(--w);
  border: 1px solid var(--g200);
  border-radius: var(--rl);
  overflow: hidden;
  transition: var(--ease);
}
.pcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shlg);
}
.pcard-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}
.pcard:hover .pcard-img img {
  transform: scale(1.08);
}
.pcard-body {
  padding: 24px;
}
.pcard-tag {
  background: var(--orp);
  color: var(--or);
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 12px;
}
.pcard-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--g900);
  margin-bottom: 8px;
}
.pcard-desc {
  font-size: .83rem;
  color: var(--g600);
  line-height: 1.6;
}

/* Lucide Icon general styling */
i[data-lucide] {
  display: inline-block;
  width: 18px;
  height: 18px;
  stroke-width: 2;
  stroke: currentColor;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: middle;
}
.mic i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}
.wchk i[data-lucide] {
  width: 20px;
  height: 20px;
  stroke-width: 2.5;
}
.sicon i[data-lucide] {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}
.pcirc i[data-lucide] {
  width: 26px;
  height: 26px;
  stroke-width: 2.2;
}
.ie i[data-lucide] {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
}
.fadein-card i[data-lucide] {
  width: 36px;
  height: 36px;
  stroke-width: 1.8;
}
