/*
Theme Name: Naseer Hilal Shawkat
Theme URI: #
Author: Custom Theme
Description: Professional executive profile theme for Naseer Hilal Shawkat
Version: 1.0.0
Requires at least: 5.8
Requires PHP: 7.4
License: GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: naseer-theme
Tags: rtl-language, right-to-left, custom-menu, featured-images, custom-post-types
*/

/* ─── CSS VARIABLES ─────────────────────────────────────────────── */
:root {
  --navy-950: #050d1a;
  --navy-900: #081222;
  --navy-800: #0d1f3c;
  --navy-700: #112a52;
  --navy-600: #163468;
  --blue-500: #1a4a8a;
  --blue-400: #1e5fad;
  --blue-300: #2272d0;
  --accent:   #2e87f0;
  --accent-bright: #4fa3ff;
  --gold:     #c8a84b;
  --white:    #ffffff;
  --white-80: rgba(255,255,255,0.80);
  --white-50: rgba(255,255,255,0.50);
  --white-20: rgba(255,255,255,0.20);
  --white-10: rgba(255,255,255,0.10);
  --white-06: rgba(255,255,255,0.06);
  --card-bg:  rgba(13, 31, 60, 0.85);
  --border:   rgba(46,135,240,0.25);
  --shadow:   0 8px 40px rgba(0,0,0,0.45);
  --radius:   14px;
  --header-h: 72px;
}

/* ─── RESET ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--navy-950);
  color: var(--white);
  direction: ltr;        /* default; overridden below for RTL languages */
  overflow-x: hidden;
  line-height: 1.7;
}
/* WordPress adds .rtl to <body> when the active language is RTL (e.g. Arabic) */
body.rtl { direction: rtl; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── SCROLLBAR ─────────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-900); }
::-webkit-scrollbar-thumb { background: var(--blue-400); border-radius: 3px; }

/* ─── BACKGROUND MESH ───────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 80% 10%, rgba(30,95,173,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 30% at 10% 80%, rgba(46,135,240,0.10) 0%, transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  z-index: -1;
  pointer-events: none;
}

/* ─── HEADER ────────────────────────────────────────────────────── */
#header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  height: var(--header-h);
  background: rgba(5, 13, 26, 0.92);
  backdrop-filter: blur(16px) saturate(1.5);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.5); }
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header-logo {
  font-family: 'Cairo', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  color: var(--white);
  white-space: nowrap;
  letter-spacing: 0;
}
.header-logo span { color: var(--accent-bright); }
.nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white-80);
  padding: 7px 14px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav a:hover, .nav a.active {
  color: var(--white);
  background: var(--white-10);
}
.nav a.active { color: var(--accent-bright); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.3s;
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h); right: 0; left: 0;
  background: rgba(5,13,26,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 20px 20px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 600;
  color: var(--white-80); padding: 12px 16px;
  border-radius: 10px; transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover { background: var(--white-10); color: var(--white); }

/* ─── HERO ──────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  padding-top: var(--header-h);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg-accent {
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(22,52,104,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 28px 60px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content { order: 1; }
.hero-tag {
  display: inline-block;
  background: rgba(46,135,240,0.15);
  border: 1px solid rgba(46,135,240,0.4);
  color: var(--accent-bright);
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}
.hero-name {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-title {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 600;
  color: var(--accent-bright);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1rem;
  color: var(--white-80);
  line-height: 1.85;
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-300), var(--accent));
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(46,135,240,0.35);
  display: inline-block;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(46,135,240,0.5); }
.btn-outline {
  background: transparent;
  color: var(--white);
  font-family: 'Cairo', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--white-10); border-color: var(--accent); }

/* Hero Photo */
.hero-photo-wrap {
  order: 2;
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-photo-ring {
  position: absolute; inset: -12px;
  border-radius: 28px;
  border: 1px solid rgba(46,135,240,0.35);
  pointer-events: none;
}
.hero-photo-ring-2 {
  position: absolute; inset: -24px;
  border-radius: 36px;
  border: 1px solid rgba(46,135,240,0.15);
  pointer-events: none;
}
.hero-photo {
  padding: 20px;
  width: 100%; height: 100%;
  border-radius: 20px;
  background: linear-gradient(145deg, var(--navy-700), var(--blue-500));
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 60px rgba(46,135,240,0.15);
  position: relative;
}
.hero-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,26,0.6) 100%);
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  background: linear-gradient(135deg, var(--accent), var(--blue-300));
  border-radius: 14px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  text-align: center;
}
.hero-badge-num { font-size: 1.5rem; font-weight: 900; line-height: 1; }
.hero-badge-lbl { font-size: 0.72rem; color: var(--white-80); font-weight: 600; }

/* Scroll indicator */
.scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: 0.5; animation: bounce 2s infinite;
}
.scroll-hint span { font-size: 0.72rem; color: var(--white-80); font-weight: 600; }
.scroll-hint svg { color: var(--accent-bright); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ─── SECTION COMMONS ────────────────────────────────────────────── */
section {
  padding: 90px 0;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
}
.section-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
}
.section-icon {
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue-400), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(46,135,240,0.35);
}
.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--white);
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, var(--border), transparent);
  margin-bottom: 48px;
}

/* ─── ABOUT ──────────────────────────────────────────────────────── */
#about { background: transparent; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.about-text {
  font-size: 1.02rem;
  color: var(--white-80);
  line-height: 1.9;
}
.about-text p + p { margin-top: 16px; }
.about-stats {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.stat-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.stat-card::before {
  content: '';
  position: absolute; top: 0; right: 0; left: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--blue-300));
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--accent-bright); }
.stat-lbl {
  font-size: 0.9rem;
  color: var(--white-80);
  font-weight: 600;
}

/* ─── EXPERIENCE ─────────────────────────────────────────────────── */
#experience { background: linear-gradient(180deg, transparent, rgba(13,31,60,0.3) 50%, transparent); }
.exp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}
.exp-header {
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  padding: 32px 36px;
  display: flex;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--border);
}
.exp-logo {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
  overflow: hidden;
}
.exp-logo img { width: 100%; height: 100%; object-fit: cover; }
.exp-role {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 4px;
}
.exp-company { font-size: 0.95rem; color: var(--accent-bright); font-weight: 600; }
.exp-body { padding: 36px; }
.resp-title {
  font-size: 1rem; font-weight: 800; color: var(--white);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.resp-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.resp-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }
.resp-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--white-80);
}
.resp-num {
  min-width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--blue-300));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem; font-weight: 900; color: var(--white);
  flex-shrink: 0;
}
.companies-title {
  font-size: 1rem; font-weight: 800; color: var(--white);
  margin-bottom: 20px; display: flex; align-items: center; gap: 10px;
}
.companies-title::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.companies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.company-chip {
  background: rgba(46,135,240,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.company-chip:hover {
  background: rgba(46,135,240,0.16);
  border-color: rgba(46,135,240,0.5);
  transform: translateX(-4px);
}
.company-chip-icon {
  padding:3px;
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.company-chip-icon img { width: 100%; height: 100%; object-fit: cover; border-radius: 10px; }
.company-chip-num {
	
  font-size: 0.75rem; font-weight: 900;
  color: var(--accent-bright); margin-bottom: 2px;
}
.company-chip-name {
  font-size: 0.88rem; font-weight: 700; color: var(--white);
  margin-bottom: 2px;
}
.company-chip-sub { font-size: 0.76rem; color: var(--white-50); }

/* ─── ACHIEVEMENTS ───────────────────────────────────────────────── */
#achievements { background: transparent; }
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.achieve-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.achieve-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(46,135,240,0.5);
}
.achieve-card.wide { grid-column: span 2; }
.achieve-img {
  height: 180px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.achieve-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,13,26,0.7) 100%);
}
.achieve-img img { width: 100%; height: 100%; object-fit: cover; }
.achieve-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: linear-gradient(135deg, var(--accent), var(--blue-300));
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.achieve-content { padding: 22px 22px 24px; }
.achieve-title { font-size: 1rem; font-weight: 800; color: var(--white); margin-bottom: 8px; }
.achieve-sub { font-size: 0.85rem; color: var(--white-50); margin-bottom: 14px; }
.achieve-stats { display: flex; gap: 20px; flex-wrap: wrap; }
.achieve-stat { display: flex; align-items: center; gap: 7px; }
.achieve-stat-icon { font-size: 1rem; }
.achieve-stat-text { font-size: 0.85rem; color: var(--white-80); font-weight: 700; }
.achieve-progress { margin-top: 12px; }
.progress-label {
  display: flex; justify-content: space-between;
  font-size: 0.78rem; color: var(--white-50); margin-bottom: 6px;
}
.progress-bar {
  height: 6px; background: rgba(255,255,255,0.1); border-radius: 3px; overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-bright));
  border-radius: 3px;
  transition: width 1.5s ease;
  width: 0;
}

/* Bottom achieve row items */
.achieve-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.achieve-row-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, border-color 0.3s;
}
.achieve-row-card:hover { transform: translateY(-4px); border-color: rgba(46,135,240,0.5); }
.achieve-row-icon {
  font-size: 2rem; flex-shrink: 0;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.achieve-row-title { font-size: 0.95rem; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.achieve-row-sub { font-size: 0.82rem; color: var(--white-50); }

/* ─── SKILLS ─────────────────────────────────────────────────────── */
#skills { background: linear-gradient(180deg, transparent, rgba(13,31,60,0.4) 50%, transparent); }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.skill-chip {
  background: rgba(46,135,240,0.08);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  transition: background 0.2s, border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  cursor: default;
}
.skill-chip:hover {
  background: rgba(46,135,240,0.18);
  border-color: rgba(46,135,240,0.55);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(46,135,240,0.2);
}
.skill-check {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--accent), var(--blue-300));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; flex-shrink: 0;
}

/* ─── LANGUAGE DROPDOWN ──────────────────────────────────────────── */
.lang-dropdown { position: relative; }

.lang-dropdown-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: rgba(46,135,240,0.12);
  border: 1px solid rgba(46,135,240,0.35);
  border-radius: 8px;
  color: var(--accent-bright);
  font-family: 'Cairo', 'Tajawal', sans-serif;
  font-size: 0.82rem; font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}
.lang-dropdown-btn:hover {
  background: rgba(46,135,240,0.22);
  border-color: var(--accent);
}
.lang-dropdown-btn img { width: 18px; height: 13px; border-radius: 2px; object-fit: cover; }

.lang-chevron { flex-shrink: 0; transition: transform 0.25s ease; }
.lang-dropdown.open .lang-chevron { transform: rotate(180deg); }

.lang-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-end: 0;   /* right in LTR, left in RTL — aligns with button edge */
  min-width: 160px;
  list-style: none;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0,0,0,0.55);
  z-index: 2000;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.lang-dropdown.open .lang-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.lang-dropdown-menu li { border-bottom: 1px solid rgba(255,255,255,0.05); }
.lang-dropdown-menu li:last-child { border-bottom: none; }

.lang-dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px;
  font-size: 0.88rem; font-weight: 600;
  color: var(--white-80);
  transition: background 0.15s, color 0.15s;
}
.lang-dropdown-menu a:hover { background: var(--white-10); color: var(--white); }
.lang-dropdown-menu a.lang-current {
  color: var(--accent-bright);
  background: rgba(46,135,240,0.1);
}
.lang-dropdown-menu a img { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }
.lang-check { margin-inline-start: auto; opacity: 0.8; }

/* Mobile language switcher — flat row, more touch-friendly */
.mobile-lang-switcher {
  border-top: 1px solid var(--border);
  padding: 14px 16px 6px;
  margin-top: 8px;
}
.mobile-lang-switcher > span {
  display: block;
  font-size: 0.75rem; font-weight: 700;
  color: var(--white-50);
  letter-spacing: 0.5px;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.mobile-lang-list { display: flex; gap: 8px; flex-wrap: wrap; }
.mobile-lang-list a {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.9rem; font-weight: 700;
  color: var(--white-80);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.mobile-lang-list a:hover,
.mobile-lang-list a.lang-current {
  background: rgba(46,135,240,0.15);
  color: var(--accent-bright);
  border-color: rgba(46,135,240,0.4);
}
.mobile-lang-list img { width: 20px; height: 14px; border-radius: 2px; object-fit: cover; }

/* ─── NEWS PAGE ──────────────────────────────────────────────────── */
.news-page-hero {
  padding: calc(var(--header-h) + 60px) 0 60px;
  text-align: center;
}
.news-page-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}
.news-page-sub {
  font-size: 1rem;
  color: var(--white-50);
  font-weight: 600;
}
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-bottom: 80px;
}
.news-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  border-color: rgba(46,135,240,0.5);
}
.news-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy-700), var(--blue-500));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem;
  position: relative;
  overflow: hidden;
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; }
.news-card-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,26,0.6) 100%);
}
.news-card-date {
  position: absolute; top: 12px; right: 12px; z-index: 1;
  background: linear-gradient(135deg, var(--accent), var(--blue-300));
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 700;
}
.news-card-content { padding: 22px 22px 26px; }
.news-card-title {
  font-size: 1.05rem; font-weight: 800; color: var(--white);
  margin-bottom: 10px; line-height: 1.5;
}
.news-card-excerpt {
  font-size: 0.88rem; color: var(--white-50);
  line-height: 1.7; margin-bottom: 18px;
}
.news-card-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 700;
  color: var(--accent-bright);
  transition: gap 0.2s;
}
.news-card-link:hover { gap: 10px; }
.news-no-posts {
  grid-column: 1/-1; text-align: center;
  padding: 60px 0; color: var(--white-50); font-size: 1rem;
}

/* ─── SINGLE POST ────────────────────────────────────────────────── */
.single-hero {
  padding: calc(var(--header-h) + 60px) 0 0;
}
.single-hero-img {
  width: 100%; max-height: 450px; object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 40px;
  border: 1px solid var(--border);
}
.single-meta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-bottom: 24px;
}
.single-meta-date {
  background: rgba(46,135,240,0.15);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 0.82rem; font-weight: 700; color: var(--accent-bright);
}
.single-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900; line-height: 1.3;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-bright) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.single-content {
  font-size: 1rem; color: var(--white-80); line-height: 2;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 44px;
  backdrop-filter: blur(10px);
  margin-bottom: 60px;
}
.single-content h2, .single-content h3 {
  color: var(--white); margin: 24px 0 12px; font-weight: 800;
}
.single-content p { margin-bottom: 16px; }
.single-content a { color: var(--accent-bright); }
.single-content img { border-radius: 10px; margin: 20px 0; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent-bright); font-size: 0.9rem; font-weight: 700;
  margin-bottom: 32px;
  transition: gap 0.2s;
}
.back-link:hover { gap: 12px; }

/* ─── PAGINATION ────────────────────────────────────────────────── */
.naseer-pagination {
  display: flex; justify-content: center; gap: 8px;
  padding: 40px 0 80px; flex-wrap: wrap;
}
.naseer-pagination .page-numbers {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--white-80);
  font-size: 0.9rem; font-weight: 700;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.naseer-pagination .page-numbers:hover,
.naseer-pagination .page-numbers.current {
  background: rgba(46,135,240,0.2);
  border-color: var(--accent);
  color: var(--accent-bright);
}

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--navy-900);
  border-top: 1px solid var(--border);
  padding: 24px 28px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--white-50);
  font-weight: 600;
  letter-spacing: 0.3px;
}
footer span { color: var(--accent-bright); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(1) { transition-delay: 0.0s; }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-content { order: 2; }
  .hero-photo-wrap { order: 1; }
  .hero-photo { width: 100%; height: 100%; margin: 0 auto; }
  .hero-desc { max-width: 100%; margin-bottom: 28px; }
  .hero-cta { justify-content: center; }
  .hero-badge { bottom: -12px; right: 0; }
  .about-grid { grid-template-columns: 1fr; }
  .about-stats { flex-direction: row; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 62px; }
  section { padding: 60px 0; }
  .nav { display: none; }
  .hamburger { display: flex; }
  .about-stats { flex-direction: row; gap: 12px; }
  .stat-card { padding: 18px 14px; }
  .stat-num { font-size: 2rem; }
  .companies-grid { grid-template-columns: 1fr; }
  .achieve-grid { grid-template-columns: 1fr !important; }
  .achieve-card.wide { grid-column: span 1; }
  .achieve-row { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .exp-header { padding: 24px 20px; flex-direction: column; text-align: center; }
  .exp-body { padding: 24px 20px; }
  .news-grid { grid-template-columns: 1fr; }
  .single-content { padding: 28px 24px; }
}
@media (max-width: 480px) {
  .about-stats { flex-direction: column; }
  .skills-grid { grid-template-columns: 1fr; }
  .hero-photo { width: 100%; height: 100%; }
  .section-header { margin-bottom: 32px; }
}
