/* ============================
   SN-Networks — Main Stylesheet
   ============================ */

:root {
  --primary: #0A2E5C;
  --primary-dark: #061e3e;
  --accent: #E8A020;
  --accent-light: #f5c46a;
  --text-dark: #1a1a2e;
  --text-mid: #4a5568;
  --text-light: #718096;
  --bg-light: #f7f9fc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 24px rgba(10,46,92,0.10);
  --shadow-hover: 0 12px 40px rgba(10,46,92,0.18);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.3;
}

a { text-decoration: none; color: inherit; transition: all 0.3s; }
img { max-width: 100%; }

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f0f4f8; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 10px; }

/* ============================
   NAVBAR
   ============================ */
#siteNav {
  background: var(--white);
  padding: 0px 0;
  transition: all 0.4s ease;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}
#siteNav.scrolled {
  background: var(--white) !important;
  padding: 12px 0;
  box-shadow: 0 4px 20px rgba(10, 46, 92, 0.08);
}
.navbar-brand { font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 700; }
.brand-sn { color: var(--accent); }
.brand-networks { color: var(--primary); }
.nav-link {
  color: var(--text-dark) !important;
  font-weight: 500;
  padding: 8px 14px !important;
  border-radius: 8px;
  transition: all 0.3s;
}
.nav-link:hover, .nav-link.active {
  color: var(--primary) !important;
  background: rgba(10, 46, 92, 0.06);
}
.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  box-shadow: var(--shadow);
}
.dropdown-item { color: var(--text-dark); border-radius: 8px; padding: 8px 14px; font-size: 0.9rem; }
.dropdown-item:hover { background: rgba(10, 46, 92, 0.06); color: var(--primary); }
.toggler-icon { color: var(--primary-dark); font-size: 1.3rem; }
.navbar-toggler { border: none; box-shadow: none !important; }

/* ============================
   BUTTONS
   ============================ */
.btn-primary-custom {
  background: linear-gradient(135deg, var(--accent), #d48c0a);
  color: var(--primary-dark);
  font-weight: 700;
  border-radius: 50px;
  padding: 12px 28px;
  border: none;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.3px;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,160,32,0.4);
  color: var(--primary-dark);
}
.btn-outline-primary-custom {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 600;
  border-radius: 50px;
  padding: 10px 26px;
  transition: all 0.3s;
  font-family: 'DM Sans', sans-serif;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}
.btn-outline-light { border-radius: 50px; font-weight: 600; }

/* ============================
   HERO SECTION
   ============================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(6,30,62,0.92) 0%, rgba(10,46,92,0.75) 60%, rgba(10,46,92,0.4) 100%);
  z-index: 1;
}
.min-vh-hero {
  min-height: calc(100vh - 100px);
  padding: 140px 0 60px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: white;
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.2;
}
.highlight-text {
  color: var(--accent);
  position: relative;
}
.hero-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.hero-stats-bar {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 0;
  position: relative;
  z-index: 2;
}
.stat-num { font-size: 2rem; font-weight: 700; color: var(--accent); font-family: 'Playfair Display', serif; }
.stat-label { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 4px; }

/* ============================
   SECTIONS
   ============================ */
.section-pad { padding: 90px 0; }
.bg-light-custom { background: var(--bg-light); }
.section-tag {
  display: inline-block;
  background: rgba(10,46,92,0.08);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.section-title { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; color: var(--text-dark); }
.body-text { color: var(--text-mid); font-size: 1rem; line-height: 1.8; }

/* ============================
   INDUSTRIES
   ============================ */
.industry-card {
  padding: 28px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 0.3s;
  background: white;
}
.industry-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.industry-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.3rem;
  margin: 0 auto 12px;
}
.industry-card p { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin: 0; }

/* ============================
   ABOUT SECTION
   ============================ */
.about-img-wrap { position: relative; display: inline-block; width: 100%; }
.rounded-custom { border-radius: var(--radius-lg); }
.about-badge-float {
  position: absolute;
  bottom: -20px; left: 30px;
  background: var(--primary);
  color: white;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow);
}
.about-badge-float i { color: var(--accent); margin-right: 8px; }
.feature-pill {
  background: rgba(10,46,92,0.06);
  color: var(--primary);
  border-radius: 50px;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 600;
}
.feature-pill i { color: var(--accent); }

/* ============================
   JOB CARDS
   ============================ */
.job-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.3s;
  height: 100%;
}
.job-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.job-card-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.company-logo-wrap {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.1rem;
}
.job-type-badge {
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.full-time { background: rgba(10,46,92,0.1); color: var(--primary); }
.contract { background: rgba(232,160,32,0.15); color: #b8710a; }
.part-time { background: rgba(56,161,105,0.12); color: #276749; }
.job-title { font-size: 1.05rem; font-weight: 700; color: var(--text-dark); margin-bottom: 6px; }
.job-company { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; }
.job-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.job-tags span { background: var(--bg-light); color: var(--text-mid); padding: 4px 10px; border-radius: 6px; font-size: 0.78rem; font-weight: 500; }
.job-footer { display: flex; justify-content: space-between; align-items: center; }
.job-salary { font-weight: 700; color: var(--primary); font-size: 0.92rem; }

/* ============================
   PROCESS / HOW IT WORKS
   ============================ */
.how-section { background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%); }
.how-section .section-tag { background: rgba(255,255,255,0.12); color: var(--accent); }
.how-section .section-title { color: white; }
.process-step { padding: 30px 20px; }
.process-num { font-size: 3rem; font-weight: 800; color: rgba(255,255,255,0.1); font-family: 'Playfair Display', serif; line-height: 1; margin-bottom: 10px; }
.process-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.1);
  border: 2px solid var(--accent);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); font-size: 1.4rem;
  margin: 0 auto 16px;
  transition: all 0.3s;
}
.process-step:hover .process-icon { background: var(--accent); color: var(--primary-dark); }
.process-step h5 { color: white; font-size: 1rem; margin-bottom: 8px; }
.process-step p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  border: 1.5px solid var(--border);
  height: 100%;
  transition: all 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.featured-testi { border-color: var(--accent); background: var(--primary); color: white; }
.featured-testi p { color: rgba(255,255,255,0.85); }
.featured-testi strong { color: white; }
.featured-testi span { color: var(--accent); }
.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-mid); font-style: italic; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testi-author strong { display: block; font-size: 0.95rem; }
.testi-author span { font-size: 0.82rem; color: var(--text-light); }

/* ============================
   BLOG
   ============================ */
.blog-card-link { display: block; color: inherit; }
.blog-card {
  background: white;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  overflow: hidden;
  transition: all 0.3s;
  height: 100%;
}
.blog-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
.blog-img-wrap { position: relative; height: 210px; overflow: hidden; }
.blog-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.blog-card:hover .blog-img-wrap img { transform: scale(1.05); }
.blog-cat {
  position: absolute; top: 14px; left: 14px;
  background: var(--accent);
  color: var(--primary-dark);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 700;
}
.blog-body { padding: 22px; }
.blog-date { font-size: 0.82rem; color: var(--text-light); margin-bottom: 8px; }
.blog-body h5 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 10px; line-height: 1.4; }
.blog-excerpt { font-size: 0.88rem; color: var(--text-light); margin-bottom: 14px; }
.read-more { color: var(--primary); font-size: 0.88rem; font-weight: 700; }

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  color: white;
}
.cta-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(6,30,62,0.92), rgba(10,46,92,0.85)); z-index: 1; }
.cta-section h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
.cta-section p { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 32px; }

/* ============================
   FOOTER
   ============================ */
.site-footer {
  background: var(--white);
  color: var(--text-dark);
  padding: 70px 0 0;
  border-top: 1px solid var(--border);
  overflow-x: hidden;
}
.footer-desc { font-size: 0.9rem; line-height: 1.7; color: var(--text-mid); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 38px; height: 38px;
  background: rgba(10, 46, 92, 0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 0.85rem;
  transition: all 0.3s;
}
.social-links a:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-2px); }
.footer-heading { color: var(--primary); font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 8px; font-size: 0.9rem; color: var(--text-mid); }
.footer-links a { color: var(--text-mid); transition: all 0.3s; }
.footer-links a:hover { color: var(--primary); padding-left: 4px; }
.contact-info li { display: flex; align-items: flex-start; gap: 8px; }
.contact-info i { color: var(--accent); margin-top: 4px; min-width: 16px; }
.footer-bottom {
  /* Avoid 100vw — it causes horizontal scroll / fixed strip at bottom on many browsers */
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: var(--primary-dark);
  border-top: none;
  padding: 18px 16px;
  margin-top: 48px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.92);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: var(--white); text-decoration: underline; text-underline-offset: 3px; }
.footer-bottom a:hover { color: var(--accent-light); }

/* ============================
   BACK TO TOP
   ============================ */
.back-to-top {
  position: fixed; bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 4px 14px rgba(10,46,92,0.35);
  opacity: 0; visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--accent); color: var(--primary-dark); transform: translateY(-3px); }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 130px 0 70px;
  color: white;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: white;
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.bg-light-after::after { background: var(--bg-light); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.breadcrumb { background: none; padding: 0; }
.breadcrumb-item a { color: var(--accent); }
.breadcrumb-item.active { color: rgba(255,255,255,0.6); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.4); }

/* ============================
   ABOUT PAGE
   ============================ */
.vision-card {
  background: white;
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.vision-card:hover { transform: translateX(4px); }
.vision-card h5 { color: var(--primary); margin-bottom: 10px; display: flex; align-items: center; gap: 10px; }
.vision-card i { color: var(--accent); }
.vision-card p { color: var(--text-mid); font-size: 0.95rem; margin: 0; }
.team-card { text-align: center; }
.team-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; border: 4px solid var(--border); margin-bottom: 14px; }
.team-card h5 { color: var(--text-dark); margin-bottom: 4px; }
.team-card p { color: var(--text-light); font-size: 0.88rem; }

/* ============================
   JOBS PAGE
   ============================ */
.filter-bar {
  background: white;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 30px;
  border: 1.5px solid var(--border);
}
.filter-bar .form-control, .filter-bar .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.9rem;
  transition: all 0.3s;
}
.filter-bar .form-control:focus, .filter-bar .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,46,92,0.1);
}
.job-list-card {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.3s;
  margin-bottom: 16px;
}
.job-list-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.job-list-icon {
  width: 56px; height: 56px; min-width: 56px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.2rem;
}
.job-list-info { flex: 1; }
.job-list-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.job-list-meta { font-size: 0.85rem; color: var(--text-light); display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 8px; }
.job-list-meta span { display: flex; align-items: center; gap: 4px; }
.sidebar-widget {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar-widget h6 { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 16px; }

/* ============================
   JOB DETAILS
   ============================ */
.job-detail-header {
  background: white;
  border-radius: var(--radius);
  padding: 32px;
  border: 1.5px solid var(--border);
  margin-bottom: 24px;
}
.jd-logo {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.6rem;
}
.jd-meta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 16px; }
.jd-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-mid); }
.jd-meta-item i { color: var(--accent); }
.job-desc-section { background: white; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 32px; }
.job-desc-section h5 { color: var(--primary); margin-bottom: 14px; }
.job-desc-section ul { padding-left: 20px; }
.job-desc-section ul li { margin-bottom: 8px; color: var(--text-mid); font-size: 0.95rem; }
.share-box { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.share-box span { font-size: 0.88rem; font-weight: 600; color: var(--text-mid); }
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid); font-size: 0.85rem;
  transition: all 0.3s;
}
.share-btn:hover { background: var(--primary); color: white; }

/* ============================
   APPLY FORM
   ============================ */
.apply-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.form-label { font-size: 0.9rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 0.92rem;
  transition: all 0.3s;
  background: var(--bg-light);
}
.form-control:focus, .form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(10,46,92,0.1);
  background: white;
}
.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: var(--bg-light);
}
.upload-zone:hover { border-color: var(--primary); background: rgba(10,46,92,0.03); }
.upload-zone i { font-size: 2rem; color: var(--primary); margin-bottom: 12px; }
.upload-zone p { color: var(--text-light); font-size: 0.9rem; margin: 0; }

/* ============================
   BLOG PAGE
   ============================ */
.blog-grid .blog-card { height: 100%; }
.blog-details-wrap img.featured-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 30px;
}
.blog-content h3 { color: var(--primary); margin: 24px 0 12px; }
.blog-content p { color: var(--text-mid); margin-bottom: 16px; }
.blog-content ul { padding-left: 20px; margin-bottom: 16px; }
.blog-content ul li { margin-bottom: 8px; color: var(--text-mid); }
.author-box {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 24px;
  display: flex; gap: 20px; align-items: flex-start;
  margin-top: 40px;
  border: 1.5px solid var(--border);
}
.author-box img { width: 72px; height: 72px; border-radius: 50%; object-fit: cover; }
.author-box h6 { font-size: 1rem; margin-bottom: 4px; }
.author-box p { font-size: 0.88rem; color: var(--text-light); margin: 0; }

/* ============================
   CONTACT PAGE
   ============================ */
.contact-info-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
  border: 1.5px solid var(--border);
  transition: all 0.3s;
  height: 100%;
}
.contact-info-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.contact-icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 1.4rem;
  margin: 0 auto 16px;
}
.contact-info-card h5 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.contact-info-card p, .contact-info-card a { color: var(--text-mid); font-size: 0.9rem; }
.contact-form-wrap {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
}
.map-wrap { border-radius: var(--radius); overflow: hidden; }
.map-wrap iframe { display: block; }

/* ============================
   POLICY / TERMS
   ============================ */
.policy-content h3 { color: var(--primary); margin: 32px 0 14px; font-size: 1.3rem; }
.policy-content p { color: var(--text-mid); margin-bottom: 14px; }
.policy-content ul { padding-left: 20px; margin-bottom: 16px; }
.policy-content ul li { color: var(--text-mid); margin-bottom: 8px; }
.policy-sidebar {
  position: sticky;
  top: 90px;
}
.policy-nav { list-style: none; padding: 0; }
.policy-nav li { margin-bottom: 6px; }
.policy-nav a {
  display: block;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}
.policy-nav a:hover, .policy-nav a.active {
  color: var(--primary);
  background: rgba(10,46,92,0.06);
  border-left-color: var(--accent);
}

/* ============================
   PAGINATION
   ============================ */
.pagination .page-link {
  border: 1.5px solid var(--border);
  color: var(--primary);
  padding: 8px 14px;
  border-radius: 8px !important;
  margin: 0 3px;
  transition: all 0.3s;
}
.pagination .page-link:hover, .pagination .page-item.active .page-link {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
}

/* ============================
   ALERT / TOAST
   ============================ */
.success-alert {
  background: #ecfdf5;
  border: 1.5px solid #86efac;
  color: #166534;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: none;
  margin-top: 16px;
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease forwards; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 991px) {
  .navbar-collapse {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    margin-top: 10px;
    box-shadow: var(--shadow);
  }
  .job-list-card { flex-wrap: wrap; }
  .about-badge-float { position: relative; left: auto; bottom: auto; margin-top: 16px; display: inline-block; }
  .about-img-wrap { margin-bottom: 40px; }
}
@media (max-width: 767px) {
  .section-pad { padding: 60px 0; }
  .hero-actions .btn-lg { width: 100%; text-align: center; }
  .apply-form-wrap, .contact-form-wrap { padding: 24px; }
  .policy-sidebar { display: none; }
}
