
:root {
  --vr-navy:        #1a2d4a;
  --vr-navy-light:  #2a4468;
  --vr-blue:        #3b6fa0;
  --vr-blue-mid:    #5889ba;
  --vr-sky:         #8ab4d9;
  --vr-sage:        #7a9e7e;
  --vr-sage-light:  #a8c5aa;
  --vr-sage-pale:   #d4e8d6;
  --vr-cream:       #f8f4ed;
  --vr-cream-dark:  #ede7da;
  --vr-warm-white:  #fdfcf9;
  --vr-sand:        #e8dfd0;
  --vr-text:        #2c2c2c;
  --vr-text-mid:    #4a4a4a;
  --vr-text-light:  #6b6b6b;
  --vr-border:      #ddd5c8;
  --vr-shadow:      rgba(26, 45, 74, 0.12);
  --vr-shadow-lg:   rgba(26, 45, 74, 0.18);

  --vr-font-display: 'Playfair Display', Georgia, serif;
  --vr-font-body:    'Source Sans 3', 'Helvetica Neue', sans-serif;

  --vr-section-py:  5rem;
  --vr-radius:      12px;
  --vr-radius-lg:   20px;
  --vr-radius-xl:   32px;

  --vr-transition:       0.3s ease;
  --vr-transition-slow:  0.6s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  font-family: var(--vr-font-body);
  color: var(--vr-text);
  background: var(--vr-warm-white);
  line-height: 1.75;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--vr-blue); text-decoration: none; transition: color var(--vr-transition); }
a:hover { color: var(--vr-navy); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--vr-font-display);
  line-height: 1.25;
  color: var(--vr-navy);
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
p  { margin-bottom: 1.2rem; font-size: 1rem; }

.vr-lead {
  font-size: 1.2rem;
  color: var(--vr-text-mid);
  line-height: 1.8;
}

.vr-section-label {
  font-family: var(--vr-font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--vr-sage);
  display: block;
  margin-bottom: 0.75rem;
}

.vr-navbar {
  background: rgba(253, 252, 249, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 0.9rem 0;
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  border-bottom: 1px solid transparent;
  transition: all var(--vr-transition);
}
.vr-navbar.vr-scrolled {
  border-bottom-color: var(--vr-border);
  box-shadow: 0 2px 20px var(--vr-shadow);
  padding: 0.6rem 0;
}

.vr-navbar-brand {
  font-family: var(--vr-font-display);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--vr-navy) !important;
  letter-spacing: -0.02em;
}
.vr-navbar-brand span { color: var(--vr-sage); }

.vr-nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--vr-text) !important;
  padding: 0.4rem 0.9rem !important;
  border-radius: 6px;
  transition: all var(--vr-transition);
  letter-spacing: 0.01em;
}
.vr-nav-link:hover,
.vr-nav-link.active {
  color: var(--vr-blue) !important;
  background: rgba(59,111,160,0.07);
}

.vr-nav-cta {
  background: var(--vr-navy);
  color: var(--vr-warm-white) !important;
  padding: 0.45rem 1.2rem !important;
  border-radius: 50px;
}
.vr-nav-cta:hover {
  background: var(--vr-blue) !important;
  color: #fff !important;
}

.vr-hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--vr-navy) 0%, var(--vr-navy-light) 40%, #1e4068 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.vr-hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, white 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, white 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, white 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 100px 100px;
}

.vr-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}
.vr-hero-shape-1 {
  width: 600px; height: 600px;
  background: var(--vr-blue);
  top: -200px; right: -100px;
}
.vr-hero-shape-2 {
  width: 400px; height: 400px;
  background: var(--vr-sage);
  bottom: -100px; left: 10%;
}

.vr-hero-content { position: relative; z-index: 2; }

.vr-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(122,158,126,0.25);
  border: 1px solid rgba(122,158,126,0.4);
  color: var(--vr-sage-pale);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.vr-hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.vr-hero h1 em {
  font-style: italic;
  color: var(--vr-sky);
}

.vr-hero-desc {
  color: rgba(255,255,255,0.82);
  font-size: 1.15rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
  line-height: 1.8;
}

.vr-hero-image-wrap {
  position: relative;
  border-radius: var(--vr-radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
}
.vr-hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--vr-radius-xl);
  border: 2px solid rgba(255,255,255,0.15);
  pointer-events: none;
}
.vr-hero-image-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.vr-hero-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--vr-warm-white);
  border-radius: var(--vr-radius);
  padding: 1rem 1.4rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 200px;
}
.vr-hero-badge .vr-badge-icon {
  width: 44px; height: 44px;
  background: var(--vr-sage-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--vr-sage);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.vr-hero-badge .vr-badge-num {
  font-family: var(--vr-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vr-navy);
  line-height: 1;
}
.vr-hero-badge .vr-badge-label {
  font-size: 0.78rem;
  color: var(--vr-text-light);
  line-height: 1.3;
}

.vr-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--vr-font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all var(--vr-transition);
  text-decoration: none;
  line-height: 1;
}
.vr-btn-primary {
  background: var(--vr-blue);
  color: #fff;
  box-shadow: 0 4px 20px rgba(59,111,160,0.35);
}
.vr-btn-primary:hover {
  background: var(--vr-navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26,45,74,0.3);
}
.vr-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.vr-btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #fff;
  transform: translateY(-2px);
}
.vr-btn-sage {
  background: var(--vr-sage);
  color: #fff;
  box-shadow: 0 4px 20px rgba(122,158,126,0.35);
}
.vr-btn-sage:hover {
  background: #5e8562;
  color: #fff;
  transform: translateY(-2px);
}
.vr-btn-light {
  background: var(--vr-warm-white);
  color: var(--vr-navy);
  border: 2px solid var(--vr-border);
}
.vr-btn-light:hover {
  background: var(--vr-cream);
  color: var(--vr-blue);
  transform: translateY(-2px);
}
.vr-btn-lg {
  padding: 1.05rem 2.5rem;
  font-size: 1.05rem;
}
.vr-btn-sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.88rem;
}

.vr-section {
  padding: var(--vr-section-py) 0;
}
.vr-section-alt {
  background: var(--vr-cream);
}
.vr-section-navy {
  background: var(--vr-navy);
  color: #fff;
}
.vr-section-navy h2, .vr-section-navy h3 {
  color: #fff;
}

.vr-section-header {
  margin-bottom: 3.5rem;
}
.vr-section-header.text-center { text-align: center; }

.vr-card {
  background: var(--vr-warm-white);
  border-radius: var(--vr-radius-lg);
  border: 1px solid var(--vr-border);
  padding: 2rem;
  transition: all var(--vr-transition);
}
.vr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--vr-shadow);
  border-color: var(--vr-sky);
}

.vr-service-card {
  background: var(--vr-warm-white);
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  border: 1px solid var(--vr-border);
  transition: all var(--vr-transition-slow);
  height: 100%;
}
.vr-service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px var(--vr-shadow-lg);
}
.vr-service-card-img {
  height: 220px;
  overflow: hidden;
}
.vr-service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.vr-service-card:hover .vr-service-card-img img {
  transform: scale(1.05);
}
.vr-service-card-body {
  padding: 1.8rem;
}
.vr-service-icon {
  width: 52px; height: 52px;
  background: var(--vr-cream);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--vr-blue);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  border: 1px solid var(--vr-border);
}
.vr-service-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
}
.vr-service-card-body p {
  font-size: 0.95rem;
  color: var(--vr-text-mid);
  margin-bottom: 1.4rem;
}

.vr-stats-section {
  background: var(--vr-navy);
  padding: 4rem 0;
}
.vr-stat-item {
  text-align: center;
  padding: 1.5rem;
}
.vr-stat-number {
  font-family: var(--vr-font-display);
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--vr-sky);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.vr-stat-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}

.vr-testimonial-slider {
  position: relative;
  overflow: hidden;
}
.vr-testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.vr-testimonial-item {
  min-width: 100%;
  padding: 0 1rem;
}
.vr-testimonial-card {
  background: var(--vr-warm-white);
  border-radius: var(--vr-radius-xl);
  padding: 2.5rem 3rem;
  border: 1px solid var(--vr-border);
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  box-shadow: 0 8px 40px var(--vr-shadow);
}
.vr-testimonial-quote {
  font-size: 5rem;
  line-height: 0.5;
  color: var(--vr-sage-pale);
  font-family: var(--vr-font-display);
  margin-bottom: 1rem;
  display: block;
}
.vr-testimonial-text {
  font-size: 1.1rem;
  color: var(--vr-text-mid);
  font-style: italic;
  line-height: 1.9;
  margin-bottom: 1.8rem;
}
.vr-testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.vr-testimonial-author img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--vr-sage-pale);
}
.vr-testimonial-name {
  font-weight: 700;
  color: var(--vr-navy);
  font-size: 1rem;
}
.vr-testimonial-role {
  font-size: 0.85rem;
  color: var(--vr-text-light);
}
.vr-testimonial-stars { color: #f4a825; font-size: 0.9rem; }

.vr-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.vr-slider-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--vr-warm-white);
  border: 2px solid var(--vr-border);
  color: var(--vr-navy);
  font-size: 1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--vr-transition);
}
.vr-slider-btn:hover {
  background: var(--vr-navy);
  border-color: var(--vr-navy);
  color: #fff;
}
.vr-slider-dots {
  display: flex;
  gap: 0.5rem;
}
.vr-slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--vr-border);
  border: none;
  cursor: pointer;
  transition: all var(--vr-transition);
}
.vr-slider-dot.active {
  background: var(--vr-blue);
  width: 24px;
  border-radius: 4px;
}

.vr-team-card {
  text-align: center;
  position: relative;
}
.vr-team-img-wrap {
  width: 160px; height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.4rem;
  border: 4px solid var(--vr-sage-pale);
  transition: all var(--vr-transition);
  position: relative;
}
.vr-team-card:hover .vr-team-img-wrap {
  border-color: var(--vr-sage);
  transform: scale(1.04);
}
.vr-team-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
}
.vr-team-name {
  font-family: var(--vr-font-display);
  font-size: 1.2rem;
  color: var(--vr-navy);
  margin-bottom: 0.2rem;
}
.vr-team-role {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vr-sage);
  margin-bottom: 0.8rem;
}
.vr-team-bio {
  font-size: 0.92rem;
  color: var(--vr-text-mid);
  line-height: 1.7;
  max-width: 260px;
  margin: 0 auto;
}

.vr-accordion-item {
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius);
  margin-bottom: 0.8rem;
  overflow: hidden;
  transition: box-shadow var(--vr-transition);
}
.vr-accordion-item.open {
  box-shadow: 0 4px 20px var(--vr-shadow);
}
.vr-accordion-btn {
  width: 100%;
  background: var(--vr-warm-white);
  border: none;
  padding: 1.3rem 1.6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--vr-font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--vr-navy);
  text-align: left;
  transition: background var(--vr-transition);
}
.vr-accordion-btn:hover { background: var(--vr-cream); }
.vr-accordion-btn.open { background: var(--vr-cream); }
.vr-accordion-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--vr-cream);
  border: 1px solid var(--vr-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  color: var(--vr-blue);
  transition: all var(--vr-transition);
}
.vr-accordion-btn.open .vr-accordion-icon {
  background: var(--vr-blue);
  color: #fff;
  transform: rotate(45deg);
}
.vr-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.6rem;
  background: var(--vr-cream);
}
.vr-accordion-body.open {
  max-height: 500px;
  padding: 1.2rem 1.6rem 1.5rem;
}
.vr-accordion-body p {
  color: var(--vr-text-mid);
  margin: 0;
  font-size: 0.97rem;
}

.vr-skill-explorer {
  background: var(--vr-navy);
  border-radius: var(--vr-radius-xl);
  padding: 3rem;
  color: #fff;
}
.vr-skill-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
}
.vr-skill-tab {
  padding: 0.6rem 1.4rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vr-transition);
}
.vr-skill-tab:hover,
.vr-skill-tab.active {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
  color: #fff;
}
.vr-skill-panel { display: none; }
.vr-skill-panel.active { display: block; }

.vr-path-switcher {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.vr-path-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 2px solid var(--vr-border);
  background: var(--vr-warm-white);
  color: var(--vr-text-mid);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--vr-transition);
}
.vr-path-btn.active {
  background: var(--vr-blue);
  border-color: var(--vr-blue);
  color: #fff;
}
.vr-path-panel { display: none; }
.vr-path-panel.active { display: block; }

.vr-path-steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.vr-path-step {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--vr-warm-white);
  border: 1px solid var(--vr-border);
  border-radius: var(--vr-radius);
  padding: 1.2rem 1.5rem;
}
.vr-path-step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--vr-navy);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.vr-path-step-title {
  font-weight: 700;
  color: var(--vr-navy);
  font-size: 1rem;
}
.vr-path-step-desc {
  font-size: 0.88rem;
  color: var(--vr-text-mid);
  margin: 0;
}

.vr-quiz-section {
  background: linear-gradient(135deg, var(--vr-cream) 0%, var(--vr-sage-pale) 100%);
  border-radius: var(--vr-radius-xl);
  padding: 3.5rem;
}
.vr-quiz-question {
  display: none;
}
.vr-quiz-question.active { display: block; }
.vr-quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.vr-quiz-option {
  background: var(--vr-warm-white);
  border: 2px solid var(--vr-border);
  border-radius: var(--vr-radius);
  padding: 1rem 1.4rem;
  cursor: pointer;
  font-size: 0.97rem;
  font-weight: 500;
  color: var(--vr-text);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all var(--vr-transition);
  text-align: left;
  width: 100%;
}
.vr-quiz-option:hover,
.vr-quiz-option.selected {
  border-color: var(--vr-blue);
  background: rgba(59,111,160,0.06);
  color: var(--vr-navy);
}
.vr-quiz-option-dot {
  width: 20px; height: 20px;
  border-radius: 50%;
  border: 2px solid var(--vr-border);
  flex-shrink: 0;
  transition: all var(--vr-transition);
}
.vr-quiz-option.selected .vr-quiz-option-dot {
  border-color: var(--vr-blue);
  background: var(--vr-blue);
}
.vr-quiz-progress {
  height: 4px;
  background: var(--vr-border);
  border-radius: 2px;
  margin-bottom: 2rem;
}
.vr-quiz-progress-bar {
  height: 100%;
  background: var(--vr-blue);
  border-radius: 2px;
  transition: width 0.4s ease;
}
.vr-quiz-result { display: none; text-align: center; }
.vr-quiz-result.active { display: block; }

.vr-timeline {
  position: relative;
  padding-left: 2.5rem;
}
.vr-timeline::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--vr-border);
}
.vr-timeline-item {
  position: relative;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
}
.vr-timeline-dot {
  position: absolute;
  left: -2.5rem;
  top: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--vr-blue);
  border: 4px solid var(--vr-warm-white);
  box-shadow: 0 0 0 2px var(--vr-blue);
}
.vr-timeline-week {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--vr-sage);
  margin-bottom: 0.3rem;
}
.vr-timeline-title {
  font-family: var(--vr-font-display);
  font-size: 1.1rem;
  color: var(--vr-navy);
  margin-bottom: 0.4rem;
}
.vr-timeline-desc {
  font-size: 0.92rem;
  color: var(--vr-text-mid);
  line-height: 1.7;
}

.vr-compare-tabs {
  display: flex;
  border-bottom: 2px solid var(--vr-border);
  margin-bottom: 2rem;
  gap: 0;
}
.vr-compare-tab {
  padding: 0.9rem 1.8rem;
  border: none;
  background: transparent;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--vr-text-light);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: all var(--vr-transition);
}
.vr-compare-tab.active {
  color: var(--vr-blue);
  border-bottom-color: var(--vr-blue);
}
.vr-compare-panel { display: none; }
.vr-compare-panel.active { display: block; }

.vr-philosophy {
  background: var(--vr-navy);
  color: #fff;
  padding: var(--vr-section-py) 0;
  position: relative;
  overflow: hidden;
}
.vr-philosophy::before {
  content: '"';
  position: absolute;
  font-family: var(--vr-font-display);
  font-size: 40rem;
  color: rgba(255,255,255,0.02);
  top: -10rem;
  left: -2rem;
  line-height: 1;
  pointer-events: none;
}
.vr-philosophy-quote {
  font-family: var(--vr-font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.6;
  color: rgba(255,255,255,0.92);
  font-style: italic;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 1.5rem;
}
.vr-philosophy-attr {
  text-align: center;
  color: var(--vr-sky);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.vr-disclaimer-box {
  background: var(--vr-cream);
  border: 1px solid var(--vr-sand);
  border-left: 4px solid var(--vr-sage);
  border-radius: var(--vr-radius);
  padding: 1.5rem 2rem;
  font-size: 0.88rem;
  color: var(--vr-text-mid);
  line-height: 1.7;
}
.vr-disclaimer-box strong {
  color: var(--vr-navy);
  display: block;
  margin-bottom: 0.5rem;
}

.vr-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1rem;
}
.vr-image-grid-main {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  height: 360px;
}
.vr-image-grid-main img,
.vr-image-grid-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.vr-image-grid-main:hover img,
.vr-image-grid-item:hover img { transform: scale(1.04); }

.vr-image-grid-item {
  border-radius: var(--vr-radius);
  overflow: hidden;
  height: 170px;
}

.vr-footer {
  background: #0f1c30;
  color: rgba(255,255,255,0.75);
  padding: 5rem 0 2rem;
}
.vr-footer-brand {
  font-family: var(--vr-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
}
.vr-footer-brand span { color: var(--vr-sage); }
.vr-footer-desc {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin-bottom: 1.5rem;
}
.vr-footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.2rem;
}
.vr-footer-links {
  list-style: none;
  padding: 0;
}
.vr-footer-links li { margin-bottom: 0.6rem; }
.vr-footer-links a {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--vr-transition);
}
.vr-footer-links a:hover { color: var(--vr-sky); }

.vr-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
}
.vr-footer-contact-item i {
  color: var(--vr-sky);
  margin-top: 3px;
  flex-shrink: 0;
}
.vr-footer-divider {
  border-color: rgba(255,255,255,0.08);
  margin: 3rem 0 1.5rem;
}
.vr-footer-bottom {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.vr-footer-legal {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.vr-footer-legal a {
  color: rgba(255,255,255,0.4);
  font-size: 0.82rem;
}
.vr-footer-legal a:hover { color: rgba(255,255,255,0.75); }

.vr-cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--vr-navy);
  color: #fff;
  padding: 1.4rem 0;
  z-index: 2000;
  transform: translateY(100%);
  transition: transform 0.5s ease;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
}
.vr-cookie-banner.visible { transform: translateY(0); }
.vr-cookie-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.vr-cookie-text a { color: var(--vr-sky); }

.vr-back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px; height: 48px;
  background: var(--vr-navy);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--vr-transition);
  z-index: 900;
}
.vr-back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}
.vr-back-to-top:hover {
  background: var(--vr-blue);
  transform: translateY(-3px);
}

.vr-a11y-toggle {
  position: fixed;
  bottom: 2rem;
  right: 6rem;
  width: 48px; height: 48px;
  background: var(--vr-sage);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  box-shadow: 0 4px 20px rgba(122,158,126,0.4);
  z-index: 900;
  transition: all var(--vr-transition);
}
.vr-a11y-toggle:hover { background: #5e8562; transform: scale(1.08); }

body.vr-high-contrast {
  --vr-text: #000;
  --vr-text-mid: #111;
  --vr-navy: #000;
  background: #fff;
}
body.vr-high-contrast .vr-card,
body.vr-high-contrast .vr-service-card { border-color: #000; border-width: 2px; }

body.vr-large-text { font-size: 21px; }

.vr-form-group { margin-bottom: 1.5rem; }
.vr-form-label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--vr-navy);
  margin-bottom: 0.5rem;
}
.vr-form-control {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid var(--vr-border);
  border-radius: var(--vr-radius);
  font-family: var(--vr-font-body);
  font-size: 1rem;
  color: var(--vr-text);
  background: var(--vr-warm-white);
  transition: border-color var(--vr-transition), box-shadow var(--vr-transition);
  outline: none;
}
.vr-form-control:focus {
  border-color: var(--vr-blue);
  box-shadow: 0 0 0 4px rgba(59,111,160,0.12);
}
.vr-form-control.error { border-color: #c0392b; }
.vr-form-error {
  font-size: 0.82rem;
  color: #c0392b;
  margin-top: 0.3rem;
  display: none;
}
.vr-form-error.visible { display: block; }
textarea.vr-form-control { resize: vertical; min-height: 130px; }
.vr-captcha-wrap {
  background: var(--vr-cream);
  border: 2px solid var(--vr-border);
  border-radius: var(--vr-radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.vr-captcha-question {
  font-weight: 700;
  color: var(--vr-navy);
}

.vr-article-hero {
  padding: 5rem 0 3rem;
  background: linear-gradient(160deg, var(--vr-cream) 0%, var(--vr-warm-white) 100%);
  margin-top: 72px;
}
.vr-article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.vr-footer-disclaimer {
  background: rgba(99, 102, 241, 0.05);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  line-height: 1.8;
  color: #fff;
  font-size: 0.9rem;
}
.vr-article-tag {
  background: var(--vr-sage-pale);
  color: var(--vr-sage);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  width: max-content;
}
.vr-article-date {
  font-size: 0.88rem;
  color: var(--vr-text-light);
}
.vr-article-body {
  font-size: 1.05rem;
  line-height: 1.9;
  max-width: 760px;
}
.vr-article-body h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.7rem;
}
.vr-article-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}
.vr-article-body ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.vr-article-body ul li { margin-bottom: 0.5rem; }
.vr-article-img {
  border-radius: var(--vr-radius-lg);
  overflow: hidden;
  margin: 2rem 0;
}
.vr-article-img img {
  width: 100%; height: 380px; object-fit: cover;
}
.vr-article-sidebar .vr-card {
  position: sticky;
  top: 100px;
}

.vr-page-hero {
  background: linear-gradient(160deg, var(--vr-navy) 0%, var(--vr-navy-light) 100%);
  padding: 7rem 0 4rem;
  margin-bottom: 0;
  color: #fff;
}
.vr-page-hero h1 { color: #fff; }
.vr-page-hero p { color: rgba(255,255,255,0.75); }
.vr-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.vr-breadcrumb a { color: rgba(255,255,255,0.7); }
.vr-breadcrumb a:hover { color: var(--vr-sky); }
.vr-breadcrumb i { font-size: 0.7rem; }

.vr-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, var(--vr-cream) 0%, var(--vr-warm-white) 100%);
  padding: 5rem 1rem;
}
.vr-thankyou-card {
  background: var(--vr-warm-white);
  border-radius: var(--vr-radius-xl);
  padding: 4rem;
  max-width: 560px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--vr-border);
  box-shadow: 0 20px 80px var(--vr-shadow);
}
.vr-thankyou-icon {
  width: 80px; height: 80px;
  background: var(--vr-sage-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--vr-sage);
  font-size: 2rem;
}

.vr-legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.vr-legal-content h2 {
  font-size: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--vr-border);
}
.vr-legal-content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.vr-legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
.vr-legal-content ul li { margin-bottom: 0.4rem; }

.vr-text-sage   { color: var(--vr-sage) !important; }
.vr-text-sky    { color: var(--vr-sky) !important; }
.vr-text-navy   { color: var(--vr-navy) !important; }
.vr-text-muted  { color: var(--vr-text-light) !important; }
.vr-bg-cream    { background: var(--vr-cream) !important; }
.vr-bg-sage-pale{ background: var(--vr-sage-pale) !important; }
.vr-mt-nav      { margin-top: 72px; }
.vr-divider     { border-color: var(--vr-border); }

@media (max-width: 991px) {
  :root { --vr-section-py: 3.5rem; }
  .vr-hero { min-height: auto; padding: 6rem 0 3rem; }
  .vr-hero-badge { bottom: -10px; left: -10px; }
  .vr-image-grid { grid-template-columns: 1fr 1fr; }
  .vr-image-grid-main { grid-column: 1 / 3; grid-row: 1; height: 260px; }
  .vr-image-grid-item { height: 150px; }
  .vr-skill-explorer { padding: 2rem; }
  .vr-quiz-section { padding: 2rem; }
}

@media (max-width: 767px) {
  html { font-size: 17px; }
  .vr-hero-image-wrap { display: none; }
  .vr-testimonial-card { padding: 1.8rem 1.5rem; }
  .vr-footer-bottom { flex-direction: column; text-align: center; }
  .vr-a11y-toggle { right: 5.5rem; }
  .vr-compare-tabs { flex-direction: column; border-bottom: none; gap: 0.3rem; }
  .vr-compare-tab { border: 1px solid var(--vr-border); border-radius: 8px; }
  .vr-compare-tab.active { background: var(--vr-blue); color: #fff; }
}



.navbar-brand img{
    max-width: 150px;
    width: 150px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

.footer-text{
    margin-top: 20px;
}