/* Variable Definitions */

:root {
  /* Core color palette */
  --background: #efeee9;
  --foreground: #272727;
  --card: #fff;
  --card-foreground: #272727;
  --popover: #efeee9;
  --popover-foreground: #272727;
  --primary: #0097b2;
  --primary-foreground: #efeee9;
  --secondary: #195971;
  --secondary-foreground: #efeee9;
  --muted: #efeee9;
  --muted-foreground: #272727;
  --accent: #fd850e;
  --accent-foreground: #efeee9;
  --destructive: #f14a16;
  --destructive-foreground: #efeee9;
  --border: #195971;
  --input: #efeee9;
  --ring: #0097b280;
  --chart-1: #0097b2;
  --chart-2: #fd850e;
  --chart-3: #195971;
  --chart-4: #f14a16;
  --chart-5: #9f2384;
  --radius: 0.5rem;
  --sidebar: #efeee9;
  --sidebar-foreground: #272727;
  --sidebar-primary: #0097b2;
  --sidebar-primary-foreground: #efeee9;
  --sidebar-accent: #fd850e;
  --sidebar-accent-foreground: #efeee9;
  --sidebar-border: #195971;
  --sidebar-ring: #0097b280;
  --omnihyre-primary: #0097b2;
  --omnihyre-primary-light: #195971;
  --omnihyre-secondary: #fd850e;
  --omnihyre-gradient-start: #0097b2;
  --omnihyre-gradient-end: #195971;
  --omnihyre-dark-bg: #272727;
  --omnihyre-accent: #f14a16;
  --omnihyre-purple: #9f2384;
  --shadow: 0 4px 12px -2px rgba(0, 151, 178, 0.08),
    0 2px 4px -1px rgba(0, 151, 178, 0.04);

  /* Spacing scale */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;

  /* Focus and accessibility */
  --focus-ring: 2px solid var(--primary);
  --focus-offset: 2px;

  --c-lblack: var(--foreground);
  --c-dblue: var(--secondary);
  --c-lblue: var(--primary);
  --c-lgreen: var(--secondary);
  --c-dorange: var(--accent);
  --c-gray: var(--background);
  --c-white: var(--card);
}

.dark {
  --background: #272727;
  --foreground: #efeee9;
  --card: #1a1a1a;
  --card-foreground: #efeee9;
  --popover: #195971;
  --popover-foreground: #efeee9;
  --primary: #0097b2;
  --primary-foreground: #efeee9;
  --secondary: #fd850e;
  --secondary-foreground: #272727;
  --muted: #195971;
  --muted-foreground: #efeee9;
  --accent: #fd850e;
  --accent-foreground: #272727;
  --destructive: #f14a16;
  --destructive-foreground: #efeee9;
  --border: #0097b2;
  --input: #195971;
  --ring: rgba(0, 151, 178, 0.5);
  --chart-1: #0097b2;
  --chart-2: #fd850e;
  --chart-3: #195971;
  --chart-4: #f14a16;
  --chart-5: #9f2384;
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
  --sidebar: #195971;
  --sidebar-foreground: #efeee9;
  --sidebar-primary: #0097b2;
  --sidebar-primary-foreground: #efeee9;
  --sidebar-accent: #fd850e;
  --sidebar-accent-foreground: #272727;
  --sidebar-border: #0097b2;
  --sidebar-ring: rgba(0, 151, 178, 0.5);
}

/* Typography and border radius */
:root {
  --font-helvetica: "Helvetica", "Product Sans", "Roboto";
  --font-product-sans: "Product Sans", "Helvetica", "Roboto";
  --font-league-spartan: "League Spartan", "Roboto", "Arial Black";
  --font-sans: "League Spartan", "Product Sans", "Helvetica", sans-serif;
  --font-serif: "League Spartan", "Product Sans", "Helvetica", serif;
  --font-mono: "League Spartan", "Product Sans", "Helvetica", monospace;
  --font-header: var(--font-league-spartan), "Arial Black", Arial, sans-serif;
  --font-subheader: var(--font-helvetica), "League Spartan", "Helvetica", Arial,
    sans-serif;
  --font-body: var(--font-product-sans), "League Spartan", "Segoe UI", Tahoma,
    sans-serif;

  /* Border radius scale */
  --radius-sm: calc(var(--radius) - 4px);
  --radius-md: calc(var(--radius) - 2px);
  --radius-lg: var(--radius);
  --radius-xl: calc(var(--radius) + 4px);
}

/* ========================================
   BASE LAYOUT (non-Bootstrap)
   ======================================== */

html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-league-spartan), var(--font-product-sans),
    var(--font-helvetica), sans-serif !important;
  background-color: var(--background) !important;
  color: var(--foreground) !important;
  font-feature-settings: "kern" 1, "liga" 1 !important;
  text-rendering: optimizeLegibility !important;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  z-index: 999;
}

/* Custom spacing utilities */
.p-xs {
  padding: var(--space-xs);
}

.p-sm {
  padding: var(--space-sm);
}

.p-md {
  padding: var(--space-md);
}

.p-lg {
  padding: var(--space-lg);
}

.p-xl {
  padding: var(--space-xl);
}

.m-xs {
  margin: var(--space-xs);
}

.m-sm {
  margin: var(--space-sm);
}

.m-md {
  margin: var(--space-md);
}

.m-lg {
  margin: var(--space-lg);
}

.m-xl {
  margin: var(--space-xl);
}

/* Custom font utilities */
.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-lg {
  font-size: 1.125rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.text-4xl {
  font-size: 2.25rem;
}

.font-light {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-extrabold {
  font-weight: 800;
}

/* Custom display utilities */
.hidden {
  display: none;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

.table {
  display: table;
}

.table-row {
  display: table-row;
}

.table-cell {
  display: table-cell;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

/* Custom border utilities */
.border {
  border: 1px solid var(--border);
}

.border-0 {
  border: 0;
}

.border-t {
  border-top: 1px solid var(--border);
}

.border-b {
  border-bottom: 1px solid var(--border);
}

.border-l {
  border-left: 1px solid var(--border);
}

.border-r {
  border-right: 1px solid var(--border);
}

/* Custom rounded utilities */
.rounded {
  border-radius: var(--radius);
}

.rounded-none {
  border-radius: 0;
}

.rounded-sm {
  border-radius: var(--radius-sm);
}

.rounded-md {
  border-radius: var(--radius-md);
}

.rounded-lg {
  border-radius: var(--radius-lg);
}

.rounded-xl {
  border-radius: var(--radius-xl);
}

.rounded-full {
  border-radius: 50rem;
}

/* Custom shadow utilities */
.shadow {
  box-shadow: var(--shadow);
}

.shadow-sm {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-none {
  box-shadow: none;
}

/* Override Bootstrap position utilities */
.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

/* Custom flex utilities - only add what Bootstrap doesn't provide */
.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-nowrap {
  flex-wrap: nowrap;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

.omnihyre-gradient {
  background: var(--primary);
}

.omnihyre-gradient-reverse {
  background: var(--accent);
}

.omnihyre-text-gradient {
  color: var(--primary);
}

.omnihyre-shadow {
  /* Softer, paper-like shadows */
  box-shadow: 0 4px 12px -2px rgba(0, 151, 178, 0.08),
    0 2px 4px -1px rgba(0, 151, 178, 0.04);
}

.omnihyre-border {
  border-color: var(--primary);
}

.omnihyre-hover-lift {
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  will-change: transform, box-shadow;
}

.omnihyre-hover-lift:hover {
  transform: translateY(-1px);
  /* Subtle lift for paper feel */
  box-shadow: 0 8px 20px -4px rgba(0, 151, 178, 0.12);
}

.omnihyre-hover-lift:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Paper-inspired utility classes */
.paper-texture {
  background-color: var(--card);
  border: 1px solid rgba(0, 151, 178, 0.1);
  box-shadow: 0 2px 8px -2px rgba(0, 151, 178, 0.06);
  contain: layout style paint;
}

.handwritten-accent {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ========================================
   BRAND DESIGN ELEMENTS
   ======================================== */

/* Big Text - For titles and main points */
.big-text {
  font-family: var(--font-l), "Arial Black", sans-serif;
  font-size: clamp(2.5rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--foreground);
}

.big-text-impact {
  font-family: var(--font-league-spartan), "Arial Black", sans-serif;
  font-size: clamp(2.25rem, 7.5vw, 6rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.1);
  color: var(--foreground);
  text-align: center;
  display: block;
  margin: 0 auto;
}

/* Paper Texture - Overlays for entire canvas and elements */
.paper-element {
  background-color: var(--card);
  border: 1px solid rgba(39, 39, 39, 0.08);
  box-shadow: 0 1px 3px rgba(39, 39, 39, 0.05),
    0 4px 12px rgba(39, 39, 39, 0.03);
  position: relative;
  contain: layout style paint;
}

.paper-element::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%,
      rgba(0, 151, 178, 0.02) 0%,
      transparent 50%);
  background-size: 80px 80px;
  pointer-events: none;
}

/* Real Life Assets - Photography and authentic imagery */
.real-asset {
  border-radius: 0.25rem;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(39, 39, 39, 0.08), 0 1px 3px rgba(39, 39, 39, 0.06);
  transform: rotate3d(0, 0, 1, -0.5deg);
  transition: transform 0.3s ease-in-out;
  will-change: transform;
  backface-visibility: hidden;
}

.real-asset:hover {
  transform: rotate3d(0, 0, 1, 0deg) scale3d(1.02, 1.02, 1);
}

.real-asset img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}

/* Scribble - Hand-drawn emphasis elements */
.scribble-circle {
  position: relative;
  display: inline-block;
}

.scribble-circle::after {
  content: "";
  position: absolute;
  top: -8px;
  left: -8px;
  right: -8px;
  bottom: -8px;
  border: 2px solid var(--secondary);
  border-radius: 50%;
  transform: rotate(-3deg);
  opacity: 0.7;
  pointer-events: none;
}

.scribble-underline {
  position: relative;
  display: inline-block;
}

.scribble-underline::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0px;
  right: -2px;
  height: 3px;
  background-color: var(--accent);
  transform: rotate(-0.5deg) scaleX(1);
  opacity: 0.8;
  border-radius: 2px;
}

.scribble-arrow {
  position: relative;
}

.scribble-arrow::before {
  content: "→";
  position: absolute;
  top: -1.5rem;
  right: -1rem;
  color: var(--secondary);
  font-size: 1.25rem;
  transform: rotate(15deg);
  opacity: 0.8;
}

/* Handwritten style text */
.handwritten {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.02em;
  transform: rotate3d(0, 0, 1, -1deg);
  color: var(--secondary);
  will-change: transform;
  backface-visibility: hidden;
}

/* Paper-inspired cards and containers */
.paper-card {
  background-color: #ffffff;
  border: 1px solid rgba(39, 39, 39, 0.08);
  border-radius: 0.5rem;
  padding: var(--space-lg);
  box-shadow: 0 2px 4px rgba(39, 39, 39, 0.06),
    0 8px 16px rgba(39, 39, 39, 0.04);
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
  will-change: transform, box-shadow;
  backface-visibility: hidden;
}

.paper-card:hover {
  transform: rotate3d(0, 0, 1, 0deg) translate3d(0, -2px, 0);
  box-shadow: 0 4px 8px rgba(39, 39, 39, 0.08),
    0 12px 24px rgba(39, 39, 39, 0.06);
}

/* Added new utility class for consistent white card backgrounds */
.card-white {
  background-color: #ffffff;
  border: 1px solid rgba(39, 39, 39, 0.08);
  box-shadow: 0 1px 3px rgba(39, 39, 39, 0.05),
    0 4px 12px rgba(39, 39, 39, 0.03);
}

/* Focus states for better accessibility */
.card-white:focus-within {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Typography utility classes for font hierarchy */
.font-header {
  font-family: var(--font-header);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.font-subheader {
  font-family: var(--font-subheader);
  font-weight: 500;
  letter-spacing: -0.005em;
}

.font-body {
  font-family: var(--font-body);
  font-weight: 400;
  letter-spacing: 0;
}

/* ========================================
   ALERT COMPONENTS
   ======================================== */

/* Base alert styles */
.alert {
  position: relative;
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-md);
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.5;
  transition: all 0.2s ease-in-out;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.alert:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* Alert variants */
.alert-primary {
  color: var(--primary-foreground);
  background-color: var(--primary);
  border-color: var(--primary);
}

.alert-secondary {
  color: var(--secondary-foreground);
  background-color: var(--secondary);
  border-color: var(--secondary);
}

.alert-success {
  color: #ffffff;
  background-color: #22c55e;
  border-color: #22c55e;
}

.alert-danger {
  color: var(--destructive-foreground);
  background-color: var(--destructive);
  border-color: var(--destructive);
}

.alert-warning {
  color: var(--accent-foreground);
  background-color: var(--accent);
  border-color: var(--accent);
}

.alert-info {
  color: #ffffff;
  background-color: #06b6d4;
  border-color: #06b6d4;
}

.alert-light {
  color: var(--foreground);
  background-color: var(--card);
  border-color: var(--border);
}

.alert-dark {
  color: var(--background);
  background-color: var(--foreground);
  border-color: var(--foreground);
}

/* Alert with accent colors */
.alert-accent {
  color: var(--accent-foreground);
  background-color: var(--accent);
  border-color: var(--accent);
}

.alert-omnihyre-purple {
  color: #ffffff;
  background-color: var(--omnihyre-purple);
  border-color: var(--omnihyre-purple);
}

/* Alert dismissible styles */
.alert-dismissible {
  padding-right: 3rem;
}

/* Alert fade animation */
.alert.fade {
  transition: opacity 0.15s linear;
}

.alert.fade.show {
  opacity: 1;
}

/* Alert with icons */
.alert-icon {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.alert-icon::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.alert-success.alert-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.alert-danger.alert-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zM8.707 7.293a1 1 0 00-1.414 1.414L8.586 10l-1.293 1.293a1 1 0 101.414 1.414L10 11.414l1.293 1.293a1 1 0 001.414-1.414L11.414 10l1.293-1.293a1 1 0 00-1.414-1.414L10 8.586 8.707 7.293z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.alert-warning.alert-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M8.257 3.099c.765-1.36 2.722-1.36 3.486 0l5.58 9.92c.75 1.334-.213 2.98-1.742 2.98H4.42c-1.53 0-2.493-1.646-1.743-2.98l5.58-9.92zM11 13a1 1 0 11-2 0 1 1 0 012 0zm-1-8a1 1 0 00-1 1v3a1 1 0 002 0V6a1 1 0 00-1-1z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

.alert-info.alert-icon::before {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M18 10a8 8 0 11-16 0 8 8 0 0116 0zm-7-4a1 1 0 11-2 0 1 1 0 012 0zM9 9a1 1 0 000 2v3a1 1 0 001 1h1a1 1 0 100-2v-3a1 1 0 00-1-1H9z' clip-rule='evenodd'/%3e%3c/svg%3e");
}

/* Alert link styles */
.alert a {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
}

.alert a:hover {
  text-decoration: none;
}

/* Alert heading styles */
.alert-heading {
  color: inherit;
  font-family: var(--font-subheader);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

/* Alert with paper texture effect */
.alert-paper {
  background-color: var(--card);
  border: 1px solid rgba(0, 151, 178, 0.1);
  box-shadow: 0 2px 8px -2px rgba(0, 151, 178, 0.06);
  position: relative;
}

.alert-paper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 25% 25%,
      rgba(0, 151, 178, 0.02) 0%,
      transparent 50%);
  background-size: 80px 80px;
  pointer-events: none;
  border-radius: var(--radius);
}

/* Responsive alert styles */
@media (max-width: 768px) {
  .alert {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8rem;
  }

  .alert-dismissible {
    padding-right: 2.5rem;
  }

  .alert-dismissible .btn-close {
    padding: 0.5rem 0.75rem;
  }
}

/* Dark mode alert adjustments */
.dark .alert-light {
  color: var(--foreground);
  background-color: var(--card);
  border-color: var(--border);
}

.dark .alert-dark {
  color: var(--background);
  background-color: var(--foreground);
  border-color: var(--foreground);
}

/* ========================================
   COMPONENT STYLES
   ======================================== */

/* ========================================
   NAVBAR SPECIFIC STYLES
   ======================================== */

/* Main navbar container */
.navbar {
  background-color: var(--card);
  border-bottom: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 151, 178, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease-in-out;
  z-index: 50;
}

.navbar.sticky-top {
  position: sticky;
  top: 0;
}

/* Navbar layout structure */
.navbar-content {
  height: 4rem;
}

.navbar-brand-section {
  flex: 0 0 auto;
}

.navbar-nav-desktop {
  display: none;
  justify-content: center;
  flex: 1;
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  flex: 0 0 auto;
}

@media (min-width: 768px) {
  .navbar-nav-desktop {
    display: flex;
  }

  .navbar-toggler {
    display: none;
  }

  .navbar-collapse {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .navbar-actions {
    display: none;
  }

  .navbar-nav-desktop {
    display: none;
  }

  .navbar-collapse {
    display: none;
  }

  .navbar-collapse.show {
    display: flex !important;
    flex-direction: column;
  }
}

/* Navbar brand/logo */
.navbar-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.2s ease-in-out;
}

.navbar-brand:hover {
  transform: scale(1.05);
}

.navbar-brand img {
  transition: all 0.2s ease-in-out;
  filter: brightness(1);
}

.navbar-brand:hover img {
  filter: brightness(1.1);
}

.navbar-brand:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  border-radius: var(--radius-sm);
}

/* Navigation links */
.navbar .nav-link {
  color: var(--foreground);
  font-family: var(--font-subheader);
  font-weight: 500;
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease-in-out;
}

.navbar .nav-link:hover {
  color: var(--primary);
  background-color: rgba(0, 151, 178, 0.05);
}

.navbar .nav-link:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
  background-color: rgba(0, 151, 178, 0.1);
}

/* Navbar buttons - standardized styling */
.navbar .btn {
  font-family: var(--font-subheader);
  font-weight: 500;
  border-radius: var(--radius);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle button */
.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.5rem;
  background-color: transparent;
  transition: all 0.2s ease-in-out;
}

.navbar-toggler:hover {
  background-color: rgba(0, 151, 178, 0.05);
  border-color: var(--primary);
}

.navbar-toggler:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

.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='rgba%2839, 39, 39, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
  width: 1.5rem;
  height: 1.5rem;
}

/* Mobile menu container */
.navbar-collapse {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 4px 12px rgba(0, 151, 178, 0.1);
}

/* Mobile navigation structure */
.navbar-nav-mobile {
  display: flex;
  flex-direction: column;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
}

.mobile-auth-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: 0 var(--space-sm) var(--space-sm);
}

.mobile-user-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  padding: var(--space-sm);
}

/* Mobile navigation links */
.navbar-collapse .nav-link {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(0, 151, 178, 0.1);
  font-size: 1.1rem;
}

.navbar-collapse .nav-link:last-child {
  border-bottom: none;
}

/* Dropdown menu styling */
.navbar .dropdown-menu {
  background-color: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(0, 151, 178, 0.15);
  padding: 0.5rem 0;
  margin-top: 0.5rem;
}

.navbar .dropdown-item {
  color: var(--foreground);
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  transition: all 0.2s ease-in-out;
}

.navbar .dropdown-item:hover {
  background-color: rgba(0, 151, 178, 0.05);
  color: var(--primary);
}

.navbar .dropdown-item:focus-visible {
  outline: var(--focus-ring);
  outline-offset: -2px;
  background-color: rgba(0, 151, 178, 0.1);
}

.navbar .dropdown-divider {
  border-color: var(--border);
  margin: 0.5rem 0;
}

/* Navigation links styling */
.nav-links {
  display: flex;
  gap: var(--space-md);
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Body font-family moved to Bootstrap overrides section above */

.mobile-show {
  display: none;
}

/* General button styles - navbar buttons have their own specific styles */
.btn:not(.navbar .btn) {
  transition: all 0.2s ease;
  will-change: transform;
}

.btn:not(.navbar .btn):hover {
  transform: scale(1.05);
}

.btn:not(.navbar .btn):focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* ========================================
   ENHANCED TAB NAVIGATION STYLES
   ======================================== */

/* Tab Navigation Container */
.candidate-dashboard-nav {
  position: relative;
}

.nav-tabs-container {
  position: relative;
  background: var(--card);
  transition: all 0.3s ease;
}

/* Tab Button Styles */
.nav-tab-btn {
  position: relative;
  border: none;
  background: transparent;
  color: var(--omnihyre-primary);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  min-height: 48px;
  /* Better touch target */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  outline: none;
}

/* Bootstrap nav-link styles for inactive tabs */
.nav-link:not(.active) {
  color: #000000 !important;
  font-weight: 500;
}

.nav-link:not(.active):hover {
  color: var(--omnihyre-primary) !important;
}

/* Bootstrap nav-link styles for active tabs */
.nav-link.active {
  color: var(--omnihyre-primary) !important;
  font-weight: 600;
}

.nav-tab-btn:focus {
  outline: 2px solid var(--omnihyre-primary);
  outline-offset: 2px;
}

.nav-tab-btn:focus:not(:focus-visible) {
  outline: none;
}

.nav-tab-btn:focus-visible {
  outline: 2px solid var(--omnihyre-primary);
  outline-offset: 2px;
}

/* Active Tab Styles */
.nav-tab-btn.active {
  background: var(--omnihyre-primary);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 151, 178, 0.3);
}

.nav-tab-btn.active::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--omnihyre-secondary);
  border-radius: 2px 2px 0 0;
}

/* Hover Effects */
.nav-tab-btn:not(.active):hover {
  background: rgba(0, 151, 178, 0.1);
  color: var(--omnihyre-primary);
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 151, 178, 0.15);
}

.nav-tab-btn.active:hover {
  background: var(--omnihyre-primary-light);
  box-shadow: 0 6px 16px rgba(0, 151, 178, 0.4);
}

/* Icon Styles */
.nav-tab-btn i {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.nav-tab-btn:hover i {
  transform: scale(1.1);
}

.nav-tab-btn.active i {
  transform: scale(1.1);
}

/* Tab Panel Transitions */
.candidate-dashboard-component-view {
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: none;
}

.candidate-dashboard-component-view.active {
  opacity: 1;
  transform: translateY(0);
  display: block;
}

/* Loading State */
.candidate-dashboard-component-view.loading {
  opacity: 0.6;
  pointer-events: none;
}

.candidate-dashboard-component-view.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--omnihyre-primary);
  border-top: 2px solid transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Tab Indicator Animation */
.nav-tab-btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background: var(--omnihyre-secondary);
  border-radius: 2px 2px 0 0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.nav-tab-btn.active::after {
  width: 80%;
}

/* Accessibility Improvements */
.nav-tab-btn[aria-selected="true"] {
  font-weight: 600;
}

.nav-tab-btn[aria-selected="false"] {
  font-weight: 500;
}

/* Focus Ring for Better Accessibility */
.nav-tab-btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.3);
}

/* Tab Content Animation */
.candidate-dashboard-component-view.active {
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Smooth scrolling for tab content */
.candidate-dashboard-component-view {
  scroll-behavior: smooth;
}

/* Responsive Design for Tab Navigation */
@media (max-width: 768px) {
  .nav-tabs-container {
    flex-direction: row;
    gap: 0.25rem;
  }

  .nav-tab-btn {
    width: auto !important;
    flex: 1;
    justify-content: center;
    padding: 0.75rem 0.5rem;
    font-size: 0.9rem;
  }

  .nav-tab-btn i {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .nav-tab-btn {
    padding: 0.5rem 0.25rem;
    font-size: 0.8rem;
  }

  .nav-tab-btn span {
    display: none;
  }

  .nav-tab-btn i {
    font-size: 1.2rem;
  }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
  .nav-tab-btn {
    border: 2px solid var(--omnihyre-primary);
  }

  .nav-tab-btn.active {
    border-color: var(--omnihyre-secondary);
  }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {

  .nav-tab-btn,
  .candidate-dashboard-component-view,
  .nav-tab-btn i {
    transition: none;
  }

  .candidate-dashboard-component-view {
    transform: none;
  }
}

/* Dark Mode Support */
.dark .nav-tabs-container {
  background: var(--card);
  border-color: var(--border);
}

.dark .nav-tab-btn {
  color: var(--omnihyre-primary);
}

.dark .nav-tab-btn:not(.active):hover {
  background: rgba(0, 151, 178, 0.2);
}

/* Print Styles */
@media print {
  .candidate-dashboard-nav {
    display: none;
  }

  .candidate-dashboard-component-view {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ========================================
   DASHBOARD COMPONENT STYLES
   ======================================== */

/* Tab Content Loading States */
#tab-content.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}

#tab-content.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #007bff;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ========================================
   TIMELINE COMPONENT STYLES
   ======================================== */

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline-item {
  position: relative;
  padding-left: 50px;
  margin-bottom: 30px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-icon {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.timeline-icon.bg-completed {
  background-color: #28a745;
}

.timeline-icon.bg-error {
  background-color: #dc3545;
}

.timeline-content {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 4px;
}

/* ========================================
   PROGRESS BAR STYLES
   ======================================== */

.progress {
  background-color: #e9ecef;
}

.progress-bar {
  background-color: #0d6efd;
  transition: width 0.6s ease;
}

/* ========================================
   DASHBOARD CONTENT STYLES
   ======================================== */

.dashboard-content {
  color: var(--text-color);
}

.dashboard-content h1,
.dashboard-content h2,
.dashboard-content h3,
.dashboard-content h4,
.dashboard-content h5,
.dashboard-content h6,
.dashboard-content p {
  color: var(--text-color);
}

.dashboard-content .text-muted {
  color: var(--text-muted) !important;
}

.dashboard-content .card {
  color: var(--text-color);
}

.dashboard-content .table td {
  color: var(--text-color);
}

.dashboard-content .table td.text-muted {
  color: var(--text-muted) !important;
}

.dashboard-content .lead {
  color: var(--text-color);
}

/* ========================================
   DASHBOARD COMPONENT STYLES
   ======================================== */

.stats-card {
  transition: transform 0.2s;
}

.stats-card:hover {
  transform: translateY(-5px);
}

.activity-timeline .timeline-item {
  padding-left: 2rem;
  position: relative;
  border-left: 2px solid #e9ecef;
}

.activity-timeline .timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #007bff;
}

.candidate-status-pill {
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
}

.candidate-missing-section:hover {
  background-color: var(--primary) !important;
  transition: all .2s ease;
  color: white !important;
}

/* ========================================
   HTMX COMPONENT STYLES
   ======================================== */

/* HTMX Autocomplete Styles */
.autocomplete-suggestions {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  max-height: 200px;
  overflow-y: auto;
  margin-top: 0;
}

.suggestion-item {
  padding: 8px 12px;
  cursor: pointer;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s;
}

.suggestion-item:hover,
.suggestion-item.selected {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.no-suggestions {
  padding: 8px 12px;
  color: #6c757d;
  font-style: italic;
}

/* HTMX Loading indicator */
.htmx-indicator {
  display: none;
}

.htmx-request .htmx-indicator {
  display: inline;
}

.htmx-request.htmx-indicator {
  display: inline;
}

/* Navbar brand and nav-link styles are now handled in navbar-specific section */

.section-padding {
  padding: 13rem 0;
}

.section-padding input::placeholder {
  color: var(--c-white);
}

.section-heading {
  font-size: 6rem;
}

.hero-section {
  color: var(--c-white);
  background: url("/static/img/circle-shape.0f018b89034d.png") top 15vw left -10vw / 20vw no-repeat,
    url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 150px right -20vw / 30vw no-repeat,
    var(--background);
  background-color: var(--background);
  min-height: calc(100vh - 4rem);
  margin-bottom: 2rem;
  padding: 64px 32px 80px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero-section::after {
  background: var(--c-lblue);
}

.what-we-do-section {
  background: url("/static/img/rectangle-shape.99ce9b44fb4e.png") top left 15vw / 5vw no-repeat,
    url("/static/img/rectangle-shape.99ce9b44fb4e.png") top right 15vw / 5vw no-repeat,
    url("/static/img/circle-shape.0f018b89034d.png") top 5vw left -200px / 250px no-repeat,
    url("/static/img/circle-shape.0f018b89034d.png") top 5vw right -200px / 250px no-repeat,
    var(--background);
  padding: 9rem 0;
  background-color: var(--background);
  position: relative;
}

.what-we-do-bottom-bg {
  background: url("/static/img/backgrounds/what-we-do.8e81eba9d749.jpg") center / cover no-repeat;
  width: 95%;
  height: 450px;
  justify-self: center;
  position: absolute;
  bottom: 5%;
  z-index: 1;
  border-radius: 4rem;
}

.what-we-do-section .card {
  z-index: 2;
}

.what-we-do-section h1 {
  font-weight: bold;
  letter-spacing: -0.05em;
  color: var(--accent);
}

.what-we-offer-banner {
  background: url("/static/img/backgrounds/what-we-offer-banner.40c297456f11.jpg") center center / cover no-repeat;
  height: 250px;
}

.what-we-offer-section {
  color: var(--primary-foreground);
  background: var(--primary);
}

.contact-us-lines {
  height: 50px;
}

.contact-us-section input,
.contact-us-section textarea {
  margin: 5px 0;
  border-radius: 5px;
}

.contact-us-section input {
  font-size: 2rem;
}

.contact-us-section button {
  background-color: var(--accent);
  color: var(--accent-foreground);
  border: 3px solid var(--accent);
}

.contact-us-section button:hover {
  background-color: var(--secondary);
  color: var(--secondary-foreground);
  border: 3px solid var(--secondary);
}

.join-now-buttons a {
  border-radius: 50px;
  padding: 3rem 0;
  min-width: 15rem;
  border: 0;
}

.join-now-buttons a:first-child:hover {
  color: var(--accent);
  border: 1px solid var(--accent);
  background-color: var(--card) !important;
}

.join-now-buttons a:last-child:hover {
  color: var(--primary);
  border: 1px solid var(--primary);
  background-color: var(--card) !important;
}

.join-now-buttons a b {
  font-size: 4rem;
  letter-spacing: -5px;
}

footer ul a {
  color: var(--c-white);
}

footer ul li {
  transition: all 0.2s ease;
  will-change: transform;
}

footer ul li:hover {
  transform: scale(1.1);
}

footer ul li:focus-visible {
  outline: var(--focus-ring);
  outline-offset: var(--focus-offset);
}

/* ========================================
   ACCOUNT TYPE SELECTION ANIMATIONS
   ======================================== */

/* Pop-in animations for account type buttons */
@keyframes popInLeft {
  0% {
    opacity: 0;
    transform: translateX(-50px) scale(0.8);
  }

  50% {
    opacity: 0.8;
    transform: translateX(-10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes popInRight {
  0% {
    opacity: 0;
    transform: translateX(50px) scale(0.8);
  }

  50% {
    opacity: 0.8;
    transform: translateX(10px) scale(1.05);
  }

  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* Enhanced hover effects for account type buttons */
.account-type-btn {
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.account-type-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  transition: left 0.5s;
}

.account-type-btn:hover::before {
  left: 100%;
}

.account-type-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 25px rgba(0, 151, 178, 0.25);
}

.account-type-btn:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

/* Pulse animation for emphasis */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 151, 178, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(0, 151, 178, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 151, 178, 0);
  }
}

.account-type-btn:focus {
  animation: pulse 1.5s infinite;
}

/* Responsive behavior for account type buttons */
.flex-column-md {
  flex-direction: row;
}

@media (max-width: 768px) {
  .flex-column-md {
    flex-direction: column;
  }

  .account-type-btn {
    height: 5rem !important;
  }

  .account-type-btn .fs-4 {
    font-size: 1.1rem !important;
  }
}

@media (max-width: 576px) {
  .account-type-btn {
    height: 4.5rem !important;
  }

  .account-type-btn .fs-4 {
    font-size: 1rem !important;
  }

  .account-type-btn small {
    font-size: 0.8rem !important;
  }
}

/* ========================================
   FORMS DESIGN
   ======================================== */

.input-invalid {
  border-color: var(--bs-form-invalid-border-color);
  background-image: url("/static/svg/warning-icon.9c81d01998cb.svg");
  background-repeat: no-repeat;
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
  background-position-x: calc(100% - (.375em + .1875rem));
  background-position-y: 1.35em;
}


.input-invalid:focus,
.input-invalid:focus-visible {
  outline: 1px solid var(--bs-form-invalid-border-color);
}

.input-invalid:focus {
  box-shadow: 0 0 5px .05rem var(--bs-form-invalid-border-color);
  border: none;
}

.input-invalid.date-field {
  background-position-x: calc(100% - (2em + .1875rem));
  background-position-y: 1.7em;
}

.input-invalid.file-field {
  background-position-y: 0.56em;
}

input[type="number"].input-invalid:focus-visible,
input[type="number"].input-invalid:hover {
  background-position-x: calc(100% - (1.5em + .1875rem));
  background-position-y: 1.2em;
}

input[type="number"].input-invalid:focus-visible {
  background-position-y: 1.6em;
}


/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-section {
    background: url("/static/img/circle-shape.0f018b89034d.png") top 45vw left -10vw / 20vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 40vw right -20vw / 30vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 150px left 25vw / 80px no-repeat,
      var(--background);
  }
}

@media (max-width: 992px) {
  .mobile-show {
    display: block;
  }

  .mobile-hide {
    display: none;
  }

  .navbar {
    border-radius: 10px;
    align-content: center;
  }

  .section-heading {
    font-size: 5rem;
  }

  .nav-pages,
  .nav-buttons {
    flex-direction: column;
    border-radius: 10px;
    gap: 20px;
    padding: 10px 20px;
    margin-bottom: 20px;
  }

  .nav-pages ul,
  .nav-buttons ul {
    flex-direction: column;
    font-size: 30px;
    width: 100%;
  }

  .nav-buttons a {
    width: 250px;
  }

  .hero-section {
    background: url("/static/img/circle-shape.0f018b89034d.png") top 45vw left -10vw / 20vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 40vw right -20vw / 30vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 10vw left 5vw / 80px no-repeat,
      var(--background);
  }

  .section-padding {
    padding: 6rem 0;
  }

  .what-we-do-section .row {
    flex-direction: column-reverse;
  }

  .card-we-do {
    flex-direction: column;
  }

  #contact-us form {
    padding-top: 30px;
  }

  #contact-us .container {
    padding: 0 2rem;
  }

  #contact-us .col-lg-1 {
    display: none;
  }

  #contact-us .row {
    justify-content: space-between;
  }

  #contact-us h1 {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background: url("/static/img/circle-shape.0f018b89034d.png") top 45vw left -10vw / 20vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 85vw right -20vw / 30vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top 5vw left 5vw / 80px no-repeat,
      var(--background);
  }

  .section-heading {
    font-size: 4rem;
  }
}

@media (max-width: 600px) {
  .hand-shake-section .justify-content-center {
    height: 40vw;
  }

  .hand-shake-section .list-unstyled li:nth-child(even) {
    display: none;
  }

  .hand-shake-section ul {
    display: inline;
    column-count: 2;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
  }

  #contact-us .container {
    padding: 0;
  }
}

@media (max-width: 576px) {
  .hero-section .btn:first-child {
    margin-top: 50px;
  }

  .hero-section .btn:last-child {
    margin-top: 0;
  }

  h1 {
    letter-spacing: -1px;
  }

  .section-heading {
    font-size: 3rem;
  }

  .what-we-do-section {
    background: url("/static/img/rectangle-shape.99ce9b44fb4e.png") top left 15vw / 5vw no-repeat,
      url("/static/img/rectangle-shape.99ce9b44fb4e.png") top right 15vw / 5vw no-repeat,
      url("/static/img/circle-shape.0f018b89034d.png") top 5vw left -230px / 250px no-repeat,
      url("/static/img/circle-shape.0f018b89034d.png") top 5vw right -230px / 250px no-repeat,
      var(--background);
  }

  .card-we-do .card {
    padding: 1rem;
  }

  .join-now-buttons a {
    padding: 1rem 0;
    min-width: 11rem;
  }

  .join-now-buttons a b {
    font-size: 3rem;
    letter-spacing: -3px;
  }
}
