/* Overrides to make VLT template work with pagepiling-style transitions */
/* LIGHT THEME - White background with dark text */

/* ============================================
   LIGHT THEME GLOBAL COLOR OVERRIDES
   ============================================ */
body {
  color: #1a1a1a !important;
  background-color: #ffffff !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #1a1a1a !important;
}

p {
  color: rgba(0, 0, 0, 0.75) !important;
}

a {
  color: #1a1a1a;
}

a:hover {
  color: #2c3e6b;
}

:root {
  --accent-color: #2c3e6b;
}

address, blockquote, label {
  color: #1a1a1a !important;
}

.has-white-color {
  color: #1a1a1a !important;
}

/* Header */
.vlt-header {
  color: #1a1a1a !important;
}

.vlt-navbar-inner--left .vlt-logo,
.vlt-navbar-inner--right {
  color: #1a1a1a !important;
}

/* Navigation */
.sf-menu a {
  color: #1a1a1a !important;
}

.sf-menu a:hover,
.sf-menu li.active a {
  color: #2c3e6b !important;
}

/* Menu burger */
.vlt-menu-burger {
  color: #1a1a1a !important;
}

.vlt-menu-burger:hover {
  color: #2c3e6b !important;
}

/* Experience block */
.vlt-experience-block__number {
  color: #1a1a1a !important;
}

/* Display typography */
.vlt-display-1 {
  color: rgba(0, 0, 0, 0.7) !important;
}

.vlt-large-heading {
  color: #1a1a1a !important;
}

/* Testimonials */
.vlt-testimonial__quote,
.vlt-testimonial__text p {
  color: #1a1a1a !important;
}

.vlt-testimonial__name {
  color: #1a1a1a !important;
}

.vlt-testimonial__role,
.vlt-testimonial__function {
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Blog/Post */
.vlt-post--masonry .vlt-post-content {
  color: #1a1a1a !important;
}

.vlt-post--masonry .vlt-post-title a {
  color: #1a1a1a !important;
}

.vlt-post--masonry .vlt-read-more-link:not(:hover) {
  color: #1a1a1a !important;
}

.vlt-post--masonry .vlt-post-date,
.vlt-post--masonry .vlt-post-cat a {
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Buttons - ALL buttons navy blue, grey hover, NO red anywhere */
.vlt-btn--border {
  color: #1a1a1a !important;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.3) !important;
}

.vlt-btn--border:hover {
  color: #fff !important;
  background-color: #2c3e6b !important;
  box-shadow: inset 0 0 0 1px #2c3e6b !important;
}

.vlt-btn--primary,
.vlt-btn--primary-2,
a.vlt-btn--primary,
a.vlt-btn--md,
.vlt-btn {
  background-color: #2c3e6b !important;
  color: #fff !important;
  border-color: #2c3e6b !important;
}

.vlt-btn--primary:hover,
.vlt-btn--primary-2:hover,
a.vlt-btn--primary:hover,
a.vlt-btn--md:hover,
.vlt-btn:hover {
  background-color: #6b7280 !important;
  color: #fff !important;
  border-color: #6b7280 !important;
  box-shadow: none !important;
}

.vlt-btn--primary:active,
.vlt-btn--primary-2:active,
a.vlt-btn--primary:active {
  background-color: #4b5563 !important;
}

/* Forms */
input, textarea, select {
  color: #1a1a1a !important;
  border-color: rgba(0, 0, 0, 0.2) !important;
}

input::placeholder, textarea::placeholder {
  color: rgba(0, 0, 0, 0.4) !important;
}

input:focus, textarea:focus, select:focus {
  border-color: #2c3e6b !important;
}

/* About section */
.vlt-about-description {
  color: rgba(0, 0, 0, 0.75) !important;
}

/* Contact section */
.vlt-contact-info__item i {
  color: rgba(0, 0, 0, 0.5) !important;
}

.vlt-contact-info__item span,
.vlt-contact-info__item a {
  color: #1a1a1a !important;
}

/* Footer */
.vlt-footer--fixed {
  color: rgba(0, 0, 0, 0.6) !important;
}

/* Section titles */
.vlt-section-title {
  color: #1a1a1a !important;
}

/* Timeline */
.vlt-timeline-item__date {
  color: rgba(0, 0, 0, 0.5) !important;
}

.vlt-timeline-item__title {
  color: #1a1a1a !important;
}

.vlt-timeline-item__text {
  color: rgba(0, 0, 0, 0.7) !important;
}

/* Fixed socials sidebar */
.vlt-fixed-socials {
  color: #1a1a1a !important;
}

.vlt-fixed-socials::before,
.vlt-fixed-socials::after {
  background-color: rgba(0, 0, 0, 0.2) !important;
}

.vlt-fixed-socials a,
.vlt-social-icon {
  color: #1a1a1a !important;
}

.vlt-fixed-socials a:hover,
.vlt-social-icon:hover {
  color: #2c3e6b !important;
}

/* Navbar contacts */
.vlt-navbar-contacts a {
  color: #1a1a1a !important;
}

.vlt-navbar-contacts a:hover {
  color: #2c3e6b !important;
}


/* ============================================
   RESPONSIVE HEADING FOR MOBILE
   ============================================ */
.vlt-responsive-heading {
  font-size: clamp(2.5rem, 10vw, 8rem) !important;
  line-height: 1.1 !important;
}

@media (max-width: 767px) {
  .vlt-responsive-heading {
    font-size: 2.5rem !important;
  }
  
  .vlt-display-1 {
    font-size: 0.9rem !important;
  }
  
  .vlt-section .container p {
    font-size: 0.9rem !important;
    line-height: 1.5 !important;
  }
}

/* ============================================
   PAGEPILING STYLE - Sections stacking effect
   ============================================ */
html {
  scroll-behavior: smooth;
}

.vlt-fullpage-slider {
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  perspective: 1000px;
}

.vlt-fullpage-slider .vlt-section {
  height: 100vh;
  min-height: 100vh;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  position: relative;
  overflow: hidden;
  /* Pagepiling stacking effect */
  background-color: #ffffff;
  box-shadow: 0 -20px 50px rgba(0, 0, 0, 0.1);
}

/* Vertical alignment container */
.vlt-fullpage-slider .vlt-section__vertical-align {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 2;
}

.vlt-section__content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ============================================
   KEN BURN BACKGROUND ANIMATION
   ============================================ */
@keyframes kenBurn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.vlt-section__ken-burn-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.vlt-section__ken-burn-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
}

/* Home section hero - less overlay to show the image */
[data-anchor="Home"] .vlt-section__ken-burn-background::after {
  background: linear-gradient(to right, rgba(255,255,255,0.85) 0%, rgba(255,255,255,0.4) 40%, rgba(255,255,255,0) 60%);
}

/* Mobile: add bottom white gradient so text is readable over dark bg */
@media only screen and (max-width: 991px) {
  [data-anchor="Home"] .vlt-section__ken-burn-background::after {
    background:
      linear-gradient(to top, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.75) 35%, rgba(255,255,255,0) 65%);
  }
}

.vlt-section__ken-burn-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: kenBurn 20s ease-in-out infinite alternate;
}

.vlt-section__ken-burn-background img:nth-child(2) {
  display: none;
}

/* Show mobile image on tablets too */
@media only screen and (max-width: 991px) {
  .vlt-section__ken-burn-background.has-mobile-image img:first-child {
    display: none !important;
  }
  .vlt-section__ken-burn-background.has-mobile-image img:nth-child(2) {
    display: block !important;
  }
}

/* ============================================
   PROJECTS BACKGROUND (with active state + Ken Burns)
   ============================================ */
.vlt-section__projects-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.vlt-section__projects-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0.95) 0%, rgba(255,255,255,0.85) 50%, rgba(255,255,255,0.7) 100%);
  z-index: 1;
}

.vlt-section__projects-background img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
  transform: scale(1.05);
  animation: kenBurn 20s ease-in-out infinite alternate;
}

.vlt-section__projects-background img.is-active {
  opacity: 1;
}

/* ============================================
   SCROLL-TRIGGERED ANIMATIONS
   ============================================ */
@keyframes fadeInUpSm {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Show content immediately with animation */
.vlt-animated-block {
  animation-name: fadeInUpSm;
  animation-fill-mode: both;
  animation-duration: 700ms;
}

/* Stagger animations for child elements */
.vlt-animated-block:nth-child(1) { animation-delay: 0.1s; }
.vlt-animated-block:nth-child(2) { animation-delay: 0.2s; }
.vlt-animated-block:nth-child(3) { animation-delay: 0.3s; }
.vlt-animated-block:nth-child(4) { animation-delay: 0.4s; }
.vlt-animated-block:nth-child(5) { animation-delay: 0.5s; }

/* Reset and replay animations when section becomes active */
.vlt-section .vlt-animated-block {
  opacity: 1;
  animation-play-state: running;
}

.vlt-section.is-active .vlt-animated-block {
  opacity: 1;
  animation-play-state: running;
}

/* Mobile Safari/Chrome fix - ensure content is always visible */
@media only screen and (max-width: 1500px) {
  .vlt-section .vlt-animated-block,
  .vlt-animated-block {
    opacity: 1 !important;
    animation: none !important;
    transform: none !important;
  }
  
  .vlt-section__content,
  .vlt-section__vertical-align {
    opacity: 1 !important;
    visibility: visible !important;
  }
}

/* ============================================
   PROGRESS BAR (vertical on right side)
   ============================================ */
.vlt-fullpage-slider-progress-bar {
  position: fixed;
  right: 45px;
  top: 50%;
  transform: translateY(-50%);
  width: 2px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.15);
  z-index: 1000;
}

.vlt-fullpage-slider-progress-bar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2c3e6b;
  transition: height 0.3s ease;
}

@media only screen and (max-width: 991px) {
  .vlt-fullpage-slider-progress-bar {
    right: 20px;
  }
}

/* ============================================
   FIXED FOOTER
   ============================================ */
.vlt-footer--fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 45px;
  pointer-events: none;
}

.vlt-footer--fixed * {
  pointer-events: auto;
}

.vlt-footer-copyright p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
}

.vlt-language-switcher {
  display: flex;
  gap: 15px;
}

.vlt-language-switcher a {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.vlt-language-switcher a:hover,
.vlt-language-switcher a.is-active {
  color: #1a1a1a;
}

@media only screen and (max-width: 767px) {
  .vlt-footer--fixed {
    padding: 15px 20px;
  }
}

/* ============================================
   OFFCANVAS MENU - Complete styles (Light Theme)
   ============================================ */
.vlt-offcanvas-menu {
  position: fixed !important;
  z-index: 9999 !important;
  top: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  max-width: 400px !important;
  padding: 1.875rem !important;
  background-color: #ffffff !important;
  color: #1a1a1a !important;
  display: flex !important;
  flex-direction: column !important;
  transform: translate3d(100%, 0, 0) !important;
  transition: transform 0.4s ease !important;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1) !important;
}

.vlt-offcanvas-menu.is-open {
  transform: translate3d(0, 0, 0) !important;
}

.vlt-offcanvas-menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.vlt-offcanvas-menu__header .vlt-language-switcher a {
  color: rgba(0, 0, 0, 0.5) !important;
}

.vlt-offcanvas-menu__header .vlt-language-switcher a.is-active,
.vlt-offcanvas-menu__header .vlt-language-switcher a:hover {
  color: #1a1a1a !important;
}

.vlt-offcanvas-menu__header .vlt-menu-burger {
  color: #1a1a1a !important;
}

.vlt-offcanvas-menu__header .vlt-menu-burger:hover {
  color: #2c3e6b !important;
}

.vlt-offcanvas-menu__navigation {
  flex: 1;
}

.vlt-offcanvas-menu__navigation .sf-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vlt-offcanvas-menu__navigation .sf-menu li {
  margin-bottom: 1rem;
}

.vlt-offcanvas-menu__navigation .sf-menu a {
  font-size: 1.5rem;
  color: #1a1a1a !important;
  text-decoration: none;
  transition: color 0.3s ease;
}

.vlt-offcanvas-menu__navigation .sf-menu a:hover {
  color: #2c3e6b !important;
}

.vlt-offcanvas-menu__footer {
  margin-top: auto;
}

.vlt-offcanvas-menu__socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.vlt-offcanvas-menu__socials a {
  color: #1a1a1a !important;
}

.vlt-offcanvas-menu__socials a:hover {
  color: #2c3e6b !important;
}

.vlt-offcanvas-menu__copyright p {
  font-size: 0.875rem;
  color: rgba(0, 0, 0, 0.6) !important;
  margin: 0;
}

/* Site overlay */
.vlt-site-overlay {
  position: fixed !important;
  z-index: 9998 !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background-color: rgba(0, 0, 0, 0.7) !important;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
  cursor: pointer;
}

.vlt-site-overlay.is-visible {
  opacity: 1 !important;
  visibility: visible !important;
}

/* ============================================
   NAVBAR OVERLAP FIX
   ============================================ */
.vlt-navbar-inner--left,
.vlt-navbar-inner--right {
  position: relative;
  z-index: 2;
}

.vlt-navbar-inner--center {
  z-index: 1;
}

/* Fix navigation alignment - push to right */
.vlt-navbar-inner--center .container {
  display: flex !important;
  justify-content: flex-end !important;
  width: 100% !important;
  max-width: none !important;
  padding-right: 200px !important;
}

.vlt-default-menu__navigation {
  text-align: right !important;
}

.vlt-default-menu__navigation .sf-menu {
  justify-content: flex-end !important;
}

/* ============================================
   SLIDER CONTROLS
   ============================================ */
.vlt-slider-controls {
  display: flex !important;
  align-items: center;
  gap: 30px;
  opacity: 1 !important;
  visibility: visible !important;
}

.vlt-swiper-button-prev,
.vlt-swiper-button-next {
  cursor: pointer;
  transition: opacity 0.3s ease;
  color: #1a1a1a;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vlt-swiper-pagination {
  display: flex !important;
  align-items: center;
  gap: 8px;
  opacity: 1 !important;
  visibility: visible !important;
}

.vlt-swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background 0.3s ease;
  display: inline-block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.vlt-swiper-pagination-bullet.is-active {
  background: #2c3e6b;
}

.vlt-swiper-button-prev:hover,
.vlt-swiper-button-next:hover {
  opacity: 0.7;
}

.vlt-swiper-button-prev svg,
.vlt-swiper-button-next svg {
  width: 24px;
  height: 45px;
}

/* ============================================
   VIDEO BUTTON
   ============================================ */
.vlt-video-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.vlt-video-button a:hover {
  background-color: #2c3e6b;
  border-color: #2c3e6b;
}

.vlt-video-button svg {
  width: 12px;
  height: 14px;
  color: #1a1a1a;
}

/* ============================================
   PROGRESS BARS (skills)
   ============================================ */
.vlt-progress-bar {
  margin-bottom: 0;
}

.vlt-progress-bar__title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}

.vlt-progress-bar__title .counter {
  margin-left: auto;
}

.vlt-progress-bar__title .counter::after {
  content: '%';
}

.vlt-progress-bar__bar {
  height: 4px;
  background-color: rgba(0, 0, 0, 0.1);
  position: relative;
}

.vlt-progress-bar__bar span {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background-color: #2c3e6b;
  transition: width 1s ease-out;
}

/* ============================================
   READ MORE LINK
   ============================================ */
.vlt-read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

.vlt-read-more-link:hover {
  color: #2c3e6b;
}

.vlt-read-more-link svg {
  width: 16px;
  height: 8px;
}

/* ============================================
   EXPERIENCE BLOCK
   ============================================ */
.vlt-experience-block {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.vlt-experience-block__number {
  font-size: 8rem;
  line-height: 1;
  font-weight: 600;
}

/* ============================================
   TIMELINE ITEM
   ============================================ */
.vlt-timeline-item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.vlt-timeline-item:last-child {
  border-bottom: none;
}

.vlt-timeline-item__date {
  display: block;
  font-size: 0.875rem;
  opacity: 0.6;
  margin-bottom: 10px;
}

.vlt-timeline-item__title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.vlt-timeline-item__text {
  opacity: 0.7;
  margin-bottom: 0;
}

/* ============================================
   PROJECT TITLE
   ============================================ */
.vlt-project-title {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.vlt-project-excerpt {
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 30px;
}

/* ============================================
   TESTIMONIAL
   ============================================ */
.vlt-testimonial__text {
  margin-bottom: 30px;
}

.vlt-testimonial__text p {
  font-size: 1rem;
  line-height: 1.8;
}

.vlt-testimonial__name {
  margin-bottom: 5px;
}

.vlt-testimonial__function {
  opacity: 0.6;
  font-size: 0.875rem;
}

/* ============================================
   FORM MESSAGES
   ============================================ */
.message.success,
.message.danger {
  display: none;
}

/* ============================================
   ACTIVE NAVIGATION
   ============================================ */
.sf-menu li.active a,
.sf-menu li a:hover {
  color: #2c3e6b !important;
}

/* ============================================
   UNIFIED PAGINATION STYLES
   ============================================ */
.vlt-unified-pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.vlt-pagination-arrow {
  cursor: pointer;
  background: rgba(0,0,0,0.08);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a1a1a;
  transition: background 0.3s ease;
}

.vlt-pagination-arrow:hover {
  background: rgba(0,0,0,0.15);
}

.vlt-pagination-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

/* ============================================
   EXPERIENCE LIST STYLES
   ============================================ */
.vlt-experience-list {
  max-height: calc(100vh - 320px);
  overflow-y: auto;
}

.vlt-experience-item {
  display: grid;
  grid-template-columns: 60px 1fr 2fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.vlt-experience-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.vlt-experience-logo {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vlt-experience-logo img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  filter: grayscale(100%);
}

.vlt-experience-logo-placeholder {
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.05);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-color, #2c3e6b);
}

.vlt-experience-date {
  font-size: 0.875rem;
  color: rgba(0,0,0,0.5);
  display: block;
  margin-bottom: 0.5rem;
}

.vlt-experience-company {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #1a1a1a;
}

.vlt-experience-role {
  color: var(--accent-color, #2c3e6b);
  font-size: 0.9rem;
}

.vlt-experience-location {
  display: block;
  font-size: 0.8rem;
  color: rgba(0,0,0,0.4);
  margin-top: 0.25rem;
}

.vlt-experience-desc p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0,0,0,0.7);
  margin-bottom: 1rem;
}

.vlt-experience-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.vlt-experience-skill {
  font-size: 0.75rem;
  padding: 0.25rem 0.75rem;
  background: rgba(0,0,0,0.06);
  border-radius: 20px;
  color: rgba(0,0,0,0.7);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media only screen and (max-width: 991px) {
  .vlt-project-title {
    font-size: 2.5rem;
  }
  
  .vlt-experience-block__number {
    font-size: 5rem;
  }
  
  .vlt-experience-list {
    max-height: none;
    overflow-y: visible;
  }
  
  .vlt-experience-item {
    grid-template-columns: 50px 1fr;
    gap: 1rem;
  }
  
  .vlt-experience-desc {
    grid-column: 1 / -1;
  }
  
  .vlt-experience-logo,
  .vlt-experience-logo img,
  .vlt-experience-logo-placeholder {
    width: 50px;
    height: 50px;
  }
}

/* Force hamburger menu visibility below 1500px */
@media only screen and (max-width: 1499px) {
  .vlt-menu-burger.js-offcanvas-menu-open {
    display: block !important;
  }
  
  /* Hide desktop navigation */
  .vlt-default-menu__navigation {
    display: none !important;
  }
}

/* Disable scroll-snap for all screens where desktop menu is hidden */
@media only screen and (max-width: 1500px) {
  .vlt-fullpage-slider {
    scroll-snap-type: none !important;
    overflow-y: auto !important;
    height: auto !important;
  }
  
  .vlt-fullpage-slider .vlt-section {
    height: auto !important;
    min-height: 100vh !important;
    scroll-snap-align: unset !important;
    scroll-snap-stop: unset !important;
    overflow: visible !important;
  }
  
  html, body {
    overflow-y: auto !important;
    overflow-x: hidden !important;
  }
}

/* Additional mobile-specific fixes */
@media only screen and (max-width: 767px) {
  html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
  }
  
  .vlt-fullpage-slider {
    height: auto !important;
    overflow: visible !important;
  }
  
  .vlt-fullpage-slider .vlt-section {
    height: auto !important;
    min-height: auto !important;
  }
  
  .vlt-project-title {
    font-size: 2rem;
  }
  
  .vlt-experience-block__number {
    font-size: 4rem;
  }
  
  .vlt-section__content {
    padding: 80px 15px 40px !important;
  }
  
  /* Mobile Safari/Chrome - force visibility */
  .vlt-section,
  .vlt-section__vertical-align,
  .vlt-section__content,
  .vlt-animated-block,
  .container,
  .row,
  [class*="col-"] {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  
  /* Ensure background images are visible */
  .vlt-section__ken-burn-background,
  .vlt-section__ken-burn-background img {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  /* Mobile pagination visibility */
  .vlt-slider-controls,
  .vlt-slider-controls--style-2 {
    display: flex !important;
    align-items: center;
    gap: 1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 1.5rem;
  }
  
  .vlt-swiper-button-prev,
  .vlt-swiper-button-next {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    visibility: visible !important;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    padding: 10px;
  }
  
  .vlt-swiper-button-prev svg,
  .vlt-swiper-button-next svg {
    width: 16px !important;
    height: 30px !important;
  }
  
  .vlt-swiper-pagination,
  .vlt-swiper-pagination-bullet {
    display: inline-flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .vlt-swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    min-width: 12px !important;
    min-height: 12px !important;
  }
  
  /* Experience item mobile layout */
  .vlt-experience-item {
    grid-template-columns: 1fr !important;
    gap: 0.75rem !important;
  }
  
  .vlt-experience-logo {
    margin-bottom: 0.5rem;
  }
  
  .vlt-experience-desc {
    grid-column: 1 !important;
  }
  
  .vlt-experience-skills {
    gap: 0.35rem;
  }
  
  .vlt-experience-skill {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }
  
  /* Unified pagination mobile */
  .vlt-unified-pagination {
    gap: 0.75rem !important;
    padding: 0.75rem 0 !important;
  }
  
  .vlt-pagination-arrow {
    width: 36px !important;
    height: 36px !important;
  }
  
  .vlt-pagination-dot {
    width: 8px !important;
    height: 8px !important;
  }
}

/* ============================================
   BLOG POST - Content below image (no overlay)
   ============================================ */
.vlt-post--masonry {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
}

.vlt-post--masonry .vlt-post-media {
  position: relative !important;
  height: 200px !important;
  overflow: hidden !important;
}

.vlt-post--masonry .vlt-post-media::before {
  display: none !important;
}

.vlt-post--masonry .vlt-post-content {
  position: relative !important;
  opacity: 1 !important;
  padding: 1.5rem !important;
  background: rgba(255, 255, 255, 0.95) !important;
  flex: 1 !important;
  display: flex !important;
  flex-direction: column !important;
}

.vlt-post--masonry .vlt-post-border {
  display: none !important;
}

/* ============================================
   EXPERIENCE BLOCK - Fix line overlap
   ============================================ */
.vlt-experience-block__title {
  position: relative !important;
  z-index: 2 !important;
  padding-left: 20px !important;
}

.vlt-experience-block__title::before,
.vlt-experience-block__title::after {
  display: none !important;
}

/* ============================================
   GLOBAL RED → NAVY BLUE OVERRIDE
   Catches any remaining #cf000f from vlt-main.min.css
   ============================================ */
.has-accent-color {
  color: #2c3e6b !important;
}

::selection {
  background-color: #2c3e6b !important;
}

::-moz-selection {
  background-color: #2c3e6b !important;
}

.vlt-default-menu__navigation .sf-menu > li.active > a,
.vlt-default-menu__navigation .sf-menu > li:hover > a {
  color: #2c3e6b !important;
}

.vlt-offcanvas-menu__navigation .sf-menu > li.active > a,
.vlt-offcanvas-menu__navigation .sf-menu > li:hover > a {
  color: #2c3e6b !important;
}

.vlt-comment-item__inner .vlt-comment-reply:hover {
  background-color: #2c3e6b !important;
  box-shadow: inset 0 0 0 1px #2c3e6b !important;
}

::-webkit-scrollbar-thumb {
  background-color: #2c3e6b !important;
}

.vlt-language-switcher a.is-active {
  color: #2c3e6b !important;
}

.double-bounce-one,
.double-bounce-two {
  background-color: #2c3e6b !important;
}

.fancybox-loading {
  border-top-color: #2c3e6b !important;
}

.vlt-progress-bar__inner {
  background-color: #2c3e6b !important;
}

.vlt-pullquote__icon {
  color: #2c3e6b !important;
}

.vlt-slider-controls .vlt-swiper-pagination .swiper-pagination-bullet-active {
  background-color: #2c3e6b !important;
}

.vlt-slider-controls--style-1 .vlt-swiper-button-prev:hover,
.vlt-slider-controls--style-1 .vlt-swiper-button-next:hover {
  background-color: #2c3e6b !important;
  box-shadow: inset 0 0 0 1px #2c3e6b !important;
}

.message.danger {
  color: #2c3e6b !important;
}
