:root {

  /* Page background */
  --background: rgb(1 41 70); /* #012946 */

  /* Primary text color */
  --foreground: rgb(255 255 255);

  /* Card background */
  --card: rgb(6 55 90); /* slightly lighter than bg */

  /* Card text color */
  --card-foreground: rgb(255 255 255);

  /* Primary buttons and links */
  --primary: rgb(255 176 0); /* accent used as CTA */

  /* Text color on primary buttons */
  --primary-foreground: rgb(20 20 20);

  /* Secondary button background */
  --secondary: rgb(255 255 255);

  /* Text colour on secondary buttons */
  --secondary-foreground: rgb(1 41 70);

  /* Muted (lighter) background */
  --muted: rgb(10 60 95);

  /* Muted (lighter) text colour */
  --muted-foreground: rgb(180 200 215);

  /* Subtler than muted background */
  --faint: rgb(15 70 110);

  /* Subtler than muted text color */
  --faint-foreground: rgb(140 170 190);

  /* Accent background */
  --accent: rgb(255 176 0);

  /* Accent text color */
  --accent-foreground: rgb(20 20 20);

  /* Error/danger color */
  --danger: rgb(239 83 80);

  /* Text color on danger background */
  --danger-foreground: rgb(255 255 255);

  /* Success color */
  --success: rgb(76 175 80);

  /* Text colour on success background */
  --success-foreground: rgb(255 255 255);

  /* Warning color */
  --warning: rgb(255 176 0);

  /* Text colour on warning background */
  --warning-foreground: rgb(20 20 20);

  /* Border color (boxes) */
  --border: rgb(255 255 255 / 0.12);

  /* Input borders */
  --input: rgb(255 255 255 / 0.18);

  /* Focus ring color */
  --ring: rgb(255 176 0);
}


  :root {
    --primary: #012946;
    --secondary: #ffffff;
    --accent: #ffb000;
    --text-muted: rgba(255, 255, 255, 0.72);
    --border: rgba(255, 255, 255, 0.1);
    --card-bg: rgba(255, 255, 255, 0.06);
    --shadow: 0 18px 60px rgba(0, 0, 0, 0.25);
  }

  html {
    scroll-behavior: smooth;
  }

  body {
    background: var(--primary);
    color: var(--secondary);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    overflow-x: hidden;
  }

  /*------------------------------------------------*/
  /*-------------------- Navbar --------------------*/
  /*------------------------------------------------*/
  .site-navbar {
    background: rgba(1, 41, 70, 0.78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .navbar-brand {
    letter-spacing: 0.4px;
  }

  .nav-link {
    color: rgba(255, 255, 255, 0.82) !important;
    transition: color 0.25s ease, opacity 0.25s ease;
  }

  .nav-link:hover {
    color: var(--secondary) !important;
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px; /* Adds distance from the nav item */
    transition: text-decoration-color 0.3s ease, text-underline-offset 0.3s ease, box-shadow 0.3s ease; /* Subtle animation */
  }

  .nav-link.active {
    color: var(--secondary) !important;
    /* font-weight: bold; */
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-underline-offset: 4px; /* Adds distance from the nav item */
    transition: color 0.3s ease, text-decoration-color 0.3s ease, text-underline-offset 0.3s ease; /* Subtle animation */
  }


  /*------------------------------------------------*/
  /*-------------------- Buttons --------------------*/
  /*------------------------------------------------*/
  .btn-accent {
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #102030;
    font-weight: 700;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
  }

  .btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(255, 176, 0, 0.25);
    background: var(--accent);
    border: 1px solid var(--accent);
    color: #102030;
  }

  .btn-outline-light {
    border-color: rgba(255, 255, 255, 0.3);
  }

  .btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.45);
    color: white; /* No color change on hover */
  }


  /*------------------------------------------------*/
  /*-------------------- sidebar --------------------*/
  /*------------------------------------------------*/
  .mobile-sidebar {
    background: #042440;
    color: var(--secondary);
    width: 290px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-sidebar .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
  }

  .sidebar-nav a {
    color: rgba(255, 255, 255, 0.84);
    text-decoration: none;
    font-size: 1.05rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .sidebar-nav a:hover {
    color: var(--secondary);
  }

  .sidebar-card {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
  }

  .text-muted {
    color: rgba(255, 255, 255, 0.55) !important;
  }



  /*------------------------------------------------*/
  /*-------------------- Hero --------------------*/
  /*------------------------------------------------*/
  .hero-section {
    position: relative;
    min-height: 90vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
      radial-gradient(circle at 20% 20%, rgba(255, 176, 0, 0.08), transparent 28%),
      radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.04), transparent 30%),
      var(--primary);
  }

  .hero-section::before,
  .hero-section::after {
    content: "";
    position: absolute;
    inset: -20%;
    pointer-events: none;
  }

  .hero-section::before {
    background:
      radial-gradient(circle at center,
        rgba(255, 255, 255, 0.12) 0%,
        rgba(255, 176, 0, 0.10) 14%,
        rgba(255, 176, 0, 0.04) 28%,
        transparent 55%);
    filter: blur(20px);
    opacity: 0.7;
    animation: spotlightMove 10s ease-in-out infinite;
  }

  .hero-section::after {
    background:
      radial-gradient(circle at 30% 30%, rgba(255, 176, 0, 0.10), transparent 32%),
      radial-gradient(circle at 75% 55%, rgba(255, 255, 255, 0.08), transparent 35%);
    filter: blur(35px);
    opacity: 0.55;
    animation: driftGlow 14s ease-in-out infinite;
  }

  .hero-content {
    z-index: 1;
  }

  .eyebrow {
    color: var(--accent);
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    font-size: 0.8rem;
  }

  .hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .meta-item {
    min-width: 160px;
    padding: 1rem 1.1rem;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 18px;
  }

  .meta-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--secondary);
  }

  .meta-item span {
    color: var(--text-muted);
    font-size: 0.95rem;
  }

  .glass-card,
  .feature-card,
  .content-box,
  .contact-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .glass-card {
    position: relative;
    overflow: hidden;
  }

  .glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, rgba(255,255,255,0.10), transparent 45%);
    pointer-events: none;
  }

  .mini-stats {
    display: grid;
    grid-template-columns: repeat(2, 2fr);
    gap: 1rem;
    margin-top: 1.25rem;
  }

  .mini-stats div {
    padding: 0.85rem 0.8rem;
    border-radius: 16px;
    background: rgba(1, 41, 70, 0.38);
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .stat-value {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--secondary);
  }

  .stat-label {
    display: block;
    margin-top: 0.15rem;
    color: var(--text-muted);
    font-size: 0.9rem;
  }


  /*------------------------------------------------*/
  /*-------------------- Sections --------------------*/
  /*------------------------------------------------*/
  .section-pad {
    padding: 6rem 0;
  }

  .section-alt {
    background: rgba(255, 255, 255, 0.02);
  }

  .section-heading h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
  }

  .feature-card,
  .content-box {
    padding: 1.5rem;
    transition: transform 0.25s ease, border-color 0.25s ease;
  }

  .feature-card:hover,
  .content-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 176, 0, 0.28);
  }

  .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: rgba(255, 176, 0, 0.12);
    color: var(--accent);
    font-weight: 800;
    letter-spacing: 0.04em;
  }

  .contact-card {
    max-width: 820px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
  }

  .footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }



  /*------------------------------------------------*/
  /*-------------------- Spotlight animation --------------------*/
  /*------------------------------------------------*/
  @keyframes spotlightMove {
    0% {
      transform: translate(-8%, -4%) scale(0.95);
      opacity: 0.45;
    }
    50% {
      transform: translate(8%, 6%) scale(1.08);
      opacity: 0.7;
    }
    100% {
      transform: translate(-8%, -4%) scale(0.95);
      opacity: 0.45;
    }
  }

  @keyframes driftGlow {
    0% {
      transform: translate3d(-2%, 0, 0);
    }
    50% {
      transform: translate3d(2%, 3%, 0);
    }
    100% {
      transform: translate3d(-2%, 0, 0);
    }
  }


  /*------------------------------------------------*/
  /*-------------------- Inputs --------------------*/
  /*------------------------------------------------*/

  input,
  textarea,
  select {
    background-color: #012946 !important;
    color: #fff !important;
    border: 1px solid var(--primary) !important;
  }

  input::placeholder,
  textarea::placeholder {
    color: #f4f4f4; /* Lighter placeholder for contrast */
    opacity: 0;
  }


  /*------------------------------------------------*/
  /*-------------------- Share button --------------------*/
  /*------------------------------------------------*/

  /* Container */
.share-container {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

/* Button */
.share-toggle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: #ffb000;
  color: #111;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* Options */
.share-options {
  position: absolute;
  bottom: 60px;
  left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

.share-options a {
  background: rgba(255,255,255,0.08);
  color: white;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
}

/* Active */
.share-container.active .share-options {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}



  /*------------------------------------------------*/
  /*-------------------- Responsive --------------------*/
  /*------------------------------------------------*/
  @media (max-width: 991.98px) {
    .hero-section {
      min-height: auto;
    }

    .section-pad {
      padding: 4.5rem 0;
    }

    .mini-stats {
      grid-template-columns: 1fr;
    }
  }