:root {
  /* Colors */
  --color-primary: #860EDF;
  --color-primary-light: #c233ff;
  --color-primary-light2: rgba(131, 7, 222, 0.09);
  --color-primary-hover: #640DA3;
  --color-secondary: #7700CE;

  --color-heading: #000000;
  --color-body: #474747;
  --color-muted: #717182;
  --color-muted2-same: #dddddd;

  --color-border: #ECECF0;
  --color-border-light: #F9F9F9;
  --color-border-primary-light: #e1b9ff;

  --color-background: #FFFFFF;
  --color-card: #FFFFFF;
  --color-surface: #F9F9F9;

  --color-white: #FFFFFF;
  --color-black: #000000;

  --color-success: #198754;
  --color-warning: #ffc107;
  --color-danger: #dc3545;

  /* Header & Navigation Tokens */
  --header-bg: #1a1b3b;
  --header-border: rgba(255, 255, 255, 0.05);
  --header-text: #f8f9fa;
  --header-link: #d1d1e0;
  --header-link-hover: #ffffff;
  --header-dropdown-bg: rgba(14, 27, 101, 0.92);
  --header-dropdown-border: rgba(255, 255, 255, 0.3);

  --bg-gradient-1: linear-gradient(180deg, #aa81ff 50%, #b0c8ff 100%);

  /* Typography */
  --font-family-base: 'Archivo', system-ui, -apple-system, sans-serif;

  --font-size-10: 0.625rem;
  /* 10px */
  --font-size-11: 0.6875rem;
  /* 11px */
  --font-size-12: 0.75rem;
  /* 12px */
  --font-size-13: 0.8125rem;
  /* 13px */
  --font-size-14: 0.875rem;
  /* 14px */
  --font-size-15: 0.9375rem;
  /* 15px */
  --font-size-16: 1rem;
  /* 16px */
  --font-size-18: 1.125rem;
  /* 18px */
  --font-size-20: 1.25rem;
  /* 20px */
  --font-size-22: 1.375rem;
  /* 22px */
  --font-size-24: 1.5rem;
  /* 24px */
  --font-size-28: 1.75rem;
  /* 28px */
  --font-size-32: 2rem;
  /* 32px */
  --font-size-36: 2.25rem;
  /* 36px */
  --font-size-40: 2.5rem;
  /* 40px */

  --font-weight-300: 300;
  --font-weight-400: 400;
  --font-weight-500: 500;
  --font-weight-600: 600;
  --font-weight-700: 700;
  --font-weight-800: 800;

  /* Icon Sizes */
  --icon-14: 0.875rem;
  --icon-16: 1rem;
  --icon-18: 1.125rem;
  --icon-20: 1.25rem;
  --icon-24: 1.5rem;
  --icon-28: 1.75rem;
  --icon-32: 2rem;

  /* Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-pill: 50rem;

  /* Shadows */
  --shadow-sm: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  --shadow-md: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 1rem 3rem rgba(0, 0, 0, 0.175);
  --box-shadow-1: 0px 5px 22px rgba(29, 29, 29, 0.09);

  /* Layout */
  --header-height: 80px;
  --mobile-header-height: 64px;

  /* Transitions */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s ease-in-out;
  --transition-slow: 0.5s ease-in-out;
}

/* Dark Mode Preferences */
[data-bs-theme="dark"] {
  --color-heading: #FFFFFF;
  --color-body: #D1D1E0;
  --color-muted: #A0A0B0;

  --color-border: #2D2D3D;
  --color-border-light: #3D3D4D;
  --color-border-primary-light: #370060;

  --color-background: #0A0A10;
  --color-card: #14141F;
  --color-surface: #1A1A2A;

  --color-white: #000000;
  --color-black: #FFFFFF;

  --bg-gradient-1: linear-gradient(180deg, #35215d 50%, #1d305f 100%);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-bs-theme="light"]) {
    --color-heading: #FFFFFF;
    --color-body: #D1D1E0;
    --color-muted: #A0A0B0;

    --color-border: #2D2D3D;
    --color-border-light: #3D3D4D;

    --color-background: #0A0A10;
    --color-card: #14141F;
    --color-surface: #1A1A2A;
  }
}

/* Reset & Base */
html {scroll-behavior: smooth;}
body {
  width: 100%;
  font-family: var(--font-family-base);
  color: var(--color-body);
  background-color: var(--color-background);
  font-size: var(--font-size-16);
  font-weight: var(--font-weight-400);
  line-height: 1.5;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, .text-heading {color: var(--color-heading);font-family: var(--font-family-base);}
a {color: var(--color-primary);text-decoration: none;transition: all var(--transition-normal);}
a:hover {color: var(--color-primary-hover);}
ul {margin: 0;padding: 0;list-style: none;}
.z-4 {z-index: 4 !important;}
.z-1031 {z-index: 1031 !important;}
.h-16 {min-height: 16px;height: 16px;}
.h-20 {min-height: 20px;height: 20px;}
.h-24 {min-height: 24px;height: 24px;}
.h-28 {min-height: 28px;height: 28px;}
.h-32 {min-height: 32px;height: 32px;}
.h-40 {min-height: 40px;height: 40px;}
.iconSize-44 {min-width: 44px;width: 44px;min-height: 44px;height: 44px;}
.iconSize-52 {min-width: 52px;width: 52px;min-height: 52px;height: 52px;}
.transform-none {transform: none !important;}
.mb-16 {margin-bottom: -16px !important;}

/* Colors & BG Colors */
.color-primary {color: var(--color-primary) !important;}
.color-muted2-same {color: var(--color-muted2-same) !important;}
.color-white {color: var(--color-white) !important;}
.color-white-same {color: #FFFFFF !important;}
.color-black {color: var(--color-black) !important;}
.bg-color-white {background-color: var(--color-white) !important;}
.bg-color-black {background-color: var(--color-black) !important;}
.bg-primary-light {background-color: var(--color-primary-light) !important;}
.bg-primary-light2 {background-color: var(--color-primary-light2) !important;}

/* Layout Containers */
.custom-container {
  max-width: calc(1180px + 3rem);
  margin: 0 auto;
  width: 100%;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Backgrounds */
.bg-primary {
  background-color: var(--color-primary) !important;
}

.bg-secondary {
  background-color: var(--color-secondary) !important;
}

.bg-card {
  background-color: var(--color-card) !important;
}

.bg-surface {
  background-color: var(--color-surface) !important;
}

.bg-light {
  background-color: var(--color-border-light) !important;
}

.bg-dark {
  background-color: var(--color-heading) !important;
}

.bg-transparent {
  background-color: transparent !important;
}

/* Text Colors */
.text-heading {
  color: var(--color-heading) !important;
}

.text-body {
  color: var(--color-body) !important;
}

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

.text-primary {
  color: var(--color-primary) !important;
}

.text-secondary {
  color: var(--color-secondary) !important;
}

.text-white {
  color: var(--color-white) !important;
}

.text-success {
  color: var(--color-success) !important;
}

.text-warning {
  color: var(--color-warning) !important;
}

.text-danger {
  color: var(--color-danger) !important;
}

/* Font Sizes */
.text-10 {font-size: var(--font-size-10) !important;}
.text-11 {font-size: var(--font-size-11) !important;}
.text-12, .text-xs {font-size: var(--font-size-12) !important;}
.text-13 {font-size: var(--font-size-13) !important;}
.text-14, .text-sm {font-size: var(--font-size-14) !important;}
.text-15 {font-size: var(--font-size-15) !important;}
.text-16, .text-md {font-size: var(--font-size-16) !important;}
.text-18 {font-size: var(--font-size-18) !important;}
.text-20, .text-lg {font-size: var(--font-size-20) !important;}
.text-22 {font-size: var(--font-size-22) !important;}
.text-24, .text-xl {font-size: var(--font-size-24) !important;}
.text-28 {font-size: var(--font-size-28) !important;}
.text-32, .text-xxl {font-size: var(--font-size-32) !important;}
.text-36 {font-size: var(--font-size-36) !important;}
.text-40, .text-xxxl {font-size: var(--font-size-40) !important;}

/* Font Weights */
.fw-300 {
  font-weight: var(--font-weight-300) !important;
}
.fw-400 {
  font-weight: var(--font-weight-400) !important;
}
.fw-500 {
  font-weight: var(--font-weight-500) !important;
}
.fw-600 {
  font-weight: var(--font-weight-600) !important;
}
.fw-700 {
  font-weight: var(--font-weight-700) !important;
}
.fw-800 {
  font-weight: var(--font-weight-800) !important;
}

/* TEXT LIMIT STYLES */
.text-limit-1,.text-limit-2,.text-limit-3,.text-limit-4{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
}
.text-limit-1{-webkit-line-clamp: 1;}
.text-limit-2{-webkit-line-clamp: 2;}
.text-limit-3{-webkit-line-clamp: 3;}
.text-limit-4{-webkit-line-clamp: 4;}

/* Line Heights */
.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-md {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

/* Radius */
.radius-sm {
  border-radius: var(--radius-sm) !important;
}

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

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

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

.radius-pill {
  border-radius: var(--radius-pill) !important;
}

/* Shadows */
.shadow-sm {
  box-shadow: var(--shadow-sm) !important;
}

.shadow-md {
  box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
  box-shadow: var(--shadow-lg) !important;
}

/* Borders */
.border-primary {
  border: 1px solid var(--color-primary) !important;
}
.border-primary-light {
  border: 1px solid var(--color-border-primary-light) !important;
}
.border-light {
  border: 1px solid var(--color-border-light) !important;
}

.border-muted {
  border: 1px solid var(--color-muted) !important;
}

/* Cursors */
.cursor-pointer {
  cursor: pointer !important;
}

/* Transitions */
.transition {
  transition: all var(--transition-normal) !important;
}

.transition-fast {
  transition: all var(--transition-fast) !important;
}

/* Images */
.img-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.img-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

/* ---------------- INPUT ---------------- */
.form-control, .form-select, input, textarea {
    outline: none !important;
    box-shadow: none !important;
}
/* ---------------- INPUT END ---------------- */

@media screen and (max-width: 1024px) {
    .text-32, .text-xxl {font-size: var(--font-size-28) !important;}
    .text-36 {font-size: var(--font-size-32) !important;}
    .text-40, .text-xxxl {font-size: var(--font-size-36) !important;}
}
@media screen and (max-width: 991px) {
    .text-12, .text-xs {font-size: var(--font-size-10) !important;}
    .text-13 {font-size: var(--font-size-11) !important;}
    .text-14, .text-sm {font-size: var(--font-size-12) !important;}
    .text-15 {font-size: var(--font-size-13) !important;}
    .text-16, .text-md {font-size: var(--font-size-14) !important;}
    .text-18 {font-size: var(--font-size-15) !important;}
    .text-20, .text-lg {font-size: var(--font-size-16) !important;}
    .text-22 {font-size: var(--font-size-18) !important;}
    .text-24, .text-xl {font-size: var(--font-size-20) !important;}
    .text-28 {font-size: var(--font-size-22) !important;}
    .text-32, .text-xxl {font-size: var(--font-size-24) !important;}
    .text-36 {font-size: var(--font-size-28) !important;}
    .text-40, .text-xxxl {font-size: var(--font-size-32) !important;}
    .w-md-100 {width: 100% !important;}
}
@media screen and (max-width: 767px) {
    .text-36 {font-size: 26px !important;}
    .text-40, .text-xxxl {font-size: var(--font-size-28) !important;}
    .custom-container {max-width: 100%;padding-left: 12px;padding-right: 12px;}
    .rounded-phone-8 {border-radius: 8px !important}
    .text-sm-13 {font-size: 13px !important;}
    .w-sm-100 {width: 100% !important;}
    .h-sm-18 {min-height: 18px;height: 18px;}
}
