/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
  }
  
  body {
    background-color: #fff;
    color: #fff;
    overflow-x: hidden;
  }
  
  /* Header */
  :root {
    --font-sans: "Poppins", "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 6px 20px rgba(0, 0, 0, 0.12);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.12);
    
    /* NEW REQUIRED COLORS */
    --blue: #2467C3;
    --blue-900: #1a4f91;
    --blue-700: #3c82de;
    --green: #72B87D;
    --green-900: #55915d;
    --green-700: #88c892;
    --orange: #E67B54;
    --orange-900: #b86243;
    --orange-700: #ed8c6c;
    
    --neutral-50: #f8fafc;
    --neutral-100: #f1f5f9;
    --neutral-200: #e2e8f0;
    --neutral-600: #475569;
    --neutral-800: #1f2937;
    --white: #ffffff;
    --black: #0b0f17;
  }
  
  * {
    box-sizing: border-box;
  }
  html, body {
    margin: 0;
    padding: 0;
    font-family: var(--font-sans);
    color: var(--neutral-800);
    background: var(--neutral-50);
    scroll-behavior: smooth;
  }
  img {
    max-width: 100%;
    display: block;
  }
  a {
    color: inherit;
    text-decoration: none;
  }
  
  /* Layout */
  .container {
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 20px;
  }
  .section {
    position: relative;
    padding: 96px 0;
  }
  .section .section-head {
    text-align: center;
    margin-bottom: 36px;
  }
  .section h2 {
    font-size: 40px;
    line-height: 1.15;
    margin: 0 0 10px;
  }
  .section p {
    margin: 0;
    color: var(--neutral-600);
  }
  
  /* --- HEADER / NAVBAR OVERHAUL (Floating Glass Header) --- */
  .site-header {
    position: fixed; 
    width: 100%;
    top: 0;
    z-index: 50;
    background: transparent;
    border-bottom: none;
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    animation: headerSlideDown 0.6s ease-out;
  }
  
  @keyframes headerSlideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  /* 1. Unscrolled Header Colors (Text and Toggle Bars are WHITE) */
  .site-header:not(.scrolled) .brand,
  .site-header:not(.scrolled) .nav-links a {
      color: var(--white);
  }
  .site-header:not(.scrolled) .nav-links a:hover,
  .site-header:not(.scrolled) .nav-links a:focus {
      background: rgba(255, 255, 255, 0.15);
  }
  .site-header:not(.scrolled) .nav-toggle .bar {
      background: #000;
  }
  
  .site-header.scrolled .nav-toggle .bar {
      background: #000;
  }
  
  
  /* 2. Scrolled Header Styles (Glassmorphism & Dark Text) */
  .site-header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px); 
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1); 
    border-bottom: 1px solid var(--neutral-200);
    animation: headerSlideIn 0.4s ease-out;
  }
  
  @keyframes headerSlideIn {
    from {
      transform: translateY(-10px);
      opacity: 0.8;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  
  .site-header.scrolled .brand,
  .site-header.scrolled .nav-links a {
    color: var(--neutral-800);
  }
  .site-header.scrolled .nav-links a:hover,
  .site-header.scrolled .nav-links a:focus {
    background: var(--neutral-100);
    color: var(--blue);
    transform: translateY(-1px);
  }
  
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
  }
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }
  .brand-text {
    font-weight: 700;
    font-size: 16px;
  }
  
  @media (max-width: 768px) {
    .brand-text {
      display: none;
    }
    
    .brand {
      gap: 8px;
    }
    
    .brand-logo {
      width: 45px;
      height: 45px;
    }
  }
  .nav {
    position: relative;
  }
  .nav-toggle {
    display: none;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 40px;
    height: 40px;
    z-index: 1000;
    position: relative;
  }
  
  .nav-toggle .bar {
    display: block;
    width: 24px;
    height: 3px;
    margin: 3px 0;
    background: #000;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    border-radius: 2px;
  }
  
  .nav-toggle[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: #000;
  }
  
  .nav-toggle[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
    background: #000;
  }
  
  .nav-toggle[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: #000;
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 20px;
    padding: 0;
    margin: 0;
    transition: all 0.3s ease;
  }
  
  @media (max-width: 768px) {
    /* Ensure nav-toggle is visible and black */
    .nav-toggle {
      display: flex !important;
      visibility: visible !important;
      opacity: 1 !important;
    }
    
    .nav-toggle .bar {
      background: #000 !important;
    }
    
    .site-header:not(.scrolled) .nav-toggle .bar {
      background: #000 !important;
    }
    
    .site-header.scrolled .nav-toggle .bar {
      background: #000 !important;
    }
    
    .nav-toggle[aria-expanded="true"] .bar {
      background: #000 !important;
    }
    
    /* Mobile nav-links styling */
    .nav-links {
      position: fixed;
      top: 70px;
      left: 0;
      right: 0;
      bottom: 0;
      width: 85%;
      max-width: 320px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      flex-direction: column;
      padding: 40px 0 30px;
      gap: 0;
      transform: translateX(-100%);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 5px 0 30px rgba(0, 0, 0, 0.15);
      z-index: 999;
      overflow-y: auto;
      max-height: calc(100vh - 70px);
      display: none;
    }
    
    .nav-links.active {
      display: flex;
      transform: translateX(0);
      opacity: 1;
      visibility: visible;
    }
    
    .nav-links li {
      width: 100%;
      border-bottom: 1px solid rgba(0, 0, 0, 0.08);
      animation: slideInFromLeft 0.4s ease-out backwards;
    }
    
    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { animation-delay: 0.4s; }
    
    @keyframes slideInFromLeft {
      from {
        opacity: 0;
        transform: translateX(-30px);
      }
      to {
        opacity: 1;
        transform: translateX(0);
      }
    }
    
    .nav-links a {
      display: block;
      padding: 20px 25px;
      width: 100%;
      color: var(--neutral-800);
      border-radius: 0;
      font-size: 16px;
      font-weight: 600;
      transition: all 0.3s ease;
      position: relative;
    }
    
    .nav-links a::before {
      content: '';
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 0;
      background: linear-gradient(180deg, #287DB3, #6AAD75);
      border-radius: 0 4px 4px 0;
      transition: height 0.3s ease;
    }
    
    .nav-links a:hover,
    .nav-links a:active {
      background: linear-gradient(90deg, rgba(40, 125, 179, 0.08), transparent);
      color: var(--blue);
      padding-left: 30px;
    }
    
    .nav-links a:hover::before,
    .nav-links a:active::before {
      height: 60%;
    }
    
    .site-header.scrolled .nav-links {
      background: rgba(255, 255, 255, 0.98);
    }
    
    .site-header:not(.scrolled) .nav-links {
      background: rgba(255, 255, 255, 0.98);
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
      content: '';
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 998;
      animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }
  }
  .nav-links a {
    font-weight: 600;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    transition: all 200ms ease, transform 200ms ease;
    position: relative;
    overflow: hidden;
  }
  
  .nav-links a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--blue);
    transform: translateX(-50%);
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover::before {
    width: 80%;
  }
  
  .site-header.scrolled .nav-links a::before {
    background: var(--blue);
  }
  
  /* --- BUTTONS --- */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
    transition: all 250ms ease;
    box-shadow: var(--shadow-sm);
  }
  
  .btn-light {
    background-color: var(--white);
    color: var(--blue-900);
    border-color: var(--white);
  }
  .btn-light:hover {
    background-color: var(--neutral-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
  }
  
  .btn-outline {
    background-color: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    box-shadow: none;
  }
  .btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
    transform: translateY(-1px);
  }
  .btn-outline:focus {
    outline: 2px solid var(--orange);
  }
  
  .btn:active {
    transform: translateY(1px) scale(0.995);
  }
  
  
  /* Hero (Blue) - TRICOLOR FUSION */
  .theme-blue {
    background-color: var(--blue);
    background-image: 
      radial-gradient(circle at 15% 85%, var(--orange-700) 0%, transparent 40%),
      radial-gradient(circle at 85% 15%, var(--green-700) 0%, transparent 35%),
      linear-gradient(135deg, var(--blue) 0%, var(--blue-900) 100%);
    
    color: var(--white);
    background-size: cover;
    animation: color-shift 40s linear infinite alternate;
  }
  
  @keyframes color-shift {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
  }
  
  .hero {
    position: relative;
    overflow: hidden;
    padding: 100px 0 108px;
    min-height: 85vh;
    display: flex;
    align-items: center;
  }
  
  .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(60% 80% at 80% 20%, rgba(255, 255, 255, 0.18) 0%, transparent 55%),
                radial-gradient(65% 70% at 10% 90%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
    mix-blend-mode: screen;
    opacity: 0.7;
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
  }
  
  @keyframes heroGlow {
    0% {
      opacity: 0.6;
      transform: scale(1);
    }
    100% {
      opacity: 0.8;
      transform: scale(1.05);
    }
  }
  
  /* Floating particles animation */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
      radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.3), transparent),
      radial-gradient(2px 2px at 60px 70px, rgba(255, 255, 255, 0.2), transparent),
      radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.25), transparent),
      radial-gradient(1px 1px at 130px 80px, rgba(255, 255, 255, 0.2), transparent),
      radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.3), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    opacity: 0.4;
    animation: floatParticles 20s linear infinite;
    pointer-events: none;
    z-index: 0;
  }
  
  @keyframes floatParticles {
    0% {
      transform: translateY(0) translateX(0);
    }
    100% {
      transform: translateY(-100px) translateX(50px);
    }
  }
  
  .hero-wrapper {
    /* MODIFIED: Ensure content is centered when no side media exists */
    display: grid;
    grid-template-columns: 1fr; /* Single column */
    gap: 48px;
    align-items: center;
    justify-items: center; /* Center content horizontally */
    position: relative;
    z-index: 1;
  }
  
  .hero-content {
    max-width: 720px; /* Increased max-width for centered content */
    text-align: center; /* Center all text elements */
    animation: heroFadeIn 1s ease-out;
  }
  
  @keyframes heroFadeIn {
    from {
      opacity: 0;
      transform: translateY(40px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-eyebrow {
    animation: fadeInUp 0.8s ease-out 0.2s both;
  }
  
  .hero h1 {
    animation: fadeInUp 0.8s ease-out 0.4s both;
  }
  
  .hero .subtitle {
    animation: fadeInUp 0.8s ease-out 0.6s both;
  }
  
  .hero-actions {
    animation: fadeInUp 0.8s ease-out 0.8s both;
  }
  
  .hero-video-container {
    animation: fadeInUp 0.8s ease-out 1s both;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }
  
  .hero-highlight {
    color: var(--green-700); /* Adjusted to green-700 for better contrast */
  }
  
  .hero h1 {
    font-size: clamp(42px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 800;
    margin: 18px 0 18px;
    letter-spacing: -0.02em;
    width: 125%;
    margin-left: -70px;
    text-shadow: 0 4px 18px rgba(0, 0, 0, 0.28);
  }
  
  .hero .subtitle {
    color: rgba(255, 255, 255, 0.94);
    font-size: 20px;
    margin: 0 auto 36px; /* Center subtitle */
    font-weight: 500;
    max-width: 640px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  }
  
  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
    justify-content: center; /* Center buttons */
  }
  
  /* Hero Video Play Button */
  .hero-video-container {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .play-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .play-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
  }
  
  .play-btn:hover::before {
    width: 300px;
    height: 300px;
  }
  
  .play-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 18px;
    padding-left: 4px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
  }
  
  .play-btn:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  }
  
  .play-btn:hover i {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
  }
  
  .play-btn-text {
    position: relative;
    z-index: 1;
    letter-spacing: 0.5px;
  }
  
  .play-btn:active {
    transform: translateY(-1px) scale(1.02);
  }
  
  .hero-metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    padding-top: 28px;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    justify-content: center; /* Center metrics */
  }
  
  .metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 150px; /* Reduced minimum width slightly */
  }
  
  .metric-value {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--white);
  }
  
  .metric-label {
    font-size: 13px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
  }
  
  /* All hero-media related styles (image, meta, card) are removed for simplicity */
  
  /* --- SCROLL INDICATOR --- */
  .scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding-top: 6px;
  }
  
  .scroll-indicator .mouse {
    width: 4px;
    height: 8px;
    background: var(--white);
    border-radius: 2px;
    animation: scroll-anim 1.8s infinite;
  }
  
  @keyframes scroll-anim {
    0% { opacity: 0; transform: translateY(-4px); }
    30% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
  }
  
  
  @media (min-width: 900px) {
    /* Since the media section is removed, the hero wrapper is always 1 column */
    .hero-wrapper {
      grid-template-columns: 1fr;
    }
  
    .hero .subtitle {
      font-size: 22px;
    }
  }
  
  @media (max-width: 768px) {
    .hero {
      padding: 136px 0 96px;
      min-height: 80vh;
    }
  
    /* Ensure all content centering is maintained on mobile */
    .hero-actions {
      justify-content: center;
      flex-direction: column;
      align-items: center;
    }
    
    .hero-actions .btn {
      width: 100%;
      max-width: 280px;
    }
  
    .hero-metrics {
      justify-content: center;
      text-align: center;
      gap: 16px;
    }
    
    .play-btn {
      padding: 14px 28px;
      font-size: 14px;
    }
    
    .play-btn i {
      width: 45px;
      height: 45px;
      font-size: 16px;
    }
    
    .play-btn-text {
      font-size: 14px;
    }
  }
  
  @media (max-width: 480px) {
    .hero {
      padding: 120px 0 80px;
      min-height: 75vh;
    }
    
    .hero h1 {
      font-size: clamp(32px, 8vw, 42px);
      margin-left: -30px;
    }
    
    .hero .subtitle {
      font-size: 16px;
    }
    
    .play-btn {
      padding: 12px 24px;
      flex-direction: column;
      gap: 8px;
    }
    
    .play-btn-text {
      font-size: 12px;
    }
  }
  
  /* Video Modal */
  .video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 2000;
  }
  
  .video-content {
    position: relative;
    width: 80%;
    max-width: 900px;
  }
  
  .video-content iframe {
    width: 100%;
    height: 500px;
    border-radius: 10px;
    animation: modalFadeIn 0.4s ease-out;
  }
  
  @keyframes modalFadeIn {
    from {
      opacity: 0;
      transform: scale(0.9);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .video-modal {
    animation: backdropFadeIn 0.3s ease-out;
  }
  
  @keyframes backdropFadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  
  .close-btn {
    position: absolute;
    top: -35px;
    right: 0;
    font-size: 32px;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .close-btn:hover {
    color: #E17149;
  }
  
  @media (max-width: 1024px) {
    .navbar {
      padding: 18px 40px;
    }
  
    .navbar.scrolled {
      padding: 15px 40px;
    }
  
    .nav-links {
      gap: 24px;
    }
  
    .hero {
      padding: 100px 6% 60px;
    }
  
    .hero-content h1 {
      font-size: 2.8rem;
    }
  
    .hero-content p {
      font-size: 1.05rem;
    }
  
    .hero-stats {
      gap: 40px;
    }
  
    .stat-number {
      font-size: 2rem;
    }
  
    .play-btn-container {
      right: 5%;
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      padding: 18px 20px;
    }
  
    .navbar.scrolled {
      justify-content: space-between;
      padding: 14px 20px;
    }
  
    .logo h2 {
      display: none;
    }
  
    .nav-wrapper {
      position: fixed;
      top: 0;
      right: 0;
      height: 100%;
      width: min(320px, 75%);
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      background: linear-gradient(200deg, rgba(12, 38, 64, 0.98), rgba(40, 125, 179, 0.92));
      box-shadow: -12px 0 35px rgba(8, 21, 40, 0.4);
      padding: 110px 32px 48px;
      transform: translateX(100%);
      opacity: 0;
      transition: transform 0.35s ease, opacity 0.35s ease;
      z-index: 950;
    }
  
    .nav-links {
      flex-direction: column;
      gap: 22px;
    }
  
    .nav-links li a {
      font-size: 1.05rem;
      font-weight: 500;
    }
  
    .nav-toggle {
      display: flex;
    }
  
    .hero {
      padding: 100px 7% 60px;
      min-height: auto;
    }
  
    .hero-content {
      margin-bottom: 40px;
    }
  
    .hero-badge {
      font-size: 0.65rem;
      padding: 8px 20px;
    }
  
    .hero-content h1 {
      font-size: 2rem;
    }
  
    .hero-content p {
      font-size: 1rem;
    }
  
    .hero-buttons {
      margin-bottom: 50px;
    }
  
    .btn {
      padding: 12px 28px;
      font-size: 0.95rem;
    }
  
    .hero-stats {
      gap: 30px;
      padding-top: 30px;
    }
  
    .stat-number {
      font-size: 1.8rem;
    }
  
    .stat-label {
      font-size: 0.7rem;
    }
  
    .play-btn-container {
      position: relative;
      right: auto;
      top: auto;
      margin-top: 30px;
      transform: none;
    }
  
    .play-btn {
      width: 60px;
      height: 60px;
      font-size: 24px;
    }
  
    .video-content iframe {
      height: 300px;
    }
  }
  
  @media (max-width: 768px) {
    .video-content {
      width: 90%;
      max-width: 100%;
    }
    
    .video-content iframe {
      height: 400px;
    }
  }
  
  @media (max-width: 600px) {
    .video-content {
      width: 95%;
    }
    
    .video-content iframe {
      height: 300px;
    }
    
    .close-btn {
      top: -30px;
      font-size: 28px;
    }
  }
  
  @media (max-width: 600px) {
    .navbar {
      padding: 15px 20px;
    }
  
    .logo h2 {
      font-size: 16px;
    }
  
    .hero {
      padding: 90px 5% 50px;
    }
  
    .hero-badge {
      font-size: 0.6rem;
      padding: 6px 16px;
      margin-bottom: 20px;
    }
  
    .hero-content h1 {
      font-size: 1.7rem;
    }
  
    .hero-content p {
      font-size: 0.95rem;
    }
  
    .hero-buttons {
      flex-direction: column;
      gap: 15px;
      margin-bottom: 40px;
    }
  
    .btn {
      width: 100%;
      max-width: 280px;
    }
  
    .hero-stats {
      flex-direction: column;
      gap: 25px;
      padding-top: 25px;
    }
  
    .stat-number {
      font-size: 1.6rem;
    }
  
    .stat-label {
      font-size: 0.65rem;
    }
  
    .play-btn-container {
      margin-top: 30px;
    }
  
    .play-btn {
      width: 55px;
      height: 55px;
      font-size: 20px;
    }
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(30px);
    }
  
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Events Scrolling Section */
  
  /* Footer Section */
  .site-footer {
    background: linear-gradient(135deg, #2467C3 0%, #0f2d4a 100%);
    color: #ffffff;
    padding: 80px 8% 30px;
    position: relative;
    overflow: hidden;
  }
  
  .site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  }
  
  .site-footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: 
      radial-gradient(circle at 20% 30%, rgba(40, 125, 179, 0.1) 0%, transparent 50%),
      radial-gradient(circle at 80% 70%, rgba(106, 173, 117, 0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }
  
  .footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
    animation: footerFadeIn 0.8s ease-out;
  }
  
  @keyframes footerFadeIn {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Footer Brand */
  .footer-brand {
    max-width: 350px;
  }
  
  .footer-logo {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
  }
  
  .footer-logo:hover {
    transform: scale(1.1) rotate(5deg);
  }
  
  .footer-brand-name {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
    letter-spacing: 0.5px;
  }
  
  .footer-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
  }
  
  /* Footer Headings */
  .footer-heading {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #287DB3, #6AAD75);
    border-radius: 2px;
  }
  
  /* Footer Links */
  .footer-links {
    position: relative;
  }
  
  .footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer-nav li {
    margin-bottom: 12px;
  }
  
  .footer-nav a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
  }
  
  .footer-nav a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.3s ease;
    color: #6AAD75;
  }
  
  .footer-nav a:hover {
    color: #ffffff;
    padding-left: 20px;
    transform: translateX(5px);
  }
  
  .footer-nav a:hover::before {
    opacity: 1;
    transform: translateX(0);
  }
  
  /* Contact Info */
  .footer-contact {
    position: relative;
  }
  
  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }
  
  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  .contact-item i {
    color: #6AAD75;
    font-size: 1.1rem;
    margin-top: 3px;
    min-width: 20px;
    transition: transform 0.3s ease, color 0.3s ease;
  }
  
  .contact-item:hover i {
    transform: scale(1.2);
    color: #287DB3;
  }
  
  .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
  .contact-item a:hover {
    color: #ffffff;
  }
  
  /* Social Links */
  .footer-social {
    position: relative;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
  }
  
  .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }
  
  .social-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--social-color-1), var(--social-color-2));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 12px;
  }
  
  .social-link:hover::before {
    opacity: 1;
  }
  
  .social-link i {
    position: relative;
    z-index: 1;
    transition: transform 0.4s ease;
  }
  
  .social-link:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .social-link:hover i {
    transform: rotate(360deg);
  }
  
  .social-link.instagram {
    --social-color-1: #E4405F;
    --social-color-2: #F77737;
  }
  
  .social-link.facebook {
    --social-color-1: #1877F2;
    --social-color-2: #42A5F5;
  }
  
  .social-link.linkedin {
    --social-color-1: #0077B5;
    --social-color-2: #00A0DC;
  }
  
  /* Footer Bottom */
  .footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
  }
  
  .footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
  }
  
  /* Responsive Footer */
  @media (max-width: 1024px) {
    .footer-content {
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
    }
  }
  
  @media (max-width: 900px) {
    .site-footer {
      padding: 60px 6% 25px;
    }
  
    .footer-content {
      grid-template-columns: 1fr 1fr;
      gap: 40px;
    }
  
    .footer-brand {
      grid-column: 1 / -1;
      max-width: 100%;
    }
  
    .footer-social {
      grid-column: 1 / -1;
    }
  }
  
  @media (max-width: 680px) {
    .site-footer {
      padding: 50px 5% 20px;
    }
  
    .footer-content {
      grid-template-columns: 1fr;
      gap: 35px;
    }
  
    .footer-brand {
      grid-column: 1;
      text-align: center;
    }
  
    .footer-logo {
      margin: 0 auto 20px;
    }
  
    .footer-heading {
      text-align: center;
    }
  
    .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
    }
  
    .footer-nav {
      text-align: center;
    }
  
    .footer-nav a {
      padding-left: 0;
    }
  
    .footer-nav a::before {
      display: none;
    }
  
    .footer-nav a:hover {
      padding-left: 0;
      transform: none;
    }
  
    .contact-info {
      align-items: center;
      text-align: center;
    }
  
    .contact-item {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .social-links {
      justify-content: center;
    }
  
    .footer-social {
      grid-column: 1;
    }
  }
  
  @media (max-width: 480px) {
    .site-footer {
      padding: 40px 4% 20px;
    }
  
    .footer-brand-name {
      font-size: 1.3rem;
    }
  
    .footer-description {
      font-size: 0.9rem;
    }
  
    .footer-heading {
      font-size: 1.1rem;
    }
  
    .social-link {
      width: 45px;
      height: 45px;
      font-size: 1.1rem;
    }
  }
  /* ============================= */
/* 🌿 COWORKING SECTION STYLES */
/* ============================= */

.coworking-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
  }
  
  .coworking-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(40, 125, 179, 0.15), transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
  }
  
  .coworking-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 113, 73, 0.15), transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
  }
  
  .coworking-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
  }
  
  .coworking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(40, 125, 179, 0.1);
    padding: 40px;
    transition: all 0.4s ease;
  }
  
  .coworking-card.reverse {
    flex-direction: row-reverse;
  }
  
  .coworking-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(40, 125, 179, 0.15);
  }
  
  .coworking-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }
  
  .coworking-content {
    flex: 1;
  }
  
  .coworking-content h3 {
    color: #287DB3;
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .coworking-content p {
    color: #444;
    line-height: 1.8;
    font-size: 1.05rem;
  }
  
  .coworking-img {
    flex: 0 0 380px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(40, 125, 179, 0.1);
  }
  
  .coworking-img img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    transition: transform 0.5s ease;
  }
  
  .coworking-img:hover img {
    transform: scale(1.05);
  }
  
  /* ============================= */
  /* 📱 RESPONSIVE DESIGN */
  /* ============================= */
  
  @media (max-width: 992px) {
    .coworking-card {
      flex-direction: column !important;
      text-align: center;
      padding: 30px;
    }
  
    .coworking-img {
      width: 90%;
      margin-top: 20px;
    }
  
    .coworking-content h3 {
      font-size: 1.3rem;
    }
  
    .coworking-content p {
      font-size: 0.95rem;
    }
  
    .coworking-icon img {
      width: 50px;
      height: 50px;
      margin-bottom: 15px;
    }
  }
  
  @media (max-width: 480px) {
    .coworking-section {
      padding: 60px 5%;
    }
  
    .coworking-content p {
      font-size: 0.9rem;
    }
  
    .coworking-img {
      width: 100%;
    }
  }
/* 🌿 Coworking Facilities Section */
.coworking-section {
    background: linear-gradient(180deg, #ffffff 0%, #f9fafc 100%);
    padding: 100px 8%;
    position: relative;
  }
  
  .coworking-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(40, 125, 179, 0.1), transparent 70%);
    top: -80px;
    left: -80px;
    border-radius: 50%;
  }
  
  .coworking-section::after {
    content: "";
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(106, 173, 117, 0.1), transparent 70%);
    bottom: -80px;
    right: -80px;
    border-radius: 50%;
  }
  
  .coworking-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
  }
  
  /* Each card */
  .coworking-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 25px rgba(40, 125, 179, 0.1);
    transition: all 0.4s ease;
  }
  
  .coworking-card.reverse {
    flex-direction: row-reverse;
  }
  
  .coworking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(40, 125, 179, 0.15);
  }
  
  /* Gradient design for lab section */
  .gradient-card {
    background: linear-gradient(135deg, #287DB3, #6AAD75);
    color: #fff;
    box-shadow: 0 10px 30px rgba(40, 125, 179, 0.25);
  }
  
  .gradient-card .coworking-text h3 {
    color: #fff;
  }
  
  .gradient-card .coworking-text p {
    color: #f9f9f9;
  }
  
  .coworking-placeholder {
    flex: 0 0 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    height: 200px;
    text-align: center;
  }
  
  /* Text and image styling */
  .coworking-text {
    flex: 1;
  }
  
  .coworking-text h3 {
    color: #287DB3;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;
  }
  
  .coworking-text p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
  }
  
  .coworking-img {
    flex: 0 0 350px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(40, 125, 179, 0.1);
  }
  
  .coworking-img img {
    width: 100%;
    border-radius: 16px;
    transition: transform 0.6s ease;
  }
  
  .coworking-img:hover img {
    transform: scale(1.05);
  }
  
  /* 📱 Responsive */
  @media (max-width: 992px) {
    .coworking-card,
    .coworking-card.reverse {
      flex-direction: column;
      text-align: center;
      padding: 30px;
    }
  
    .coworking-img {
      width: 90%;
      margin: 20px auto 0;
      flex: 0 0 150px;
    }
  
    .coworking-placeholder {
      width: 100%;
      height: 180px;
      font-size: 1rem;
    }
  
    .coworking-text h3 {
      font-size: 1.4rem;
    }
  
    .coworking-text p {
      font-size: 0.95rem;
    }
  }
  
  @media (max-width: 480px) {
    .coworking-section {
      padding: 60px 5%;
    }
  
    .coworking-text p {
      font-size: 0.9rem;
    }
  
    .coworking-img {
      width: 100%;
      flex: 0 0 150px;
    }
  }
/* ============================= */
/* 📸 JIC GALLERY SECTION */
/* ============================= */

.gallery-section {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 100px 8%;
    position: relative;
    overflow: hidden;
  }
  
  .gallery-section::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(40, 125, 179, 0.1), transparent 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
  }
  
  .gallery-section::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225, 113, 73, 0.1), transparent 70%);
    bottom: -100px;
    right: -100px;
    border-radius: 50%;
  }
  
  /* Grid layout */
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(250px, 1fr));
    grid-auto-rows: 220px;
    gap: 20px;
    margin-top: 60px;
  }
  
  .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(40, 125, 179, 0.1);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: transform 0.5s ease, filter 0.4s ease;
  }
  
  .gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(85%);
  }
  
  .gallery-item::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(40, 125, 179, 0.3), rgba(106, 173, 117, 0.3));
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  
  .gallery-item:hover::after {
    opacity: 1;
  }
  
  /* Size variations for layout interest */
  .gallery-item.tall {
    grid-row: span 2;
  }
  
  .gallery-item.wide {
    grid-column: span 2;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .gallery-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      grid-auto-rows: 200px;
    }
  
    .gallery-item.tall {
      grid-row: span 1;
    }
  
    .gallery-item.wide {
      grid-column: span 1;
    }
  }
  
  @media (max-width: 600px) {
    .gallery-section {
      padding: 60px 5%;
    }
  
    .gallery-grid {
      grid-template-columns: 1fr 1fr;
      grid-auto-rows: 180px;
      gap: 15px;
    }
  
    .gallery-item {
      border-radius: 10px;
    }
  }

/* Ensure header and mobile nav are above everything */
.site-header {
  z-index: 1000 !important;
}

.nav-toggle {
  z-index: 1001 !important;
  pointer-events: auto !important;
  touch-action: manipulation !important;
}

.nav-links {
  z-index: 1002 !important;
}

/* Mobile navigation fixes */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    touch-action: manipulation !important;
    -webkit-tap-highlight-color: transparent;
  }
  
  .nav-toggle .bar {
    pointer-events: none;
  }
  
  .nav-links {
    pointer-events: auto !important;
    touch-action: manipulation !important;
  }
  
  .nav-links.active {
    pointer-events: auto !important;
  }
}

/* Modern mobile sidebar nav - slides from right, beautiful shadow, overlay */
@media (max-width: 800px) {
  /* Change direction to right, improve look */
  .nav-links {
    left: auto !important;
    right: 0 !important;
    transform: translateX(100%) !important;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    box-shadow: -8px 0 30px rgba(0,0,0,0.16);
    background: rgba(255,255,255,0.98);
    padding: 54px 0 36px 0 !important;
    border-left: 1.5px solid #ececec;
    border-right: none;
    outline: none;
    height: 100vh;
    top: 0 !important;
    bottom: 0 !important;
    max-width: 310px;
    min-width: 220px;
    width: 80vw;
    transition: transform 0.43s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
  }
  .nav-links.active {
    transform: translateX(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: flex !important;
  }
  .nav-links li {
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1.5px solid #eff1f6;
    transition: background 0.18s;
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    font-size: 1.11rem;
    font-weight: 600;
    color: #144169;
    padding: 20px 32px 18px 28px;
    letter-spacing: 0.15px;
    border-radius: 12px;
    background: none;
    transition: background 0.18s, color 0.18s;
    margin: 0;
    width: 100%;
  }
  .nav-links a:hover,
  .nav-links a:focus {
    background: linear-gradient(90deg, #eef6ff 0%, #f9fcff 100%);
    color: #2467C3;
  }

  /* Overlay when menu is open */
  body.menu-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(23,38,56,0.44);
    z-index: 998;
    animation: fadeIn 0.27s cubic-bezier(.4,0,.2,1);
    pointer-events: all;
    touch-action: manipulation;
  }
  /* Make sure sidebar is above everything */
  .nav-links,
  .nav-links.active {
    z-index: 1002 !important;
  }
  /* Smooth overlay fade-in */
  @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* Hide scroll on html/body when sidebar open */
  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    touch-action: none;
  }
}

/* FORCE modern mobile sidebar nav on ALL pages, even with other CSS present */
@media (max-width: 800px) {
  .site-header .nav-links, .nav .nav-links {
    position: fixed !important;
    top: 0 !important;
    left: auto !important;
    right: 0 !important;
    width: 82vw !important;
    min-width: 200px !important;
    max-width: 330px !important;
    height: 100vh !important;
    background: rgba(255,255,255,0.98) !important;
    box-shadow: -8px 0 30px rgba(0,0,0,0.14);
    border-top-left-radius: 20px;
    border-bottom-left-radius: 20px;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    padding: 54px 0 36px 0 !important;
    z-index: 1002 !important;
    opacity: 0;
    overflow-y: auto;
    pointer-events: none;
    transform: translateX(101%) !important;
    transition: transform 0.4s cubic-bezier(.4,0,.2,1), opacity 0.4s cubic-bezier(.4,0,.2,1);
  }
  .site-header .nav-links.active, .nav .nav-links.active {
    opacity: 1 !important;
    pointer-events: all;
    transform: translateX(0) !important;
    visibility: visible !important;
    display: flex !important;
  }
  .site-header .nav-links li, .nav .nav-links li {
    border-bottom: 1.5px solid #eff1f6;
    width: 100%;
    margin: 0;
  }
  .site-header .nav-links a, .nav .nav-links a {
    padding: 20px 32px 18px 28px !important;
    font-size: 1.08rem !important;
    color: #174391 !important;
    font-weight: 600;
    width: 100%;
    background: transparent;
    transition: background 0.15s, color 0.15s;
  }
  .site-header .nav-links a:hover, .nav .nav-links a:hover {
    background: #ecf5ff;
    color: #2467C3;
  }
}
