/* ==========================================================================
   FIBER GROUP - Base Styles (Reset, Typography, Utilities)
   ========================================================================== */

/* --- Google Fonts Import --- */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* --- Modern CSS Reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.site-logo img {
  max-height: 100% !important;
  height: 40px !important;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--fw-normal);
  line-height: var(--lh-relaxed);
  color: var(--color-text);
  background-color: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

/* --- Selection --- */
::selection {
  background-color: var(--color-accent-muted);
  color: var(--color-accent-dark);
}

/* --- Custom Scrollbar --- */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: var(--color-surface);
}

::-webkit-scrollbar-thumb {
  background: var(--color-accent);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--color-accent-hover);
}

/* --- Container System --- */
.container {
  width: 100%;
  max-width: var(--container-lg);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--sm {
  max-width: var(--container-sm);
}

.container--md {
  max-width: var(--container-md);
}

.container--xl {
  max-width: var(--container-xl);
}

.container--full {
  max-width: 100%;
}

/* --- Typography Scale --- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-tight);
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: var(--fw-extrabold);
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.875rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.375rem);
}

h5 {
  font-size: var(--text-lg);
}

h6 {
  font-size: var(--text-base);
}

p {
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
}

p+p {
  margin-top: var(--sp-4);
}

/* --- Eyebrow Label (Section Pre-Title) --- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--fw-semibold);
  letter-spacing: var(--ls-widest);
  text-transform: uppercase;
  color: var(--color-accent);
}

.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* --- Section Header Component --- */
.section-header {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-header--center {
  text-align: center;
}

.section-header--center .eyebrow {
  justify-content: center;
}

.section-header .eyebrow {
  margin-bottom: var(--sp-4);
}

.section-header h2 {
  margin-bottom: var(--sp-5);
}

.section-header p {
  font-size: var(--text-md);
  max-width: 580px;
}

.section-header--center p {
  margin-inline: auto;
}

/* --- Section Padding --- */
.section {
  padding-block: var(--section-y);
}

.section--surface {
  background-color: var(--color-surface);
}

.section--dark {
  background-color: var(--color-dark);
}

.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--color-text-inverse);
}

.section--dark p {
  color: var(--color-text-inverse-sec);
}

.section--dark .eyebrow {
  color: var(--color-accent-light);
}

.section--dark .eyebrow::before {
  background: var(--color-accent-light);
}

/* --- Divider --- */
.divider {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: var(--radius-full);
  margin-block: var(--sp-6);
}

.divider--center {
  margin-inline: auto;
}

/* --- Grid Utilities --- */
.grid {
  display: grid;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}

@media (max-width: 1023px) {
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--2 {
    grid-template-columns: 1fr;
  }
}

/* --- Flex Utilities --- */
.flex {
  display: flex;
}

.flex--center {
  align-items: center;
  justify-content: center;
}

.flex--between {
  align-items: center;
  justify-content: space-between;
}

.flex--gap-2 {
  gap: var(--sp-2);
}

.flex--gap-4 {
  gap: var(--sp-4);
}

.flex--gap-6 {
  gap: var(--sp-6);
}

/* --- Text Utilities --- */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent);
}

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

.text-sm {
  font-size: var(--text-sm);
}

.text-lg {
  font-size: var(--text-lg);
}

.text-xl {
  font-size: var(--text-xl);
}

/* --- Visibility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-logo-img222 {
  max-height: 100% !important;
  height: 40px !important;
}
.about-vm__card:first-child {
  background:var(--color-dark); 
}
.about-vm__card:first-child h3{
  color: #fff;
}
.about-vm__card:first-child p{
color: #ffffffc5;
}
/* --- Lazy Load Image Placeholder --- */
img[data-src] {
  opacity: 0;
  transition: opacity var(--t-slow) var(--ease-out);
}

img.loaded {
  opacity: 1;
}

/* --- Page transition wrapper --- */
.page-wrapper {
  animation: pageEnter var(--t-slower) var(--ease-out) both;
}

@keyframes pageEnter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

/* --- 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;
  }
}