  :root {
    --navy: #283541;
    --navy-mid: #1269a6;
    --steel: #1D4B73;
    --sky: #2A7BB5;
    --accent: #ec7f29;
    --accent-light: #F5A862;
    --off-white:#fafafa;
    --warm-gray: #E8E5DF;
    --text-dark: #0B1F3A;
    --text-mid: #3D5166;
    --text-light: #6B7F95;
    --white: #FFFFFF;
    --border: rgba(11,31,58,0.12);
    --serif: 'Instrument Serif', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;
    --radius: 4px;
    --radius-lg: 10px;
    --shadow: 0 2px 16px rgba(11,31,58,0.08);
    --shadow-lg: 0 8px 40px rgba(11,31,58,0.14);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--off-white);
    color: var(--text-dark);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
  }
 h1,h2,h3,h4{
     word-spacing:5px;
 }
  /* ── NAV ── */
 nav {
    position: sticky; /* or fixed if preferred */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 5%;

    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0, 0, 0, 0.08);

    box-shadow:
        0 2px 10px rgba(0, 0, 0, 0.05),
        0 8px 30px rgba(0, 0, 0, 0.04);

    transition: all 0.3s ease;
}

  .nav-inner {
    max-width: 1280px; width: 100%; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
  }

  .logo {
    font-family: var(--sans);
    font-weight: 600;
    font-size: 17px;
    letter-spacing: 0.04em;
    color: var(--white);
    text-decoration: none;
    display: flex; align-items: center; gap: 10px;
  }

  .logo-mark {
    width: 32px; height: 32px;
    background: var(--accent);
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
  }

  .logo-mark svg { width: 18px; height: 18px; fill: white; }

  .nav-links {
    display: flex; align-items: center; gap: 32px;
    list-style: none;
    margin-bottom:0px;
  }

  .nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    text-decoration: none;
    letter-spacing: 0.02em;
    transition: color 0.2s;
  }

  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: var(--accent) !important;
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: var(--radius);
    font-weight: 500 !important;
    font-size: 14px !important;
    transition: background 0.2s !important;
  }

  .nav-cta:hover { background: var(--accent-light) !important; }

  /* ── HERO ── */
  .hero {
    background: var(--navy);
    min-height: 100vh;
    display: flex; flex-direction: column;
    padding-top: 64px;
    position: relative;
    overflow: hidden;
  }

  .hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(42,123,181,0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(42,123,181,0.06) 1px, transparent 1px);
    background-size: 48px 48px;
  }

  .hero-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(42,123,181,0.18) 0%, transparent 70%);
    top: -100px; right: -100px;
    pointer-events: none;
  }

  .hero-content {
    max-width: 1280px; width: 100%; margin: 0 auto;
    padding: 100px 0 80px;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 1;
    flex: 1;
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(232,135,58,0.15);
    border: 1px solid rgba(232,135,58,0.3);
    color: var(--accent-light);
    font-size: 12px; font-weight: 500;
    letter-spacing: 0.1em; text-transform: uppercase;
    padding: 6px 14px; border-radius: 40px;
    margin-bottom: 28px;
  }

  .hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
  }

  .hero h1 {
    font-family: var(--serif);
    font-size: clamp(38px, 4.5vw, 60px);
    line-height: 1.08;
    word-spacing:10px;
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 400;
  }

  .hero h1 em {
    font-style: italic;
    color: var(--accent-light);
  }

  .hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
    max-width: 480px;
  }

  .hero-actions {
    display: flex; gap: 14px; align-items: center; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--accent);
    color: var(--white);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    border: none; cursor: pointer;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }

  .btn-primary:hover { background: var(--accent-light); transform: translateY(-1px);color:#fff; }

  .btn-outline {
    background: transparent;
    color: rgba(255,255,255,0.7);
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 400;
    font-size: 15px;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.2);
    display: inline-flex; align-items: center; gap: 8px;
    transition: all 0.2s;
  }

  .btn-outline:hover { border-color: rgba(255,255,255,0.5); color: white; }

  .hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin-top: 56px;
  }

  .stat-cell {
    background: rgba(255,255,255,0.04);
    padding: 24px 20px;
    text-align: center;
    transition: background 0.2s;
  }

  .stat-cell:hover { background: rgba(255,255,255,0.08); }

  .stat-num {
    font-family: var(--serif);
    font-size: 34px;
    color: var(--white);
    line-height: 1;
    margin-bottom: 6px;
  }

  .stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 400;
  }

  /* Hero right panel */
  .hero-panel {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(4px);
  }

  .panel-label {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color:  #e4e4e4;
    margin-bottom: 20px;
    font-weight: 500;
  }

  .client-types {
    display: flex; flex-direction: column; gap: 12px;
    margin-bottom: 28px;
  }

  .client-row {
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 14px 18px;
    transition: border-color 0.2s;
  }

  .client-row:hover { border-color: rgba(42,123,181,0.4); }

  .client-row-left { display: flex; align-items: center; gap: 12px; }

  .client-icon {
    width: 36px; height: 36px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 17px;
  }

  .client-name { font-size: 14px; color: rgba(255,255,255,0.85); font-weight: 500; }
  .client-sub { font-size: 12px; color:  #e4e4e4; margin-top: 1px; }

  .client-badge {
    font-size: 11px;
    padding: 3px 10px;
    border-radius: 40px;
    font-weight: 500;
  }

  .badge-blue { background: rgba(42,123,181,0.2); color: #7EC4F4; }
  .badge-green { background: rgba(40,160,100,0.18); color: #6FCFA0; }
  .badge-amber { background: rgba(232,135,58,0.18); color: var(--accent-light); }
  .badge-purple { background: rgba(130,90,200,0.18); color: #C4A0F5; }

  .sla-bar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
  }

  .sla-top { display: flex; justify-content: space-between; margin-bottom: 10px; }
  .sla-title { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }
  .sla-num { font-size: 13px; color: var(--accent-light); font-weight: 500; }

  .sla-track {
    height: 4px;
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
    overflow: hidden;
  }

  .sla-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--sky), var(--accent));
    border-radius: 2px;
    width: 94%;
    animation: fillBar 1.5s ease-out 0.5s both;
  }

  @keyframes fillBar {
    from { width: 0; }
    to { width: 94%; }
  }

  /* ── SECTION SHARED ── */
  section { padding: 96px 5%; }

  .section-inner { max-width: 1280px; margin: 0 auto; }

  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--sky);
    font-weight: 600;
    margin-bottom: 14px;
    display: block;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 20px;
  }

  .section-sub {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 540px;
    font-weight: 300;
  }

  /* ── DIFFERENTIATOR STRIP ── */
  .diff-strip {
    background: var(--navy-mid);
    padding: 0;
    overflow: hidden;
  }

  .diff-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .diff-item {
    padding: 36px 32px;
    border-right: 1px solid rgba(255,255,255,0.07);
    display: flex; align-items: flex-start; gap: 16px;
    transition: background 0.2s;
  }

  .diff-item:last-child { border-right: none; }
  .diff-item:hover { background: rgba(255,255,255,0.03); }

  .diff-icon {
    width: 44px; height: 44px;
    border-radius: 10px;
    background: rgb(22 22 22 / 15%);
    border: 1px solid rgba(42,123,181,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
  }

  .diff-text h4 {
    font-size: 14px; font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-bottom: 4px;
  }

  .diff-text p {
    font-size: 13px;
    color: #fff;
    line-height: 1.5;
    font-weight: 300;
  }

  /* ── B2B FOCUS SECTION ── */
  .b2b-section { background: var(--white); }

  .b2b-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
  }

  .b2b-tag-cloud {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-bottom: 36px;
  }

  .tag {
    padding: 8px 16px;
    border-radius: 40px;
    font-size: 13px; font-weight: 500;
    border: 1.5px solid;
  }

  .tag-navy { background: rgba(11,31,58,0.06); border-color: rgba(11,31,58,0.15); color: var(--navy); }
  .tag-sky { background: rgba(42,123,181,0.07); border-color: rgba(42,123,181,0.2); color: var(--steel); }

  .capability-list { display: flex; flex-direction: column; gap: 14px; }

  .cap-item {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 18px 20px;
    background: var(--off-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: border-color 0.2s, transform 0.2s;
  }

  .cap-item:hover { border-color: rgba(42,123,181,0.3); transform: translateX(4px); }

  .cap-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--sky);
    flex-shrink: 0;
    margin-top: 5px;
  }

  .cap-item h4 { font-size: 15px; font-weight: 500; margin-bottom: 3px; color: var(--text-dark); }
  .cap-item p { font-size: 13px; color: var(--text-light); line-height: 1.5; }

  /* ── SERVICES GRID ── */
  .services-section { background: var(--off-white); }

  .services-header {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 52px;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.2s;
    cursor: pointer;
  }

  .service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .service-card-img {
    height: 180px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 48px;
  }

  .service-card-img::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(11,31,58,0.6) 0%, transparent 60%);
  }

  .service-card-img-overlay {
    position: absolute; bottom: 14px; left: 16px; z-index: 1;
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: rgba(255,255,255,0.7); font-weight: 500;
  }

  .service-body { padding: 22px 22px 24px; }

  .service-body h3 {
    font-family: var(--serif);
    font-size: 20px; font-weight: 400;
    margin-bottom: 10px;
    color: var(--text-dark);
  }

  .service-body p {
    font-size: 14px; color: var(--text-light);
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .service-tags { display: flex; flex-wrap: wrap; gap: 6px; }

  .s-tag {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    background: rgba(42,123,181,0.08);
    color: var(--steel);
    font-weight: 500;
  }

  /* ── CONTRACT & PORTAL SECTION ── */
  .contract-section {
    background: var(--navy);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
  }

  .contract-section::before {
    content: '';
    position: absolute;
    width: 800px; height: 800px;
    border-radius: 50%;
    border: 1px solid rgba(42,123,181,0.1);
    top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .contract-section::after {
    content: '';
    position: absolute;
    width: 1100px; height: 1100px;
    border-radius: 50%;
    border: 1px solid rgba(42,123,181,0.06);
    top: 50%; left: 60%;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }

  .contract-inner {
    max-width: 1280px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    position: relative; z-index: 1;
  }

  .contract-inner .section-title { color: var(--white); }
  .contract-inner .section-sub { color: rgba(255,255,255,0.45); }

  .portal-mockup {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    overflow: hidden;
  }

  .portal-topbar {
    background: rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 12px 18px;
    display: flex; align-items: center; gap: 10px;
  }

  .portal-dot { width: 10px; height: 10px; border-radius: 50%; }

  .portal-title {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    margin-left: auto; margin-right: auto;
    letter-spacing: 0.04em;
  }

  .portal-body { padding: 20px; }

  .portal-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 8px;
    border: 1px solid rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.03);
  }

  .portal-row-left { display: flex; flex-direction: column; gap: 3px; }
  .pr-id { font-size: 11px; color:  #e4e4e4; letter-spacing: 0.06em; }
  .pr-name { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 500; }

  .status-dot {
    font-size: 11px; font-weight: 500;
    padding: 3px 10px; border-radius: 40px;
    display: flex; align-items: center; gap: 5px;
  }

  .s-active { background: rgba(40,160,100,0.15); color: #6FCFA0; }
  .s-pending { background: rgba(232,135,58,0.15); color: var(--accent-light); }
  .s-closed { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.4); }

  .contract-features { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }

  .cf-item {
    display: flex; align-items: center; gap: 14px;
    font-size: 15px; color: rgba(255,255,255,0.65);
    font-weight: 300;
  }

  .cf-item::before {
    content: '✓';
    width: 24px; height: 24px;
    background: rgba(42,123,181,0.2);
    border: 1px solid rgba(42,123,181,0.3);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: #7EC4F4;
    flex-shrink: 0;
  }

  /* ── SOCIAL PROOF ── */
  .proof-section { background: var(--white); }

  .proof-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; margin-top: 52px;
  }

  .proof-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 28px;
    transition: box-shadow 0.2s;
  }

  .proof-card:hover { box-shadow: var(--shadow); }

  .proof-stars { color: var(--accent); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }

  .proof-quote {
    font-family: var(--serif);
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
  }

  .proof-author { display: flex; align-items: center; gap: 12px; }

  .proof-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; font-size: 14px;
    flex-shrink: 0;
  }

  .av-blue { background: rgba(42,123,181,0.15); color: var(--sky); }
  .av-green { background: rgba(40,160,100,0.15); color: #28A064; }
  .av-amber { background: rgba(232,135,58,0.15); color: var(--accent); }

  .proof-name { font-size: 14px; font-weight: 600; color: var(--text-dark); }
  .proof-company { font-size: 12px; color: var(--text-light); }

  .logo-strip {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
    margin-top: 56px; padding-top: 40px;
    border-top: 1px solid var(--border);
  }

  .logo-strip-label {
    font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--text-light); width: 100%; text-align: center; margin-bottom: 20px;
  }

  .partner-badge {
    font-size: 13px; font-weight: 600;
    color: #d4e0ee;
    letter-spacing: 0.04em;
    background-color: var(--navy);
  }

  /* ── CTA ── */
  .cta-section {
    background: var(--accent);
    padding: 80px 5%;
    text-align: center;
  }

  .cta-section h2 {
    font-family: var(--serif);
    font-size: clamp(28px, 3.5vw, 46px);
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 400;
  }

  .cta-section p {
    font-size: 18px; color: rgba(255,255,255,0.75);
    margin-bottom: 36px; font-weight: 300;
    max-width: 500px; margin-left: auto; margin-right: auto;
  }

  .cta-btn {
    background: var(--navy);
    color: var(--white);
    padding: 15px 34px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 8px;
    transition: background 0.2s, transform 0.15s;
    letter-spacing: 0.01em;
  }

  .cta-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }

  /* ── FOOTER ── */
  footer {
    background: var(--navy);
    padding: 64px 5% 36px;
    border-top: 1px solid rgba(255,255,255,0.06);
  }

  .footer-inner {
    max-width: 1280px; margin: 0 auto;
  }

  .footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px; margin-bottom: 56px;
  }

  .footer-brand p {
    font-size: 14px; color: #e4e4e4;
    line-height: 1.7; margin-top: 14px;
    font-weight: 500; max-width: 300px;
  }

  .footer-col h5 {
    font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
    color:  #e4e4e4; margin-bottom: 16px; font-weight: 500;
  }

  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; padding-left:0px;font-size: 14px;font-weight:500; color:  #e4e4e4;}

  .footer-col ul a {
    font-size: 14px; color:  #e4e4e4;
    text-decoration: none; transition: color 0.2s;
    font-weight: 300;
  }

  .footer-col ul a:hover { color: rgba(255,255,255,0.85); }

  .footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 13px; color:  #e4e4e4;
  }

  .footer-contact-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(232,135,58,0.12);
    border: 1px solid rgba(232,135,58,0.2);
    border-radius: 6px;
    padding: 8px 14px;
    color: var(--accent-light);
    font-size: 13px; font-weight: 500;
  }

  /* Animated entrance */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * { animation: fadeUp 0.6s ease both; }
  .hero-content > *:nth-child(2) { animation-delay: 0.1s; }
@media screen and (max-width:991px){
    .hero-content{
       grid-template-columns:1fr;
    }
    .diff-inner,.proof-grid,.services-grid{
        grid-template-columns:repeat(2,1fr);
    }
    .portal-body{
        padding:10px;
    }
}  
@media screen and (max-width:767px){
    .hero-glow{
        width:min(100vh,600px);
    }
    .footer-grid{
        grid-template-columns:repeat(2,1fr);
    }
}
@media screen and (max-width:475px){
    .hero-content{
        padding:60px 0;
    }
    .services-header{
        flex-direction:column;
        align-items:flex-start;
    }
     .diff-inner,.proof-grid,.contract-inner,.services-grid,.b2b-grid,.hero-stats,.footer-grid{
        grid-template-columns:1fr;
    }
    .footer-bottom{
        flex-direction:column;
        align-items:center;
        text-align:center;
    }
}
.menu-toggle{
    display:none;
    background:none;
    border:none;
    font-size:28px;
    cursor:pointer;
    color:var(--accent);
}

/* Mobile */
@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:var(--navy);
        flex-direction:column;
        padding:20px;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }
}