:root {
  --primary: #3a55a5;
  --blueMid: #5d78c9;
  --light: #eef1fb;
}

body {
  background: #f4f6fb;
  font-family: "Poppins", Arial;
}

.btn {
  background: linear-gradient(135deg, #3a55a5, #26346b);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 500;
  transition: 0.3s;
}

.btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

/* ----- header / nav (same behavior as every other page: transparent
   until scrolled, then solid white — driven by js/main.js) ----- */
.main-nav {
  transition: 0.3s ease;
  background: transparent;
}

.main-nav.scrolled {
  background: #ffffff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.nav-link {
  color: var(--blueMid) !important;
  font-weight: 500;
}

.navbar-toggler {
  border: none;
  color: var(--blueMid) !important;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.offcanvas {
  background: #5d78c9;
}

.offcanvas .nav-link {
  color: white !important;
}

/* ----- hero: provided globally by css/brand.css (.hero-section) so
   every page's hero is generated from a single shared source ----- */

/* ----- section eyebrow label (same treatment used site-wide for
   .blog-tag / .faq-tag / .tag) ----- */
.blog-tag {
  color: var(--blueMid);
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ----- hiring cards section (page-unique component) ----- */
.hiring-section {
  padding: 70px 0 60px;
  background: #f8faff;
}

.hiring-card {
  background: white;
  border-radius: 24px;
  padding: 28px 22px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(58, 85, 165, 0.06);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.hiring-card .card-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 14px;
  align-self: flex-start;
}

.badge-us {
  background: #e3f2fd;
  color: #0d47a1;
}

.badge-sg {
  background: #fce4ec;
  color: #b71c1c;
}

.badge-ph {
  background: #fff3e0;
  color: #e65100;
}

.badge-in {
  background: #e8f5e9;
  color: #1b5e20;
}

.badge-uk {
  background: #f3e5f5;
  color: #4a148c;
}

.hiring-card .job-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1a1a2e;
  margin-bottom: 6px;
}

.hiring-card .job-location {
  font-size: 0.9rem;
  color: #6c757d;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.hiring-card .job-location i {
  color: #3a55a5;
  font-size: 0.9rem;
}

.hiring-card .job-desc {
  font-size: 0.9rem;
  color: #4a4a4a;
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.hiring-card .btn-apply {
  background: linear-gradient(135deg, #3a55a5, #26346b);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: 0.3s;
  width: 100%;
  text-align: center;
  display: inline-block;
}

.hiring-card .btn-apply:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 25px rgba(58, 85, 165, 0.25);
  color: white;
}

/* ----- CTA box (same gradient/padding as the Home page CTA) ----- */
.cta-box {
  background: linear-gradient(135deg, #3a55a5, #a69eff);
  padding: 28px 35px;
  border-radius: 18px;
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}

.cta-btn {
  background: #ffffff;
  color: #26346b;
  font-weight: 700;
  padding: 10px 26px;
  border-radius: 25px;
  transition: 0.2s;
}

.cta-btn:hover {
  background: var(--blueMid);
  color: var(--light);
  transform: translateY(-2px);
}

/* ----- Footer (identical rules to Home / Team / Solutions / Why Us / Pricing) ----- */
.footer-section {
  background: #ffffff;
}

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

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

.footer-links a {
  text-decoration: none;
  color: #555;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #3a55a5;
}

.footer-contact {
  list-style: none;
  padding: 0;
}

.footer-contact li {
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: #444;
}

.footer-contact i {
  color: #3a55a5;
  margin-right: 6px;
}

.newsletter-box input {
  border-radius: 8px;
}

.newsletter-box button {
  border-radius: 8px;
  background: linear-gradient(135deg, #3a55a5, #26346b);
  color: var(--light);
}

.social-icons i {
  font-size: 18px;
  cursor: pointer;
  color: var(--blueMid);
}

.social-icons i:hover {
  color: #3a55a5;
}

.logo {
  color: var(--blueMid) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hiring-section {
    padding: 50px 0 40px;
  }
}
