:root {
    --iv-bg: #04030f;
    --iv-gold: #c7a62c;
    --iv-white: #ffffff;
    --iv-muted: #9fa3b3;
  }
  
  * {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--iv-bg);
    color: var(--iv-white);
    margin: 0;
  }
  
  /* NAVBAR */
  
  .iv-nav {
    background-color: rgba(4, 3, 15, 0.96);
    backdrop-filter: blur(10px);
  }
  
  .iv-brand-box {
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-weight: 700;
    letter-spacing: 0.03em;
  }
  
  .navbar-brand span {
    color: #fff;
  }
  
  .nav-link {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
  }
  
  .nav-link:hover,
  .nav-link:focus {
    color: #fff;
  }
  
  .btn-iv-gold {
    background-color: var(--iv-gold);
    border-color: var(--iv-gold);
    color: var(--iv-bg);
    font-weight: 600;
  }
  
  .btn-iv-gold:hover {
    background-color: #d8b840;
    border-color: #d8b840;
    color: var(--iv-bg);
  }
  
  .btn-iv-outline {
    border-color: var(--iv-gold);
    color: var(--iv-gold);
    font-weight: 500;
    background: transparent;
  }
  
  .btn-iv-outline:hover {
    background-color: var(--iv-gold);
    color: var(--iv-bg);
  }
  
  .navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
  }
  
  .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23C7A62C' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  }
  
  /* HERO */
  
  .hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top left, #17122e 0, #04030f 55%);
    color: var(--iv-white);
    padding-top: 5.5rem;
    padding-bottom: 5rem;
  }
  
  .hero-kicker {
    color: var(--iv-gold);
    font-size: 0.9rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  
  .hero-title {
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    font-weight: 800;
    line-height: 1.1;
  }
  
  .hero-highlight {
    color: var(--iv-gold);
  }
  
  .hero-subtitle {
    color: var(--iv-muted);
    max-width: 520px;
  }
  
  .hero-stats {
    border-radius: 999px;
    border: 1px solid rgba(199, 166, 44, 0.4);
    padding: 0.75rem 1.25rem;
    background: rgba(4, 3, 15, 0.7);
    font-size: 0.85rem;
  }
  
  .hero-card {
    background: rgba(7, 7, 20, 0.9);
    border-radius: 24px;
    border: 1px solid rgba(199, 166, 44, 0.3);
    box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  }
  
  .hero-tag {
    font-size: 0.75rem;
    color: var(--iv-muted);
  }
  
  /* STATS */
  
  .stat-card {
    background: rgba(6, 6, 21, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(159, 163, 179, 0.3);
    padding: 0.75rem 1rem;
    height: 100%;
  }
  
  .stat-label {
    font-size: 0.8rem;
    color: var(--iv-muted);
    margin-bottom: 0.15rem;
  }
  
  .stat-value {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .stat-desc {
    font-size: 0.8rem;
    color: var(--iv-muted);
  }
  
  /* PILL */
  
  .iv-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    border: 1px solid rgba(159, 163, 179, 0.4);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    color: var(--iv-muted);
  }
  
  /* SECTIONS */
  
  .section {
    padding: 4.5rem 0;
  }
  
  .section-label {
    color: var(--iv-gold);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.6rem;
  }
  
  .section-title {
    font-size: 1.9rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }
  
  .section-subtitle {
    color: var(--iv-muted);
    max-width: 620px;
  }
  
  /* CARDS */
  
  .iv-card {
    background: linear-gradient(145deg, #050414 0%, #08071b 40%, #050414 100%);
    border-radius: 20px;
    border: 1px solid rgba(159, 163, 179, 0.2);
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  }
  
  .iv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border-color: rgba(199, 166, 44, 0.7);
  }
  
  .iv-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(199, 166, 44, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--iv-gold);
    margin-bottom: 0.75rem;
  }
  
  /* PROCESS STEPS */
  
  .iv-step {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
  }
  
  .iv-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 999px;
    background: rgba(199, 166, 44, 0.1);
    border: 1px solid rgba(199, 166, 44, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--iv-gold);
  }
  
  .iv-step::after {
    content: "";
    position: absolute;
    left: 1.1rem;
    top: 2.2rem;
    bottom: -1.2rem;
    width: 1px;
    background: linear-gradient(to bottom, rgba(199, 166, 44, 0.6), transparent);
  }
  
  .iv-step:last-child::after {
    display: none;
  }
  
  /* FOR RTL ADJUSTMENTS */
  
  html[dir="rtl"] .iv-step {
    padding-left: 0;
    padding-right: 3rem;
  }
  
  html[dir="rtl"] .iv-step-number {
    left: auto;
    right: 0;
  }
  
  html[dir="rtl"] .iv-step::after {
    left: auto;
    right: 1.1rem;
  }
  
  /* FORMS */
  
  .form-control,
  .form-select {
    background-color: #050414;
    border-color: rgba(159, 163, 179, 0.4);
    color: var(--iv-white);
  }
  
  .form-control:focus,
  .form-select:focus {
    border-color: var(--iv-gold);
    box-shadow: 0 0 0 0.15rem rgba(199, 166, 44, 0.25);
  }
  
  .form-control::placeholder {
    color: #6f7384;
  }
  
  /* FOOTER */
  
  .footer {
    border-top: 1px solid rgba(159, 163, 179, 0.25);
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    font-size: 0.85rem;
  }
  
  .social-links a {
    color: var(--iv-muted);
    margin-right: 0.8rem;
    font-size: 1.1rem;
  }
  
  .social-links a:hover {
    color: var(--iv-gold);
  }
  
  /* MOBILE NAV */
  
  .mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #04030f;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
    z-index: 9999;
  }
  
  .mobile-nav a {
    flex: 1;
    text-align: center;
    padding: 8px 0 10px;
    color: #ffffff;
    font-size: 11px;
    text-decoration: none;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-nav a i {
    font-size: 18px;
    display: block;
    margin-bottom: 2px;
    color: var(--iv-gold);
  }
  
  /* RESPONSIVE */
  
  @media (max-width: 767.98px) {
    .hero {
      text-align: center;
    }
  
    .hero-subtitle,
    .hero-stats {
      margin-inline: auto;
    }
  
    .iv-step {
      padding-left: 0;
    }
  
    .iv-step-number {
      position: static;
      margin-bottom: 0.5rem;
    }
  
    .iv-step::after {
      display: none;
    }
  
    .mobile-nav {
      display: flex;
    }
  
    body {
      padding-bottom: 64px; /* Avoid bottom nav overlap */
    }
  }
  .logo-slider {
    overflow: hidden;
    padding: 20px 0;
    white-space: nowrap;
  }
  .logo-track {
    display: inline-flex;
    gap: 60px;
    align-items: center;
  }
  .logo-track img {
    height: 40px;
    opacity: .8;
    filter: grayscale(1);
  }
  .dropdown-menu{
    background: #06050c;
    color: white;
  }
  .dropdown-item{
    color: #ffffff;
    font-size: small;
  }

a {
  color: rgb(193 160 43);
  text-decoration: none;
}
/* ---------------------------------------------------
   INTELLIVISE — OPTIMIZED TYPOGRAPHY SYSTEM (2025)
   Improves: CLS, FID/INP, Legibility, Accessibility
--------------------------------------------------- */

/* 1) Root scaling: future-proof & predictable */
html {
  font-size: 100%; /* 16px base */
  -webkit-text-size-adjust: 100%;
}

/* 2) Body typography */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  line-height: 1.6;
  color: #fff;
  background: #04030F;
}

/* 3) Heading structure (prevents CLS from late font loading) */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.25; 
  font-family: inherit; /* ensures no layout shift if custom fonts fail */
  margin-top: 0;
}

/* Desktop-first heading sizes */
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }
h5 { font-size: 1rem; }
h6 { font-size: .875rem; }

/* 4) Improve readability for small-screen mobile */
@media (max-width: 480px) {
  body { font-size: 15px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}

/* 5) Ensure links are always legible */
a { text-decoration: none; color: #C7A62C; }
a:hover { opacity: 0.8; }

/* 6) Fix text-overflow cases in cards & job descriptions */
.small,
p,
li {
  overflow-wrap: break-word;
  word-break: break-word;
}

/* 7) Disable font inflation issues (Chrome font-size warnings) */
* {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
.trust-badge img {
  opacity: 0.85;
  transition: all 0.2s ease;
  filter: grayscale(30%);
}

.trust-badge img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: translateY(-2px);
}
