 
        /* Softened the weights: Montserrat 700 for titles, Inter for body */
        @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');
        
        :root {
            --primary-navy: #0a2046;
            --accent: #FDD032;
        }
        .bg-primary { background-color: var(--primary-navy); }
        .text-primary { color: var(--primary-navy); }
        .bg-accent { background-color: var(--accent); }
        .text-accent { color: var(--accent); }
        
        html { scroll-behavior: smooth; }
        body { font-family: 'Inter', sans-serif; overflow-x: hidden; }

        /* REFINED BRAND TYPOGRAPHY - Less heavy, more balanced */
        .hero-title {
            font-family: 'Montserrat', sans-serif;
            letter-spacing: -0.02em; /* Reduced negative tracking for better legibility */
            line-height: 1.1;
            text-transform: uppercase;
        }

        .nav-link.active { color: var(--accent); border-bottom: 2px solid var(--accent); }
.nav-link {
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #FDD032;
  transition: width 0.3s ease;
}

.nav-link.text-tvYellow::after {
  width: 100%;
}

        .logo-img {
            height: 40px;
            width: auto;
            object-fit: contain;
        }
 /* OFFSET YELLOW BACKGROUND EFFECT */
        .img-wrapper {
            position: relative;
            z-index: 10;
        }

        .img-wrapper::before {
            content: '';
            position: absolute;
            top: 12px;
            left: 12px;
            right: -12px;
            bottom: -12px;
            background-color: var(--accent);
            z-index: -1;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .service-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            border-top: 4px solid transparent;
        }
        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
            border-top: 4px solid var(--accent);
        }

        #detail-view, #blog-post-view {
            transition: opacity 0.3s ease, transform 0.3s ease;
        }
        .hidden-view {
            display: none;
            opacity: 0;
            transform: translateY(20px);
        }
        .active-view {
            display: block;
            opacity: 1;
            transform: translateY(0);
        }

        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25D366;
            color: #FFF;
            border-radius: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 2px 2px 10px rgba(0,0,0,0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }
        .whatsapp-float:hover { transform: scale(1.1); }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        .category-pill.active {
            background-color: var(--primary-navy);
            color: white;
            border-color: var(--primary-navy);
        }

    .brand-tech { color: #0B3C5D; font-weight: 600; }
    .brand-vanta { color: #F5C518; font-weight: 600; }

    .nav-link.active {
    color: #F4C430; /* tvYellow */
    position: relative;
  }
  .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #F4C430;
  }
  /* Default menu link */
header nav a {
  color: black;
  transition: color 0.2s ease;
}

/* Default menu link */
header nav a {
  color: black;
  transition: color 0.2s ease;
}

/* Neutral hover for non-active links */
header nav a:hover {
  color:yellow; /* light gray */
}


/* ACTIVE service only */
body.page-business #nav-business,
body.page-gis #nav-gis,
body.page-physical #nav-physical,
body.page-cyber #nav-cyber,
body.page-managed #nav-managed, 
body.page-hard #nav-hard 
{
  color: #facc15; /* yellow */
  font-weight: 600;
  border-bottom: 2px solid #facc15;
}


  body.page-business #nav-business:hover,
body.page-gis #nav-gis:hover,
body.page-physical #nav-physical:hover,
body.page-cyber #nav-cyber:hover,
body.page-managed #nav-managed:hover, 
body.page-hard #nav-hard :hover
{
    color: #facc15;
}

  