/*
Theme Name: Dynamicpath Manpower
Theme URI: https://dynamicpath.in
Author: Dynamicpath
Author URI: https://dynamicpath.in
Description: Ultra lightweight theme for Dynamicpath Manpower Training & Trade (OPC) Pvt. Ltd. — Fast, SEO-friendly, mobile responsive.
Version: 1.0.0
License: GNU General Public License v2
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: dynamicpath
Tags: business, lightweight, responsive, custom-logo
*/

/* ============================================
   DYNAMICPATH THEME — Logo Color Matched
   Navy Blue: #0d2461 | Gold: #c9a84c | Teal: #1a7a6e
   Zero jQuery | Zero page builder dependency
   ============================================ */

:root {
  --navy:     #0d2461;
  --navy-dk:  #091847;
  --navy-lt:  #1a3a8f;
  --gold:     #c9a84c;
  --gold-lt:  #f5e9c8;
  --gold-dk:  #a8882e;
  --teal:     #1a7a6e;
  --teal-lt:  #e0f5f2;
  --white:    #ffffff;
  --bg:       #f4f6fb;
  --border:   #dde3f0;
  --ink:      #1a1a2e;
  --ink2:     #374151;
  --muted:    #6b7280;
  --ff:       'Mukta', 'Noto Sans', sans-serif;
  --r:        10px;
  --shadow:   0 2px 12px rgba(13,36,97,.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* LAYOUT */
.dp-container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.dp-section    { padding: 64px 0; }
.dp-section-alt{ background: var(--bg); padding: 64px 0; }
.dp-section-sm { padding: 40px 0; }

/* TYPOGRAPHY */
.dp-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 4px 14px; border-radius: 50px;
  margin-bottom: 12px;
}
.dp-tag-navy { background: rgba(13,36,97,.1); color: var(--navy); }
.dp-tag-gold { background: var(--gold-lt); color: var(--gold-dk); }
.dp-tag-teal { background: var(--teal-lt); color: var(--teal); }

.dp-heading {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800; line-height: 1.2;
  color: var(--navy); margin-bottom: 12px;
}
.dp-subhead {
  font-size: 15px; color: var(--muted);
  line-height: 1.7; max-width: 520px;
}

/* ── TOP BAR ── */
.dp-topbar {
  background: var(--navy-dk);
  padding: 7px 0;
  font-size: 12px; color: rgba(255,255,255,.6);
}
.dp-topbar .dp-container {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 6px;
}
.dp-topbar a { color: rgba(255,255,255,.8); transition: color .15s; }
.dp-topbar a:hover { color: var(--gold); }
.dp-topbar-links { display: flex; gap: 16px; }

/* ── NAVBAR ── */
.dp-navbar {
  background: var(--white);
  border-bottom: 3px solid var(--navy);
  position: sticky; top: 0; z-index: 200;
  box-shadow: var(--shadow);
}
.dp-navbar .dp-container {
  display: flex; align-items: center;
  justify-content: space-between; height: 68px;
}
.dp-logo { display: flex; align-items: center; gap: 10px; }
.dp-logo img { height: 52px; width: auto; }
.dp-logo-text { font-size: 17px; font-weight: 800; color: var(--navy); line-height: 1.1; }
.dp-logo-text small { font-size: 10px; font-weight: 600; color: var(--navy); display: block; letter-spacing: .5px; opacity: .7; }

.dp-nav-links { display: flex; align-items: center; gap: 2px; }
.dp-nav-links a {
  font-size: 14px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px;
  color: var(--ink2); transition: all .15s;
}
.dp-nav-links a:hover { background: var(--bg); color: var(--navy); }
.dp-nav-links a.current-menu-item { color: var(--navy); font-weight: 700; }
.dp-nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 800 !important; border-radius: 8px !important;
}
.dp-nav-cta:hover { background: var(--gold-dk) !important; }

.dp-ham {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none;
}
.dp-ham span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; }

/* ── HERO ── */
.dp-hero {
  background: var(--navy);
  padding: 72px 0 80px; position: relative; overflow: hidden;
}
.dp-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 500px 400px at 85% 50%, rgba(201,168,76,.15) 0%, transparent 70%),
    radial-gradient(ellipse 300px 300px at 5% 80%,  rgba(26,122,110,.2) 0%, transparent 70%);
}
.dp-hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: center;
}
.dp-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.2); border: 1px solid rgba(201,168,76,.4);
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 50px; margin-bottom: 18px;
}
.dp-hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--gold); border-radius: 50%;
  animation: dp-blink 1.5s infinite;
}
@keyframes dp-blink { 0%,100%{opacity:1} 50%{opacity:.3} }

.dp-hero h1 {
  font-size: clamp(26px, 5vw, 46px);
  font-weight: 800; line-height: 1.15;
  color: white; margin-bottom: 16px;
}
.dp-hero h1 em { color: var(--gold); font-style: normal; }
.dp-hero p {
  font-size: 16px; color: rgba(255,255,255,.65);
  line-height: 1.7; margin-bottom: 32px; max-width: 460px;
}
.dp-hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.dp-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--r);
  font-size: 14px; font-weight: 700; font-family: var(--ff);
  cursor: pointer; border: none;
  transition: transform .15s, box-shadow .15s; text-decoration: none;
}
.dp-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.dp-btn-gold  { background: var(--gold); color: var(--navy); }
.dp-btn-gold:hover { background: var(--gold-dk); }
.dp-btn-outline {
  background: transparent; color: white;
  border: 2px solid rgba(255,255,255,.3);
}
.dp-btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.dp-btn-navy { background: var(--navy); color: white; }
.dp-btn-navy:hover { background: var(--navy-lt); }

/* Hero card */
.dp-hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 18px; padding: 28px;
  backdrop-filter: blur(6px);
}
.dp-hero-card-title {
  color: var(--gold); font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px;
}
.dp-stat-list { display: flex; flex-direction: column; gap: 16px; }
.dp-stat-item { display: flex; align-items: center; gap: 14px; }
.dp-stat-icon {
  width: 46px; height: 46px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.dp-si-gold { background: rgba(201,168,76,.2); }
.dp-si-teal { background: rgba(26,122,110,.2); }
.dp-si-blue { background: rgba(99,102,241,.2); }
.dp-stat-num { font-size: 22px; font-weight: 800; color: white; line-height: 1; }
.dp-stat-lbl { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 2px; }

/* ── STRIP ── */
.dp-strip { background: var(--gold); padding: 9px 0; overflow: hidden; }
.dp-marquee {
  display: flex; gap: 48px; width: max-content;
  animation: dp-marquee 22s linear infinite;
}
@keyframes dp-marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.dp-marquee span {
  font-size: 12px; font-weight: 800; color: var(--navy);
  white-space: nowrap; display: flex; align-items: center; gap: 10px;
  letter-spacing: 1px; text-transform: uppercase;
}
.dp-marquee span::before { content: '◆'; font-size: 8px; opacity: .5; }

/* ── SERVICES ── */
.dp-services-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
  margin-top: 40px;
}
.dp-svc-card {
  border: 2px solid var(--border);
  border-radius: 14px; padding: 28px 22px;
  background: var(--white);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
.dp-svc-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(201,168,76,.15);
}
.dp-svc-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--navy-lt));
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 16px;
}
.dp-svc-title { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.dp-svc-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }
.dp-svc-link {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--gold-dk);
  transition: gap .2s;
}
.dp-svc-link:hover { gap: 8px; }
.dp-svc-link::after { content: '→'; }

/* ── JOBS ── */
.dp-jobs-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.dp-job-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 14px; padding: 20px;
  display: flex; gap: 14px; align-items: flex-start;
  transition: border-color .2s, box-shadow .2s;
}
.dp-job-card:hover { border-color: var(--navy); box-shadow: var(--shadow); }
.dp-job-logo {
  width: 46px; height: 46px; border-radius: 10px;
  background: var(--bg); border: 2px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.dp-job-title   { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dp-job-company { font-size: 12px; color: var(--muted); margin-bottom: 10px; }
.dp-job-tags    { display: flex; gap: 6px; flex-wrap: wrap; }
.dp-job-tag {
  font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 50px;
  background: var(--bg); color: var(--ink2);
}
.dp-job-tag.navy { background: rgba(13,36,97,.08); color: var(--navy); }
.dp-job-tag.gold { background: var(--gold-lt); color: var(--gold-dk); }

/* ── WHY US ── */
.dp-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.dp-why-list  { display: flex; flex-direction: column; gap: 20px; margin-top: 24px; }
.dp-why-item  { display: flex; gap: 14px; align-items: flex-start; }
.dp-why-num {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--gold); color: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.dp-why-title { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.dp-why-desc  { font-size: 13px; color: var(--muted); line-height: 1.6; }

.dp-why-visual {
  background: linear-gradient(145deg, var(--navy-dk), var(--navy));
  border-radius: 20px; padding: 36px;
  border: 2px solid rgba(201,168,76,.2);
  position: relative; overflow: hidden;
}
.dp-why-visual::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,168,76,.2), transparent 70%);
  border-radius: 50%;
}
.dp-metric-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dp-metric-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 12px; padding: 20px; text-align: center;
}
.dp-metric-val { font-size: 28px; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 6px; }
.dp-metric-lbl { font-size: 11px; color: rgba(255,255,255,.5); line-height: 1.4; }

/* ── TESTIMONIALS ── */
.dp-testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 36px; }
.dp-testi-card {
  background: var(--white); border: 2px solid var(--border);
  border-radius: 14px; padding: 24px;
  transition: border-color .2s;
}
.dp-testi-card:hover { border-color: var(--gold); }
.dp-testi-stars { color: var(--gold); font-size: 14px; margin-bottom: 10px; }
.dp-testi-text  { font-size: 13px; color: var(--ink2); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.dp-testi-author { display: flex; align-items: center; gap: 10px; }
.dp-testi-av {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--navy); color: white;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; flex-shrink: 0;
}
.dp-testi-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.dp-testi-role { font-size: 12px; color: var(--muted); }

/* ── CTA BAND ── */
.dp-cta {
  background: linear-gradient(135deg, var(--navy-dk), var(--navy));
  padding: 60px 0; text-align: center;
  position: relative; overflow: hidden;
}
.dp-cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 600px 300px at 50% 100%, rgba(201,168,76,.12), transparent);
}
.dp-cta h2 { font-size: clamp(22px,4vw,34px); font-weight: 800; color: white; margin-bottom: 10px; position: relative; }
.dp-cta p  { color: rgba(255,255,255,.65); font-size: 15px; margin-bottom: 28px; position: relative; }
.dp-cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ── FOOTER ── */
.dp-footer { background: var(--navy-dk); padding: 56px 0 24px; }
.dp-footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(201,168,76,.15);
}
.dp-footer-brand p { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.7; margin-top: 12px; max-width: 260px; }
.dp-footer-logo { display: flex; align-items: center; gap: 10px; }
.dp-footer-logo img { height: 44px; }
.dp-footer-logo-text { font-size: 15px; font-weight: 800; color: white; line-height: 1.15; }
.dp-footer-logo-text small { font-size: 11px; font-weight: 400; color: var(--gold); display: block; }
.dp-footer-col-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 16px;
}
.dp-footer-links { display: flex; flex-direction: column; gap: 10px; }
.dp-footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: color .15s; }
.dp-footer-links a:hover { color: var(--gold); }
.dp-footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
  padding-top: 24px;
  font-size: 12px; color: rgba(255,255,255,.3);
}
.dp-footer-bottom a { color: rgba(255,255,255,.5); }
.dp-footer-bottom a:hover { color: var(--gold); }

/* ── MOBILE NAV ── */
.dp-mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 300;
  background: rgba(9,24,71,.6);
}
.dp-mobile-nav.open { display: block; }
.dp-mobile-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 100%; background: var(--white);
  padding: 20px; display: flex; flex-direction: column; gap: 6px;
  transform: translateX(100%); transition: transform .25s ease;
}
.dp-mobile-nav.open .dp-mobile-panel { transform: translateX(0); }
.dp-mobile-panel a {
  display: block; padding: 12px 16px;
  font-size: 15px; font-weight: 600;
  border-radius: 10px; color: var(--navy); transition: background .15s;
}
.dp-mobile-panel a:hover { background: var(--bg); }
.dp-mob-close {
  align-self: flex-end; background: none; border: none;
  font-size: 22px; cursor: pointer; color: var(--muted); padding: 4px; margin-bottom: 4px;
}

/* ── WORDPRESS SPECIFIC ── */
.wp-caption { max-width: 100%; }
.aligncenter { display: block; margin: 0 auto; }
.alignleft  { float: left; margin: 0 20px 20px 0; }
.alignright { float: right; margin: 0 0 20px 20px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .dp-hero-inner { grid-template-columns: 1fr; }
  .dp-hero-card { display: none; }
  .dp-services-grid { grid-template-columns: 1fr 1fr; }
  .dp-why-grid { grid-template-columns: 1fr; }
  .dp-footer-grid { grid-template-columns: 1fr 1fr; }
  .dp-testi-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .dp-topbar { display: none; }
  .dp-nav-links { display: none; }
  .dp-ham { display: flex; }
  .dp-services-grid { grid-template-columns: 1fr; }
  .dp-jobs-grid { grid-template-columns: 1fr; }
  .dp-testi-grid { grid-template-columns: 1fr; }
  .dp-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .dp-section, .dp-section-alt { padding: 44px 0; }
}

/* CATEGORY GRID */
.dp-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.dp-cat-card {
  background: var(--white);
  border: 1.5px solid #e8edf5;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.dp-cat-card:hover {
  border-color: var(--gold);
  box-shadow: 0 6px 24px rgba(200,160,40,.13);
  transform: translateY(-2px);
}
.dp-cat-icon { font-size: 22px; flex-shrink: 0; }
.dp-cat-name { font-size: 14px; font-weight: 700; color: var(--navy); line-height: 1.3; }

/* LOCATION GRID */
.dp-location-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.dp-loc-card {
  background: var(--white);
  border: 1.5px solid #e8edf5;
  border-radius: 14px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  transition: box-shadow .2s, border-color .2s, transform .2s;
}
.dp-loc-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 24px rgba(30,110,100,.12);
  transform: translateY(-3px);
}
.dp-loc-flag { font-size: 32px; }
.dp-loc-name { font-size: 13px; font-weight: 800; color: var(--navy); line-height: 1.3; }

/* PAGE LOAD */
.dp-fade { animation: dpFade .5s ease both; }
.dp-fade:nth-child(2) { animation-delay: .1s; }
.dp-fade:nth-child(3) { animation-delay: .2s; }
@keyframes dpFade { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:translateY(0)} }

/* ── LATEST VACANCIES SECTION ─────────────────────────── */
.dp-vac-section { background: #f8f6ef; }
.dp-vac-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 22px;
}
.dp-vac-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  transition: transform .25s, box-shadow .25s;
}
.dp-vac-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,.13);
}
.dp-vac-img-wrap { position: relative; }
.dp-vac-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.dp-vac-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(20,80,40,.88);
  color: #4ade80;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}
.dp-vac-info { padding: 14px 16px; }
.dp-vac-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}
.dp-vac-expires {
  font-size: 12px;
  color: #888;
  font-weight: 600;
}

