:root {
  /* Colors */
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);
  --color-select-caret: rgba(19, 52, 59, 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-base: "Nunito", sans-serif;
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: rgba(31, 33, 33, 1);
    --color-surface: rgba(38, 40, 40, 1);
    --color-text: rgba(245, 245, 245, 1);
    --color-text-secondary: rgba(167, 169, 169, 0.7);
    --color-primary: rgba(50, 184, 198, 1);
    --color-primary-hover: rgba(45, 166, 178, 1);
    --color-primary-active: rgba(41, 150, 161, 1);
    --color-secondary: rgba(119, 124, 124, 0.15);
    --color-secondary-hover: rgba(119, 124, 124, 0.25);
    --color-secondary-active: rgba(119, 124, 124, 0.3);
    --color-border: rgba(119, 124, 124, 0.3);
    --color-error: rgba(255, 84, 89, 1);
    --color-success: rgba(50, 184, 198, 1);
    --color-warning: rgba(230, 129, 97, 1);
    --color-info: rgba(167, 169, 169, 1);
    --color-focus-ring: rgba(50, 184, 198, 0.4);
    --color-btn-primary-text: rgba(19, 52, 59, 1);
    --color-card-border: rgba(119, 124, 124, 0.2);
    --color-card-border-inner: rgba(119, 124, 124, 0.15);
    --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
      inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    --button-border-secondary: rgba(119, 124, 124, 0.2);
    --color-border-secondary: rgba(119, 124, 124, 0.2);
    --color-select-caret: rgba(245, 245, 245, 0.8);

    /* Common style patterns - updated for dark mode */
    --focus-ring: 0 0 0 3px var(--color-focus-ring);
    --focus-outline: 2px solid var(--color-primary);
    --status-bg-opacity: 0.15;
    --status-border-opacity: 0.25;
    --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

    /* RGB versions for dark mode */
    --color-success-rgb: 50, 184, 198;
    --color-error-rgb: 255, 84, 89;
    --color-warning-rgb: 230, 129, 97;
    --color-info-rgb: 167, 169, 169;
  }
}

/* Data attribute for manual theme switching */
[data-color-scheme="dark"] {
  --color-background: rgba(31, 33, 33, 1);
  --color-surface: rgba(38, 40, 40, 1);
  --color-text: rgba(245, 245, 245, 1);
  --color-text-secondary: rgba(167, 169, 169, 0.7);
  --color-primary: rgba(50, 184, 198, 1);
  --color-primary-hover: rgba(45, 166, 178, 1);
  --color-primary-active: rgba(41, 150, 161, 1);
  --color-secondary: rgba(119, 124, 124, 0.15);
  --color-secondary-hover: rgba(119, 124, 124, 0.25);
  --color-secondary-active: rgba(119, 124, 124, 0.3);
  --color-border: rgba(119, 124, 124, 0.3);
  --color-error: rgba(255, 84, 89, 1);
  --color-success: rgba(50, 184, 198, 1);
  --color-warning: rgba(230, 129, 97, 1);
  --color-info: rgba(167, 169, 169, 1);
  --color-focus-ring: rgba(50, 184, 198, 0.4);
  --color-btn-primary-text: rgba(19, 52, 59, 1);
  --color-card-border: rgba(119, 124, 124, 0.15);
  --color-card-border-inner: rgba(119, 124, 124, 0.15);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  --color-border-secondary: rgba(119, 124, 124, 0.2);
  --color-select-caret: rgba(245, 245, 245, 0.8);

  /* Common style patterns - updated for dark mode */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for dark mode */
  --color-success-rgb: 50, 184, 198;
  --color-error-rgb: 255, 84, 89;
  --color-warning-rgb: 230, 129, 97;
  --color-info-rgb: 167, 169, 169;
}

[data-color-scheme="light"] {
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);

  /* RGB versions for light mode */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;
}

/* Base styles */
html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: var(--font-weight-semibold);
  line-height: var(--line-height-tight);
  color: var(--color-text);
  letter-spacing: var(--letter-spacing-tight);
}

h1 {
  font-size: var(--font-size-4xl);
}

h2 {
  font-size: var(--font-size-3xl);
}

h3 {
  font-size: var(--font-size-2xl);
}

h4 {
  font-size: var(--font-size-xl);
}

h5 {
  font-size: var(--font-size-lg);
}

h6 {
  font-size: var(--font-size-md);
}

p {
  margin: 0 0 var(--space-16) 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-standard);
}

a:hover {
  color: var(--color-primary-hover);
}

code,
pre {
  font-family: var(--font-family-mono);
  font-size: calc(var(--font-size-base) * 0.95);
  background-color: var(--color-secondary);
  border-radius: var(--radius-sm);
}

code {
  padding: var(--space-1) var(--space-4);
}

pre {
  padding: var(--space-16);
  margin: var(--space-16) 0;
  overflow: auto;
  border: 1px solid var(--color-border);
}

pre code {
  background: none;
  padding: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-8) var(--space-16);
  border-radius: var(--radius-base);
  font-size: var(--font-size-base);
  font-weight: 500;
  line-height: 1.5;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-standard);
  border: none;
  text-decoration: none;
  position: relative;
}

.btn:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-btn-primary-text);
}

.btn--primary:hover {
  background: var(--color-primary-hover);
}

.btn--primary:active {
  background: var(--color-primary-active);
}

.btn--secondary {
  background: var(--color-secondary);
  color: var(--color-text);
}

.btn--secondary:hover {
  background: var(--color-secondary-hover);
}

.btn--secondary:active {
  background: var(--color-secondary-active);
}

.btn--outline {
  background: transparent;
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn--outline:hover {
  background: var(--color-secondary);
}

.btn--sm {
  padding: var(--space-4) var(--space-12);
  font-size: var(--font-size-sm);
  border-radius: var(--radius-sm);
}

.btn--lg {
  padding: var(--space-10) var(--space-20);
  font-size: var(--font-size-lg);
  border-radius: var(--radius-md);
}

.btn--full-width {
  width: 100%;
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Form elements */

.form-control {
  display: block;
  width: 100%;
  padding: var(--space-8) var(--space-12);
  font-size: var(--font-size-md);
  line-height: 1.5;
  color: var(--color-text);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 5px;
  transition: border-color var(--duration-fast) var(--ease-standard),
    box-shadow var(--duration-fast) var(--ease-standard);
}

textarea.form-control {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
}

select.form-control {
  padding: var(--space-8) var(--space-12);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23666' d='M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-12) center;
  background-size: 14px;
  padding-right: var(--space-32);
}

/* select.form-control {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23666' d='M201.4 406.6c12.5 12.5 32.8 12.5 45.3 0l192-192c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 338.7 54.6 169.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l192 192z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 12px;
  padding-right: 30px;
} */

select.form-control::-ms-expand {
  display: none;
}

/* Add a dark mode specific caret */
/* @media (prefers-color-scheme: dark) {
  select.form-control {
    background-image: var(--select-caret-dark);
  }
} */

/* Also handle data-color-scheme */
/* [data-color-scheme="dark"] select.form-control {
  background-image: var(--select-caret-dark);
} */

[data-color-scheme="light"] select.form-control {
  background-image: var(--select-caret-light);
}

.form-control:focus {
  border-color: var(--color-primary);
  outline: none;
}

.form-label {
  display: block;
  margin-bottom: 5px;
  font-weight: 700;
  font-size: 13px;
}

.form-group {
  margin-bottom: var(--space-16);
}

.form-group .row .col-6 {
  padding: 0 1rem;
}

/* Card component */
.card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-card-border);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: box-shadow var(--duration-normal) var(--ease-standard);
}

.card:hover {
  box-shadow: var(--shadow-md);
}

.card__body {
  padding: var(--space-16);
}

.card__header,
.card__footer {
  padding: var(--space-16);
  border-bottom: 1px solid var(--color-card-border-inner);
}

/* Status indicators - simplified with CSS variables */
.status {
  display: inline-flex;
  align-items: center;
  padding: var(--space-6) var(--space-12);
  border-radius: var(--radius-full);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

.status--success {
  background-color: rgba(var(--color-success-rgb, 33, 128, 141),
      var(--status-bg-opacity));
  color: var(--color-success);
  border: 1px solid rgba(var(--color-success-rgb, 33, 128, 141), var(--status-border-opacity));
}

.status--error {
  background-color: rgba(var(--color-error-rgb, 192, 21, 47),
      var(--status-bg-opacity));
  color: var(--color-error);
  border: 1px solid rgba(var(--color-error-rgb, 192, 21, 47), var(--status-border-opacity));
}

.status--warning {
  background-color: rgba(var(--color-warning-rgb, 168, 75, 47),
      var(--status-bg-opacity));
  color: var(--color-warning);
  border: 1px solid rgba(var(--color-warning-rgb, 168, 75, 47), var(--status-border-opacity));
}

.status--info {
  background-color: rgba(var(--color-info-rgb, 98, 108, 113),
      var(--status-bg-opacity));
  color: var(--color-info);
  border: 1px solid rgba(var(--color-info-rgb, 98, 108, 113), var(--status-border-opacity));
}

/* Container layout */
.container {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-16);
  padding-left: var(--space-16);
}

@media (min-width: 640px) {
  .container {
    max-width: var(--container-sm);
  }
}

@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: var(--container-lg);
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: var(--container-xl);
  }
}

/* Utility classes */
.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-4 {
  gap: var(--space-4);
}

.gap-8 {
  gap: var(--space-8);
}

.gap-16 {
  gap: var(--space-16);
}

.m-0 {
  margin: 0;
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-8 {
  margin-bottom: var(--space-8);
}

.mx-8 {
  margin-left: var(--space-8);
  margin-right: var(--space-8);
}

.my-8 {
  margin-top: var(--space-8);
  margin-bottom: var(--space-8);
}

.p-0 {
  padding: 0;
}

.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.px-8 {
  padding-left: var(--space-8);
  padding-right: var(--space-8);
}

.py-16 {
  padding-top: var(--space-16);
  padding-bottom: var(--space-16);
}

.px-16 {
  padding-left: var(--space-16);
  padding-right: var(--space-16);
}

.py-24 {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.px-24 {
  padding-left: var(--space-24);
  padding-right: var(--space-24);
}

.py-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.py-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.py-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.block {
  display: block;
}

.hidden {
  display: none;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

:focus-visible {
  outline: var(--focus-outline);
  outline-offset: 2px;
}

/* Dark mode specifics */
[data-color-scheme="dark"] .btn--outline {
  border: 1px solid var(--color-border-secondary);
}

/* END PERPLEXITY DESIGN SYSTEM */
:root {
  /* Colors */
  --color-background: rgba(252, 252, 249, 1);
  --color-surface: rgba(255, 255, 253, 1);
  --color-text: rgba(19, 52, 59, 1);
  --color-text-secondary: rgba(98, 108, 113, 1);
  --color-primary: rgba(33, 128, 141, 1);
  --color-primary-hover: rgba(29, 116, 128, 1);
  --color-primary-active: rgba(26, 104, 115, 1);
  --color-secondary: rgba(94, 82, 64, 0.12);
  --color-secondary-hover: rgba(94, 82, 64, 0.2);
  --color-secondary-active: rgba(94, 82, 64, 0.25);
  --color-border: rgba(94, 82, 64, 0.2);
  --color-btn-primary-text: rgba(252, 252, 249, 1);
  --color-card-border: rgba(94, 82, 64, 0.12);
  --color-card-border-inner: rgba(94, 82, 64, 0.12);
  --color-error: rgba(192, 21, 47, 1);
  --color-success: rgba(33, 128, 141, 1);
  --color-warning: rgba(168, 75, 47, 1);
  --color-info: rgba(98, 108, 113, 1);
  --color-focus-ring: rgba(33, 128, 141, 0.4);
  --color-select-caret: rgba(19, 52, 59, 0.8);

  /* Common style patterns */
  --focus-ring: 0 0 0 3px var(--color-focus-ring);
  --focus-outline: 2px solid var(--color-primary);
  --status-bg-opacity: 0.15;
  --status-border-opacity: 0.25;
  --select-caret-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23134252' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  --select-caret-dark: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23f5f5f5' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");

  /* RGB versions for opacity control */
  --color-success-rgb: 33, 128, 141;
  --color-error-rgb: 192, 21, 47;
  --color-warning-rgb: 168, 75, 47;
  --color-info-rgb: 98, 108, 113;

  /* Typography */
  --font-family-mono: "Berkeley Mono", ui-monospace, SFMono-Regular, Menlo,
    Monaco, Consolas, monospace;
  --font-size-xs: 11px;
  --font-size-sm: 12px;
  --font-size-base: 14px;
  --font-size-md: 14px;
  --font-size-lg: 16px;
  --font-size-xl: 18px;
  --font-size-2xl: 20px;
  --font-size-3xl: 24px;
  --font-size-4xl: 30px;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 550;
  --font-weight-bold: 600;
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --letter-spacing-tight: -0.01em;

  /* Spacing */
  --space-0: 0;
  --space-1: 1px;
  --space-2: 2px;
  --space-4: 4px;
  --space-6: 6px;
  --space-8: 8px;
  --space-10: 10px;
  --space-12: 12px;
  --space-16: 16px;
  --space-20: 20px;
  --space-24: 24px;
  --space-32: 32px;

  /* Border Radius */
  --radius-sm: 6px;
  --radius-base: 8px;
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.04),
    0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.04),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-inset-sm: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.03);

  /* Animation */
  --duration-fast: 150ms;
  --duration-normal: 250ms;
  --ease-standard: cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;

  /* Vitt Pulse Brand Colors */
  --vitt-green: #009933;
  --vitt-blue: #003399;
}

/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: var(--font-size-base);
  font-family: var(--font-family-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background-color: var(--color-background);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 1.05rem;
  font-family: var(--font-family-base);
  color: #333;
  background-color: #fff;
  width: 100vw;
  overflow-x: hidden;
}

.container {
  max-width: 95%;
  margin: 0 auto;
  padding: 0 20px;
}

.topbar {
  background-color: #003399;
  height: 30px;
}

/* Header */
.header {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.nav {
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 15px 0;
}

.logo {
  cursor: pointer;
}

.logo img {
  height: 50px;
}

.nav-menu.desktop {
  display: flex;
}

.nav-menu.mobile {
  display: none;
}

.nav-menu {
  list-style: none;
  gap: 20px;
  margin: 0 30px 0 auto;
  padding: 0;
}

.nav-menu a {
  font-family: var(--font-family-base);
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 3px 5px;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--vitt-green);
  border-bottom: 2px solid var(--vitt-green);
}

.menuBtn {
  display: none;
}

.btn {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}

.btn-consultation {
  /* background: var(--vitt-green); */
  background: #009933;
  background: linear-gradient(90deg, rgba(0, 51, 153, 1) 0%, rgb(65, 112, 206) 50%, rgba(0, 51, 153, 1) 100%);
  background-size: 250% 100%;
  background-position: right;
  transition: background-position 0.3s ease;
  color: white;
}

.btn-consultation:hover {
  /* background: #007a29; */
  background-position: left;
}

.btn-primary {
  /* background: var(--vitt-blue); */
  background: linear-gradient(90deg, rgba(0, 51, 153, 1) 0%, rgb(65, 112, 206) 50%, rgba(0, 51, 153, 1) 100%);
  background-size: 250% 100%;
  background-position: right;
  transition: background-position 0.5s ease;
  color: white;
}

.btn-primary:hover {
  /* background: var(--vitt-green); */
  background-position: left;
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid var(--vitt-blue);
}

.btn-outline:hover {
  background: var(--vitt-blue);
  color: white;
}

.btn-white {
  background: white;
  color: var(--vitt-blue);
  transition: all 0.5s ease;
}

.btn-white:hover {
  background: linear-gradient(90deg, rgba(0, 51, 153, 1) 0%, rgb(65, 112, 206) 50%, rgba(0, 51, 153, 1) 100%);
  background-size: 250% 100%;
  background-position: right;
  color: white;
}

.text-center {
  text-align: center;
}

.text-danger {
  color: #ff0000;
}

.text-primary {
  color: var(--vitt-blue);
}

.text-secondary {
  color: var(--vitt-green);
}

/* Hero Section */
.hero {
  background: var(--vitt-blue);
  color: white;
  padding: 120px 0 80px;
  margin-top: 80px;
  position: relative;
  height: calc(100vh - 80px);
}

.hero .btn {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
}

.hero-text {
  width: 100%;
  text-align: center;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.hero-text h2 {
  font-family: "Quicksand", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 15px;
  color: white;
}

.hero-text h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  /* text-align: center; */
  margin-bottom: 30px;
  color: white;
  /* display: flex;
  justify-content: center;
  gap: 10px; */
}


.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero-buttons .btn:hover {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.75);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 90, 95, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
  }
}

.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 0 0;
}

.image-placeholder {
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(255, 255, 255, 0.3);
}

.professional-icon {
  font-size: 80px;
  opacity: 0.7;
}

/* About Section */
.about {
  padding: 80px 0;
  background: white;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: var(--font-family-base);
  font-size: 3rem;
  font-weight: 700;
  color: var(--vitt-blue);
  border-bottom: 4px solid var(--vitt-green);
  padding-bottom: 8px;
  text-align: left;
  display: inline-block;
  margin-bottom: 20px;
  line-height: 1;
  text-transform: uppercase;
}

.section-subtitle {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 40px;
}

.section-mini-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #424242;
}

.section-desc {
  font-size: 1.75rem;
  font-weight: 500;
  margin-bottom: 80px;
  color: #616161;
  text-align: justify;
}

.section-icon {
  margin-bottom: 25px;
  opacity: 0.75;
}


.section-icon i {
  font-size: 6rem;
  color: var(--vitt-blue);
}

.about-img-container {
  position: relative;
  max-width: 100%;
  width: 620px;
  height: 600px;
  /* margin: auto; */
}

.about-img-container .img1 {
  max-width: 90%;
  height: 460px;
  position: relative;
  box-shadow: 5px 8px 15px 5px rgba(0, 0, 0, 0.25);
}

.about-img-container .img2 {
  width: 240px;
  height: 240px;
  position: absolute;
  right: 0;
  bottom: 20px;
  box-shadow: 5px 8px 15px 5px rgba(0, 0, 0, 0.25);
}

.about-img-container .img1 img,
.about-img-container .img2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 5px;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
  padding-left: 8px;
}

.about-card {
  background: #f8f9fa;
  padding: 30px;
  border-radius: 5px;
}

.about-card.vision {
  box-shadow: -3px -3px 8px 0 rgba(0, 51, 153, 0.75);
}

.about-card.mission {
  box-shadow: 3px 3px 8px 0 rgba(0, 153, 51, 0.75);
}

.about-card h3 {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 600;
  color: var(--vitt-blue);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-card p {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 0;
}

.about-card .img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #003399;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-card.vision .img {
  background-image: url('../images/vision_bg.png');
}

.about-card.mission .img {
  background-image: url('../images/mission_bg.png');
}

.about-card:hover .img {
  animation: service_pulse 1.5s infinite;
}

.about-card .img img {
  width: 50px;
  height: auto;
}

.about .btn {
  display: block;
  margin: 0 auto;
  width: 200px;
  padding: 12px 24px;
  font-size: 20px;
}

.about-list p {
  font-family: var(--font-family-base);
  font-size: 15px;
  line-height: 1.5;
  color: #555;
  margin-bottom: 10px;
}

.about-list p img {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}

.heartrate-container {
  width: 100vw;
  height: 200px;
  display: flex;
  align-items: center;
  position: absolute;
  top: -30px;
  left: 0;
  z-index: -1;
  opacity: 0.15;
}

.heartrate-container svg {
  width: 100%;
  height: 100%;
  display: block;
}

.heartrate-container svg .heartrate-glow {
  fill: none;
  stroke: #fff;
  stroke-width: 3;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw-line 8s ease-in-out infinite;
  opacity: 1;
}

.heartrate-container svg .heartrate-line {
  fill: none;
  stroke: #333;
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  stroke-dasharray: 3000;
  stroke-dashoffset: 3000;
  animation: draw-line 8s ease-in-out infinite;
  filter: drop-shadow(0 0 3px rgba(100, 100, 100, 0.8));
}

@keyframes draw-line {
  0% {
    stroke-dashoffset: 3000;
  }

  100% {
    stroke-dashoffset: 0;
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .heartrate-container {
    height: 80px;
  }

  .heartrate-line {
    stroke-width: 2.5;
  }

  .heartrate-glow {
    stroke-width: 5;
  }
}

@media (max-width: 480px) {
  .heartrate-container {
    height: 60px;
  }

  .heartrate-line {
    stroke-width: 2;
  }

  .heartrate-glow {
    stroke-width: 4;
  }
}

/* Accessibility - reduce motion */
@media (prefers-reduced-motion: reduce) {

  .heartrate-line,
  .heartrate-glow {
    animation: none;
    stroke-dashoffset: 0;
  }
}

/* Services Section */
.services {
  padding: 80px 0;
  background: #d1f1ff4a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.services-grid .service-card {
  background-color: #e3eeff;
  padding: 40px 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.services-grid .service-card:hover {
  transform: translateY(-5px);
  background-color: #d9e8ff;
}

.services-grid .service-card .img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  background-color: #003399;
  background-image: url('../images/service_bg.png');
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s ease;
}

.services-grid .service-card:hover .img {
  animation: service_pulse 1.5s infinite;
}

@keyframes service_pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 51, 133, 0.5);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 15px rgba(255, 90, 95, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 90, 95, 0);
  }
}

.services-grid .service-card .img img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  /* filter: invert(1); */
}

.services-grid .service-card h3 {
  font-family: var(--font-family-base);
  font-size: 22px;
  font-weight: 600;
  color: var(--vitt-blue);
  margin-bottom: 15px;
}

.services-grid .service-card p {
  font-family: var(--font-family-base);
  font-size: 16px;
  line-height: 1.5;
  color: #555;
  text-align: justify;
  margin-bottom: 0;
}

/* Industry Section */
.industry {
  padding: 40px 0;
  background: white;
}

.industry-description {
  font-family: var(--font-family-base);
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.industry-inner-section {
  background: url("../images/who-we-server-bg.webp") no-repeat center center;
  background-size: cover;
  width: 100%;
  height: auto;
  color: #fff;
  padding: 140px 0;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.industry-inner-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Linear gradient: dark (left) to transparent (center) to light (right) */
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.9) 0%,
      rgb(7, 70, 28, 0.65) 40%,
      rgba(0, 0, 0, 0.2) 100%);
  pointer-events: none;
  z-index: 1;
}

.industry-inner-section .container {
  position: relative;
  z-index: 2;
}

.industry-inner-section p {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 80px;
  display: block;
  z-index: 2;
}

.industry-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  width: 100%;
}

.industry-card {
  width: 260px;
  background: transparent;
  color: var(--vitt-green);
  padding: 20px 5px 12px 5px;
  border-radius: 8px;
  font-family: var(--font-family-base);
  font-size: 1rem;
  text-align: center;
  font-weight: 500;
  border-top: 3px solid white;
  border-bottom: 3px solid white;
  cursor: pointer;
}

.industry-card .img {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  width: 90px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* .industry-card:hover .img {
  background-position: right;
} */

.industry-card img {
  width: 55px;
  height: 55px;
}

.industry-card h3 {
  color: #fff;
  margin-bottom: 0;
  font-size: 1.2rem;
}

/* Blog Section */
.blog {
  padding: 80px 0;
  background: white;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 50px;
}

.blog-card {
  background: white;
  padding: 0;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  overflow: hidden;
  cursor: pointer;
}

.blog-card:hover {
  transform: translateY(-5px);
}

.blog-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.blog-card:hover img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 30px;
}

.blog-card .blog-card-body h3 {
  font-family: var(--font-family-base);
  font-weight: 600;
  color: var(--vitt-blue);
  margin-bottom: 10px;
  line-height: 1.4;
}

.blog-card p {
  font-family: var(--font-family-base);
  font-size: 1.2rem;
  line-height: 1.5;
  color: #313131;
  text-align: justify;
}

.blog-date {
  font-family: var(--font-family-base);
  font-size: 14px !important;
  color: #888 !important;
  margin-bottom: 15px;
}

.blog .btn {
  display: block;
  margin: 0 auto;
  width: fit-content;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  padding: 60px 0;
}

.footer h2 {
  font-family: var(--font-family-base);
  font-size: 32px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  color: white;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-item {
  text-align: center;
}

.contact-label {
  font-family: var(--font-family-base);
  font-size: 16px;
  font-weight: 600;
  color: white;
  display: block;
  margin-bottom: 10px;
}

.contact-info a {
  color: var(--vitt-green);
  text-decoration: none;
  font-family: var(--font-family-base);
  font-size: 14px;
}

.contact-info a:hover {
  text-decoration: underline;
}

.contact-info span {
  font-family: var(--font-family-base);
  font-size: 14px;
  color: white;
  line-height: 1.5;
}

.absolute-icons {
  position: fixed;
  bottom: 30px;
  right: 20px;
  z-index: 100;
}

.absolute-icons .whatsapp {
  background-color: #25d366;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10px;
  transition: all 0.5s ease;
}

.absolute-icons .whatsapp:hover {
  animation: bounce 1s ease infinite;
}

.absolute-icons .whatsapp a {
  font-size: 3rem;
  margin-left: 3px;
}

.absolute-icons a {
  color: #fff;
  line-height: 1;
}

@keyframes bounce {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* Basic column - fills available space equally */
.col {
  flex: 1 0 0%;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
}

/* Specific column spans like .col-1 to .col-12 for a 12-column layout */
.col-1 {
  flex: 0 0 8.3333%;
  max-width: 8.3333%;
}

.col-2 {
  flex: 0 0 16.6667%;
  max-width: 16.6667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.3333%;
  max-width: 33.3333%;
}

.col-5 {
  flex: 0 0 41.6667%;
  max-width: 41.6667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  flex: 0 0 58.3333%;
  max-width: 58.3333%;
}

.col-8 {
  flex: 0 0 66.6667%;
  max-width: 66.6667%;
}

.col-9 {
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  flex: 0 0 83.3333%;
  max-width: 83.3333%;
}

.col-11 {
  flex: 0 0 91.6667%;
  max-width: 91.6667%;
}

.col-12 {
  flex: 0 0 100%;
  max-width: 100%;
}

/* Responsive: Stack columns on small screens */
@media (max-width: 767px) {
  .row {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .col,
  [class*="col-"] {
    max-width: 100% !important;
    flex: 0 0 100% !important;
    padding-left: 0;
    padding-right: 0;
  }
}

/* CSS */
.vittpulse-footer {
  background: #0e0f0e;
  color: #fff;
  padding: 100px 0 40px;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 90%;
  margin: auto;
  gap: 40px;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.035);
  padding: 60px;
  border-radius: 50px;
}

.footer-logo-social {
  flex: 1 1 200px;
  min-width: 180px;
}

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo img {
  width: 18rem;
}

.footer-logo h3 {
  color: #505050;
}
.footer-location {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-location h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 600;
  color: white;
  font-family: "Quicksand", sans-serif;
}

.footer-location ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
  margin: 0;
}

.footer-location ul li {
  font-size: 1.35rem;
  line-height: 2.5;
}

.footer-location a {
  color: #efefef;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-location a:hover {
  color: var(--vitt-green);
  border-bottom: 1px solid var(--vitt-green);
}
.footer-menu a,
.footer-info a,
.footer-contact a {
  color: #efefef;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-menu a:hover,
.footer-info a:hover,
.footer-contact a:hover {
  color: var(--vitt-green);
  border-bottom: 1px solid var(--vitt-green);
}

.logo-text {
  font-size: 2.2rem;
  letter-spacing: 2px;
  display: inline-block;
}

.logo-underline {
  margin-top: 12px;
  margin-bottom: 12px;
  border: 1px solid #ccc;
  width: 80%;
}

.footer-social a {
  display: inline-block;
  margin-right: 16px;
  vertical-align: middle;
}

.footer-social img {
  width: 36px;
  height: 36px;
  filter: invert(1);
  transition: filter 0.2s;
}

.footer-social img:hover {
  filter: invert(51%) sepia(70%) saturate(370%) hue-rotate(90deg) brightness(90%) contrast(95%);
}

.footer-menu,
.footer-info,
.footer-contact {
  flex: 1 1 220px;
  min-width: 200px;
}

.footer-menu h3,
.footer-info h3,
.footer-contact h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  letter-spacing: 1px;
  font-weight: 600;
  color: white;
  font-family: "Quicksand", sans-serif;
}

.footer-menu ul,
.footer-info ul,
.footer-contact ul {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  line-height: 2;
  margin: 0;
}

.footer-contact ul span {
  margin-right: 7px;
}

.footer-menu ul li,
.footer-info ul li,
.footer-contact ul li {
  font-size: 1.35rem;
  line-height: 2.5;
}

.footer-contact ul li.address {
  display: flex;
  align-items: start;
}

.footer-contact ul li.address p {
  font-size: 1.05rem;
  line-height: 1.5;
  text-align: justify;
}

.footer-contact ul li.address span {
  line-height: 1.5;
}

.footer-copyright {
  padding: 0 16px;
  max-width: 85%;
  margin: auto;
  margin-top: 40px;
  font-size: 1.05rem;
  color: #ccc;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright p {
  margin: 0;
}

.footer-copyright a {
  color: var(--vitt-green);
}

.footer-copyright a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
}

/* Responsive Design */
@media (max-width: 768px) {

  .topbar {
    display: none;
  }

  .nav {
    flex-direction: row;
    gap: 20px;
    justify-content: space-between;
  }

  .nav-menu.desktop {
    display: none;
  }

  .nav-menu.mobile {
    display: flex;
    position: fixed;
    left: -100%;
    flex-direction: column;
    gap: 25px;
    text-align: left;
    background-color: #fff;
    width: 100%;
    padding: 20px;
    transition: all 0.3s ease;
  }

  .nav-menu.mobile.open {
    left: 0;
  }

  .nav-menu.mobile a {
    font-size: 20px;
  }

  .menuBtn {
    display: block;
    outline: none;
    border: 0;
    background-color: transparent;
    font-size: 2.25rem;
  }

  .btn-consultation {
    display: none;
  }

  .hero-text h2 {
    font-size: 32px;
  }

  .about-cards {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .industry-tags {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 480px) {
  .hero-text h2 {
    font-size: 28px;
  }

  .section-title {
    font-size: 28px;
  }

  .hero-buttons {
    flex-direction: column;
  }
}


.footer-logo .text-container {
  font-family: "Quicksand", sans-serif;
  font-size: 18px;
  font-weight: bold;
  text-align: left;
  line-height: 1.2;
  text-transform: uppercase;
  font-style: italic;
}

/* .footer-logo .letter {
  color: #777777;
  display: inline-block;
  animation: colorWave 4s infinite;
} */

/* @keyframes colorWave {
  0% {
    color: #777777;
  }

  10% {
    color: #fff;
  }

  20% {
    color: #fff;
  }

  30% {
    color: #777777;
  }

  100% {
    color: #777777;
  }
}

/* Responsive design */
/* @media (max-width: 768px) {
  .footer-logo .text-container {
    font-size: 16px;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .footer-logo .text-container {
    font-size: 14px;
    padding: 15px;
  }
} */

/* Accessibility */
/* @media (prefers-reduced-motion: reduce) {
  .footer-logo .letter {
    animation: none;
    color: #fff;
  }
} */

.service-header .card {
  color: #313131;
}

@media (min-width: 1600px) {
  .footer-container {
    max-width: 90%;
    padding: 60px;
    gap: 20px;
  }

  .footer-logo-social {
    flex: 1 1 20%;
    min-width: 20%;
  }

  .footer-menu,
  .footer-contact {
    flex: 1 1 calc(80% / 3);
    min-width: calc(80% / 3);
    padding: 0 20px;
  }

  .footer-logo img {
    width: 16rem;
  }

  .footer-logo h3 {
    font-size: 1.5rem;
  }

  .footer-logo .text-container {
    font-size: 16px;
  }

  .footer-menu ul li,
  .footer-info ul li,
  .footer-contact ul li {
    font-size: 1.25rem;
  }
}

@media (min-width: 1300px) and (max-width: 1600px) {
  .footer-container {
    max-width: 92%;
    padding: 60px 40px;
    gap: 25px;
  }

  .footer-logo-social {
    flex: 1 1 20%;
  }

  .footer-logo-social .footer-logo img {
    width: 14rem;
  }

  .footer-logo h3 {
    font-size: 1.35rem;
  }

  .footer-menu {
    flex: 1 1 25%;
    min-width: 190px;
  }

  .footer-info {
    flex: 1 1 15%;
    min-width: 135px;
  }

  .footer-contact {
    flex: 1 1 20%;
  }

  .footer-logo .text-container {
    font-size: 15px;
  }

  .footer-menu ul li,
  .footer-info ul li,
  .footer-contact ul li {
    font-size: 1.05rem;
  }
}

/* Overlay */
#popupOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* Popup Box */
.popupBox {
  background: white;
  width: 90%;
  max-width: 460px;
  padding: 20px;
  border-radius: 8px;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Close Button */
.closeBtn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}