/* =========================================
   CORE DESIGN TOKENS (Desktop Default)
========================================= */
:root {
  /* Color System */
  --primary-color: #b1000f;
  --primary-light: #ff4d4d;
  --primary-dark: #0a58ca;
  --secondary-color: #6c757d;
  --success-color: #198754;
  --info-color: #0dcaf0;
  --warning-color: #ffc107;
  --danger-color: #dc3545;
  --light-bg: #f8f9fa;
  --dark-bg: #212529;
  --text-primary: #212529;
  --text-secondary: #6c757d;
  --text-muted: #6c757d;
  --border-color: #dee2e6;
  --white: #ffffff;
  --black: #000000;

  /* Typography */
  --font-base: 'Roboto', 'Kanit', sans-serif, Arial, sans-serif;
  --font-heading: 'Roboto', 'Kanit', var(--font-base);
  --font-mono: 'Courier New', monospace;

  /* Font Sizes - Fluid Typography */
  --fs1: 0.875rem;    /* 14px */
  --fs2: 1rem;        /* 16px */
  --fs3: 1.25rem;     /* 20px */
  --fs4: 1.5rem;      /* 24px */
  --fs5: 2rem;        /* 32px */
  --fs6: 2.5rem;      /* 40px */
  --fs7: 3rem;        /* 48px */
 

  /* Font Weights */
  --fw-light: 300;
  --fw-normal: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;
  --fw-black: 900;

  /* Spacing Scale */
  --s0: 0;
  --s1: 0.5rem;    /* 8px */
  --s2: 1rem;      /* 16px */
  --s3: 1.5rem;    /* 24px */
  --s4: 2rem;      /* 32px */
  --s5: 2.5rem;    /* 40px */
  --s6: 3rem;      /* 48px */
  --s7: 4rem;      /* 64px */
  --s8: 6rem;      /* 96px */
  

  /* Z-index Scale */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;

  /* Transitions & Animations */
  --transition-base: 0.3s;
  --transition-speed: 0.3s;
  --transition-fast: 0.15s;
  --transition-slow: 0.5s;
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  
  /* Border Radius */
  --border-radius: 0.5rem;
  --border-radius-sm: 0.25rem;
  --border-radius-lg: 1rem;
}

/* =========================================
   RESPONSIVE TOKENS
========================================= */
@media (max-width: 991.98px) {
  :root {
    --s2: 0.9rem;
    --s3: 1.35rem;
    --s4: 1.75rem;
    --s5: 2.15rem;
    --s6: 2.65rem;
    --fs3: 1.15rem;
    --fs4: 1.35rem;
    --fs5: 1.75rem;
    --fs6: 2.15rem;
    --gutter-x: 1rem;
  }
}

@media (max-width: 767.98px) {
  :root {
    --s2: 0.85rem;
    --s3: 1.25rem;
    --s4: 1.6rem;
    --s5: 2rem;
    --s6: 2.4rem;
    --fs3: 1.1rem;
    --fs4: 1.25rem;
    --fs5: 1.6rem;
    --fs6: 2rem;
    --gutter-x: 0.85rem;
  }
}

/* =========================================
   MODERN CSS RESET
========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  font-family: var(--font-base);
  font-size: var(--fs2);
  line-height: var(--lh-normal);
  color: var(--text-primary);
  background-color: var(--white);
  overflow-x: hidden;
  min-height: 100vh;
} 
 
input, button, textarea, select {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

/* =========================================
  PADDING & MARGIN UTILITIES
========================================= */
.vndpd-0 { padding: 0 !important; }
.vndpd-1 { padding: 0.25rem !important; }
.vndpd-2 { padding: 0.5rem !important; }
.vndpd-3 { padding: 1rem !important; }
.vndpd-4 { padding: 1.5rem !important; }
.vndpd-5 { padding: 3rem !important; }

/* Responsive Padding - Mobile/Tablet */
@media (max-width: 991.98px) {
  .vndpd-1 { padding: 0.2rem !important; }
  .vndpd-2 { padding: 0.45rem !important; }
  .vndpd-3 { padding: 0.9rem !important; }
  .vndpd-4 { padding: 1.35rem !important; }
  .vndpd-5 { padding: 2.2rem !important; }
}

@media (max-width: 767.98px) {
  .vndpd-1 { padding: 0.2rem !important; }
  .vndpd-2 { padding: 0.4rem !important; }
  .vndpd-3 { padding: 0.85rem !important; }
  .vndpd-4 { padding: 1.25rem !important; }
  .vndpd-5 { padding: 1.7rem !important; }
}

 



/* =========================================
   CONTAINER & GRID SYSTEM
========================================= */
 

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
 
/* =========================================
   FLEXBOX UTILITIES
========================================= */
.flex-row { flex-direction: row !important; }
.flex-column { flex-direction: column !important; }
.flex-row-reverse { flex-direction: row-reverse !important; }
.flex-column-reverse { flex-direction: column-reverse !important; }

.flex-wrap { flex-wrap: wrap !important; }
.flex-nowrap { flex-wrap: nowrap !important; }

.justify-start { justify-content: flex-start !important; }
.justify-center { justify-content: center !important; }
.justify-end { justify-content: flex-end !important; }
.justify-between { justify-content: space-between !important; }
.justify-around { justify-content: space-around !important; }
.justify-evenly { justify-content: space-evenly !important; }

.align-start { align-items: flex-start !important; }
.align-center { align-items: center !important; }
.align-end { align-items: flex-end !important; }
.align-stretch { align-items: stretch !important; }
.align-baseline { align-items: baseline !important; }
  
.text-center { text-align: center !important; }
.text-start { text-align: left !important; }
.text-end { text-align: right !important; }
 
 

/* =========================================
   TEXT & TYPOGRAPHY UTILITIES
========================================= */
.fs-1 { font-size: var(--fs1) !important; }
.fs-2 { font-size: var(--fs2) !important; }
.fs-3 { font-size: var(--fs3) !important; }
.fs-4 { font-size: var(--fs4) !important; }
.fs-5 { font-size: var(--fs5) !important; }
.fs-6 { font-size: var(--fs6) !important; }

.fw-light { font-weight: var(--fw-light) !important; }
.fw-normal { font-weight: var(--fw-normal) !important; }
.fw-medium { font-weight: var(--fw-medium) !important; }
.fw-semibold { font-weight: var(--fw-semibold) !important; }
.fw-bold { font-weight: var(--fw-bold) !important; }
.fw-black { font-weight: var(--fw-black) !important; }

.lh-tight { line-height: var(--lh-tight) !important; }
.lh-normal { line-height: var(--lh-normal) !important; }
.lh-loose { line-height: var(--lh-loose) !important; }

.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-success { color: var(--success-color) !important; }
.text-danger { color: var(--danger-color) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-white { color: var(--white) !important; }
.text-dark { color: var(--text-primary) !important; }

.text-uppercase { text-transform: uppercase !important; }
.text-lowercase { text-transform: lowercase !important; }
.text-capitalize { text-transform: capitalize !important; }

.text-decoration-none { text-decoration: none !important; }
.text-decoration-underline { text-decoration: underline !important; }
 

/* =========================================
   TYPOGRAPHY ELEMENTS
========================================= */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin-bottom: var(--text-spacing);
  color: var(--text-primary);
}

h1, .h1 { font-size: var(--fs6); }
h2, .h2 { font-size: var(--fs5); }
h3, .h3 { font-size: var(--fs4); }
h4, .h4 { font-size: var(--fs3); }
h5, .h5 { font-size: var(--fs2); }
h6, .h6 { font-size: var(--fs1); }

/* Bootstrap Display Classes Override */
.display-1 {
  font-size: calc(var(--fs7) * 1.5);
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

.display-2 {
  font-size: calc(var(--fs7) * 1.3);
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

.display-3 {
  font-size: calc(var(--fs7) * 1.1);
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

.display-4 {
  font-size: var(--fs7);
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

.display-5 {
  font-size: calc(var(--fs6) * 1.2);
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

.display-6 {
  font-size: var(--fs6);
  font-family: var(--font-heading);
  line-height: var(--lh-tight);
  color: var(--text-primary);
}

/* Bootstrap Font Weight Classes Override */
.fw-light { font-weight: var(--fw-light); }
.fw-normal { font-weight: var(--fw-normal); }
.fw-medium { font-weight: var(--fw-medium); }
.fw-semibold { font-weight: var(--fw-semibold); }
.fw-bold { font-weight: var(--fw-bold); }

/* Bootstrap Text Utility Classes Override */
.lead {
  font-size: calc(var(--fs2) * 1.25);
  font-weight: var(--fw-normal);
  line-height: var(--lh-relaxed);
  color: var(--text-primary);
}

p {
  font-size: var(--fs2);
  line-height: var(--lh-normal);
  margin-bottom: var(--text-spacing);
  color: var(--text-primary);
}

small, .small {
  font-size: var(--fs1);
  line-height: var(--lh-normal);
}

strong, b {
  font-weight: var(--fw-bold);
}

em, i {
  font-style: italic;
}

blockquote {
  padding: var(--s3) var(--s4);
  margin: var(--s4) 0;
  border-left: 4px solid var(--primary-color);
  background-color: var(--light-bg);
  font-style: italic;
}

code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background-color: var(--light-bg);
  padding: 0.125rem 0.375rem;
  border-radius: var(--r1);
}

pre {
  font-family: var(--font-mono);
  background-color: var(--light-bg);
  padding: var(--s3);
  border-radius: var(--r2);
  overflow-x: auto;
}



/* =========================================
   ACCESSIBILITY
========================================= */
.skip-to-content {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary-color);
  color: var(--white);
  padding: var(--s2);
  text-decoration: none;
  z-index: var(--z-fixed);
  border-radius: 0 0 var(--r1) 0;
  transition: top var(--transition-fast);
}

.skip-to-content:focus {
  top: 0;
  outline: 2px solid var(--white);
  outline-offset: 2px;
}

/* Focus Styles for Keyboard Navigation */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 2px;
  border-radius: var(--r1);
}

/* Remove outline for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible) {
  outline: none;
}

/* Screen Reader Only */
.sr-only,
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* Reduced Motion */
@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;
  }
}

/* =========================================
   ANIMATIONS & KEYFRAMES
========================================= */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Animation Classes */
.fade-in { animation: fadeIn 0.6s var(--ease-out); }
.fade-in-up { animation: fadeInUp 0.6s var(--ease-out); }
.fade-in-down { animation: fadeInDown 0.6s var(--ease-out); }
.slide-in-left { animation: slideInLeft 0.6s var(--ease-out); }
.slide-in-right { animation: slideInRight 0.6s var(--ease-out); }
.scale-in { animation: scaleIn 0.4s var(--ease-out); }

/* Loading Spinner */
.spinner {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 0.75s linear infinite;
}

.spinner-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.15em;
}

.spinner-lg {
  width: 3rem;
  height: 3rem;
  border-width: 0.3em;
}

/* =========================================
   BUTTONS
========================================= */
.btn {
  display: inline-block;
  font-weight: var(--fw-semibold);
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  user-select: none;
  border: 2px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: var(--fs2);
  line-height: var(--lh-normal);
  border-radius: var(--border-radius);
  transition: all var(--transition-base) var(--ease-out);
  cursor: pointer;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:disabled,
.btn.disabled {
  opacity: 0.65;
  pointer-events: none;
  cursor: not-allowed;
}

/* Button Variants */
.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 4px 12px rgba(219, 32, 32, 0.3);
}

.btn-secondary {
  background-color: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.btn-secondary:hover {
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-success {
  background-color: var(--success-color);
  border-color: var(--success-color);
  color: var(--white);
}

.btn-success:hover {
  background-color: #157347;
  border-color: #146c43;
}

.btn-danger {
  background-color: var(--danger-color);
  border-color: var(--danger-color);
  color: var(--white);
}

.btn-danger:hover {
  background-color: #bb2d3b;
  border-color: #b02a37;
}

.btn-light {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}

.btn-light:hover {
  background-color: var(--light-bg);
  color: var(--primary-dark);
}

.btn-dark {
  background-color: var(--dark-bg);
  border-color: var(--dark-bg);
  color: var(--white);
}

.btn-dark:hover {
  background-color: #1c1f23;
  border-color: #1a1d20;
}

/* Outline Buttons */
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--primary-color);
  color: var(--primary-color);
}

.btn-outline-primary:hover {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.btn-outline-light {
  background-color: transparent;
  border-color: var(--white);
  color: var(--white);
}

.btn-outline-light:hover {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--primary-color);
}

/* Button Sizes */
.btn-sm {
  padding: 0.5rem 1rem;
  font-size: var(--fs1);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: var(--fs3);
}

/* Button Block */
.btn-block {
  display: block;
  width: 100%;
}

/* ============================================
   Owl Carousel Section
   ============================================ */

.btn-group-owl {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Owl Carousel Container */
.owl-carousel {
  position: relative;
}

/* Owl Carousel Navigation */
.owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 10;
}

.owl-nav button {
  pointer-events: all;
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  color: var(--primary-color);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1.5rem;
}

.owl-nav button:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.owl-prev {
  left: 2rem !important;
}

.owl-next {
  right: 2rem !important;
}

/* Owl Carousel Dots */
.owl-dots {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  width: 100%;
  display: flex !important;
  justify-content: center;
  gap: 0.75rem;
  z-index: 10;
  pointer-events: auto;
}

.owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
  display: inline-block !important;
  outline: none !important;
}

.owl-dot.active {
  background: white !important;
  width: 32px;
  border-radius: 6px;
}

.owl-dot:hover {
  background: rgba(255, 255, 255, 0.8) !important;
}

/* Responsive Owl */
@media (max-width: 991.98px) {
  .btn-group-owl {
    justify-content: center;
  }

  .owl-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .owl-prev {
    left: 0.5rem !important;
  }

  .owl-next {
    right: 0.5rem !important;
  }
}

@media (max-width: 767.98px) {
  .btn-group-owl {
    flex-direction: column;
    gap: 0.5rem;
  }

  .btn-group-owl .btn {
    width: 100%;
    text-align: center;
  }

  .owl-nav {
    display: none;
  }

  .owl-dot {
    width: 10px;
    height: 10px;
  }

  .owl-dots {
    bottom: 1rem;
    gap: 0.5rem;
  }
}

/* ============================================
   Gallery & Lightbox Styling
   ============================================ */

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--border-radius);
  transition: all var(--transition-speed) ease;
}

.gallery-link {
  display: block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}

.gallery-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
}

.gallery-link:hover img {
  transform: scale(1.08);
}

.gallery-link::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(219, 32, 32, 0.1);
  opacity: 0;
  transition: opacity var(--transition-speed) ease;
}

.gallery-link:hover::after {
  opacity: 1;
}

.gallery-link::before {
  display: none;
}

.gallery-link:hover::before {
  opacity: 1;
}

/* Image Utilities */
img.lazy {
  opacity: 0.7;
  transition: opacity var(--transition-base);
}

img.lazy.loaded {
  opacity: 1;
}

img.lazy[src*="svg"] {
  animation: pulse 1.5s infinite;
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  max-width: 100%;
  height: auto;
}
 

/* =========================================
   PRINT STYLES
========================================= */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  a[href]::after {
    content: " (" attr(href) ")";
  }

  abbr[title]::after {
    content: " (" attr(title) ")";
  }

  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }

  thead {
    display: table-header-group;
  }

  tr,
  img {
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
  }

  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }

  h2,
  h3 {
    page-break-after: avoid;
  }

  .header-nav,
  .slider-nav,
  .cta-section,
  .contact-form-section,
  .footer,
  .btn,
  .owl-nav,
  .owl-dots {
    display: none !important;
  }
}
 

/* =========================================
   ASPECT RATIO (Modern CSS)
========================================= */
.ratio {
  position: relative;
  width: 100%;
}

.ratio::before {
  display: block;
  padding-top: var(--aspect-ratio);
  content: "";
}

.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-1x1 { --aspect-ratio: 100%; }
.ratio-4x3 { --aspect-ratio: 75%; }
.ratio-16x9 { --aspect-ratio: 56.25%; }
.ratio-21x9 { --aspect-ratio: 42.857%; }









/* ============================================
   General Utility Classes
   ============================================ */ 
 
.fs0 {
    font-size: 5rem!important;
    line-height: 1.1!important;
} 
.fs1 {
    font-size: 4rem!important;
    line-height: 1.1!important;
}
.fs2 {
    font-size: 3.5rem!important;
    line-height: 1.2!important;
}
.fs3 {
    font-size: 3rem!important;
    line-height: 1.2!important;
}
.fs4 {
    font-size: 2.5rem!important;
    line-height: 1.3!important;
}
.fs5 {
    font-size: 2rem!important;
    line-height: 1.3!important;
}
.fs6 {
    font-size: 1.5rem!important;
    line-height: 1.4!important;
}
.fs7 {
    font-size: 1.2rem!important;
    line-height: 1.5!important;
}
.fs8 {
    font-size: 1rem!important;
    line-height: 1.5!important;
}

/* Custom Font Weight Classes */
.fb1 {
    font-weight: 700!important;
}
.fb2 {
    font-weight: 600!important;
}
.fb3 {
    font-weight: 500!important;
}
.fb4 {
    font-weight: 400!important;
}

/* Custom Line Height Classes */
.lh1 {
    line-height: 1.1!important;
}
.lh2 {
    line-height: 1.2!important;
}
.lh3 {
    line-height: 1.3!important;
}
.lh4 {
    line-height: 1.4!important;
}

/* Custom Text Color Classes */
.tc1 {
    color: var(--primary-color)!important;
}
.tc2 {
    color: var(--secondary-color)!important;
}
.tc3 {
    color: var(--text-primary)!important;
}
.tc4 {
    color: var(--text-secondary)!important;
}

/* Custom margin Classes */
.mgbt0 {
    margin-bottom: 0rem!important;
}
.mgbt1 {
    margin-bottom: 0.5rem!important;
}
.mgbt2 {
    margin-bottom: 1rem!important;
}
.mgbt3 {
    margin-bottom: 1.5rem!important;
}
.mgbt4 {
    margin-bottom: 2rem!important;
}
.mgbt5 {
    margin-bottom: 3rem!important;
}
.mgtp0 {
    margin-top: 0rem!important;
}
.mgtp1 {
    margin-top: 0.5rem!important;
}
.mgtp2 {
    margin-top: 1rem!important;
}
.mgtp3 {
    margin-top: 1.5rem!important;
}
.mgtp4 {
    margin-top: 2rem!important;
}
.mgtp5 {
    margin-top: 3rem!important;
}

/* Mobile font size adjustments */
@media (max-width: 768px) {
    .fs0 {
        font-size: 3.5rem!important;
        line-height: 1.1!important;
    }   
     .fs1 {
        font-size: 2.8rem!important;
        line-height: 1.15!important;
    }
    .fs2 {
        font-size: 2.4rem!important;
        line-height: 1.25!important;
    }
    .fs3 {
        font-size: 2.2rem!important;
        line-height: 1.25!important;
    }
    .fs4 {
        font-size: 1.95rem!important;
        line-height: 1.3!important;
    }
    .fs5 {
        font-size: 1.7rem!important;
        line-height: 1.35!important;
    }
    .fs6 {
        font-size: 1.4rem!important;
        line-height: 1.4!important;
    }
    .fs7 {
        font-size: 1.1rem!important;
        line-height: 1.5!important;
    }
    .fs8 {
        font-size: 1rem!important;
        line-height: 1.5!important;
    }
}

@media (max-width: 576px) {
    .fs0 {
        font-size: 3rem!important;
        line-height: 1.2!important;
    }    
    .fs1 {
        font-size: 2.3rem!important;
        line-height: 1.2!important;
    }
    .fs2 {
        font-size: 2rem!important;
        line-height: 1.3!important;
    }
    .fs3 {
        font-size: 1.8rem!important;
        line-height: 1.3!important;
    }
    .fs4 {
        font-size: 1.6rem!important;
        line-height: 1.35!important;
    }
    .fs5 {
        font-size: 1.4rem!important;
        line-height: 1.4!important;
    }
    .fs6 {
        font-size: 1.2rem!important;
        line-height: 1.45!important;
    }
    .fs7 {
        font-size: 1.05rem!important;
        line-height: 1.55!important;
    }
    .fs8 {
        font-size: 1rem!important;
        line-height: 1.5!important;
    }
}

/* =========================================
   END OF STYLESHEET
========================================= */



