/* VIKROH overrides on Bexon layout — brand colors from logo */
:root {
  --vikroh-font: "Plus Jakarta Sans", sans-serif;
  --vikroh-quote-font: "Libre Baskerville", Georgia, serif;

  /* Sampled from logo-header.png */
  --vikroh-navy: #082c53;
  --vikroh-navy-dark: #032a52;
  --vikroh-navy-light: #0f4a82;
  --vikroh-green: #3ea153;
  --vikroh-green-dark: #2b9841;
  --vikroh-green-light: #5cb96c;
  --vikroh-green-soft: #d9f0de;
  --vikroh-surface: #f4f8fc;
  --vikroh-surface-2: #e8f1f9;
  --vikroh-text: #3d5568;
  --vikroh-text-muted: #6b8296;

  /* Remap Bexon theme tokens to VIKROH palette */
  --tj-color-heading-primary: var(--vikroh-navy);
  --tj-color-theme-primary: var(--vikroh-green);
  --tj-color-theme-bg: var(--vikroh-surface-2);
  --tj-color-theme-bg-2: #dbe8f4;
  --tj-color-theme-bg-3: var(--vikroh-navy);
  --tj-color-theme-dark: var(--vikroh-navy);
  --tj-color-theme-dark-2: #0a355f;
  --tj-color-theme-dark-3: #1a4d75;
  --tj-color-theme-dark-4: #5c7a94;
  --tj-color-theme-dark-5: #6b8296;
  --tj-color-text-body: var(--vikroh-text);
  --tj-color-text-body-2: #9aafc0;
  --tj-color-text-body-3: #6b8296;
  --tj-color-text-body-4: var(--vikroh-navy);
  --tj-color-grey-1: var(--vikroh-surface);
  --tj-color-grey-2: #9aafc0;
  --tj-color-border-1: #c5d4e3;
  --tj-color-border-2: #1a4d75;
  --tj-color-border-5: rgba(62, 161, 83, 0.2);
}

body {
  font-family: var(--vikroh-font);
  color: var(--vikroh-text);
  background-color: var(--vikroh-surface);
}

::selection {
  background: var(--vikroh-green);
  color: #fff;
}

a {
  color: var(--vikroh-navy-light);
}

a:hover {
  color: var(--vikroh-green-dark);
}

.tj-primary-btn {
  background-color: var(--vikroh-green);
}

.tj-primary-btn:hover {
  background-color: var(--vikroh-green-dark);
}

.tj-primary-btn .btn-icon {
  background-color: var(--vikroh-navy);
}

.tj-primary-btn:hover .btn-icon {
  background-color: var(--vikroh-navy-dark);
}

#tj-back-to-top {
  background-color: var(--vikroh-navy);
}

#tj-back-to-top-percentage {
  color: var(--vikroh-green);
}

.tj-preloader .tj-preloader-ball {
  background-color: var(--vikroh-green);
}

.tj-preloader .tj-preloader-text {
  color: var(--vikroh-navy);
}

.sec-heading .sec-title span,
.title-highlight {
  color: var(--vikroh-green);
}

.sec-heading .sub-title {
  color: var(--vikroh-navy);
  border-color: rgba(8, 44, 83, 0.18);
}

.sec-heading .sub-title i {
  color: var(--vikroh-green);
}

.tj-footer-section.footer-2,
.tj-footer-section.h5-footer {
  background-color: var(--vikroh-navy);
}

.tj-footer-section.footer-2 .footer-col-1::before {
  background: var(--vikroh-green);
}

.header-area.header-2,
.header-area.header-2.header-absolute,
.header-area.header-2.sticky,
.header-area.header-duplicate.sticky {
  background-color: #fff;
}

.header-area.header-2.header-absolute .header-wrapper,
.header-area.header-5.header-absolute .header-wrapper {
  background-color: #fff;
  backdrop-filter: none;
  box-shadow: 0 2px 18px rgba(8, 44, 83, 0.08);
  border: 1px solid rgba(8, 44, 83, 0.06);
}

.header-area.header-2 .mainmenu > ul > li > a,
.header-area.header-duplicate .mainmenu > ul > li > a,
.header-2.header-absolute .mainmenu > ul > li > a {
  color: var(--vikroh-navy);
}

.header-area.header-2 .mainmenu > ul > li > a:hover,
.header-area.header-duplicate .mainmenu > ul > li > a:hover,
.header-area.header-2 .mainmenu > ul > li.current-menu-item > a,
.header-area.header-duplicate .mainmenu > ul > li.current-menu-item > a,
.header-area.header-2 .mainmenu > ul > li.current-menu-ancestor > a,
.header-area.header-duplicate .mainmenu > ul > li.current-menu-ancestor > a,
.header-2.header-absolute .mainmenu > ul > li:hover > a,
.header-2.header-absolute .mainmenu > ul > li.current-menu-ancestor > a {
  color: var(--vikroh-green);
}

.header-area.header-2 .mainmenu > ul > li.has-dropdown > a::after,
.header-area.header-duplicate .mainmenu > ul > li.has-dropdown > a::after,
.header-2.header-absolute .mainmenu > ul > li.has-dropdown > a::after {
  color: currentColor;
}

.header-area.header-2 .menu_bar span,
.header-area.header-duplicate .menu_bar span,
.header-2.header-absolute .menu_bar span {
  background-color: var(--vikroh-navy);
}

/* Homepage: hide header until scroll or click */
.home-page:not(.vikroh-header-visible) .header-area {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transform: translateY(-110%);
}

.home-page .header-area {
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.home-page.vikroh-header-visible .header-area.header-absolute {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0);
}

.home-page.vikroh-header-visible.vikroh-header-fixed .header-area.header-absolute {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.home-page.vikroh-header-visible .header-area.header-duplicate.sticky {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translateY(0);
  display: block;
}

.tj-marquee-section {
  background-color: var(--vikroh-navy);
}

.marquee-item .marquee-text {
  color: var(--vikroh-green-light);
}

.h5-strategy-item:hover .h5-strategy-icon,
.service-item .service-icon {
  color: var(--vikroh-green);
}

.inner-page .vikroh-page h2 {
  color: var(--vikroh-navy);
}

.inner-page .focus-lines {
  color: var(--vikroh-green-dark);
}

.swiper-pagination-bullet-active {
  background: var(--vikroh-green) !important;
}

.odometer.odometer-auto-theme,
.odometer.odometer-theme-default {
  color: var(--vikroh-green);
}

.inner-page .tj-page-header {
  background-color: var(--vikroh-navy);
  background-blend-mode: multiply;
}

.inner-page .page-header-overlay {
  opacity: 0.55;
  mix-blend-mode: multiply;
}

.site-logo {
  max-height: 58px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}

.header-area.header-5 .site_logo .logo {
  display: inline-flex;
  align-items: center;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.header-area.header-5 .site_logo .site-logo {
  max-height: 46px;
  filter: none;
}

.header-area.header-sticky .site_logo .site-logo,
.header-area.header-duplicate .site_logo .site-logo {
  max-height: 52px;
}

.footer-widget .site-logo,
.hamburger_logo .site-logo {
  max-height: 50px;
}

.tj-footer-section .footer-widget.footer-col-1 .footer-logo .site-logo {
  max-height: 58px;
  max-width: 240px;
}

.gadget-img,
.page-visual-card img,
.h5-strategy-avatar img,
.h5-strategy-chart img,
.project-img img,
.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #f8fafc;
}

.h5-strategy-avatar,
.h5-strategy-chart {
  overflow: hidden;
  border-radius: 12px;
  background: #f8fafc;
}

.page-visual-card img {
  min-height: 220px;
  object-fit: contain;
  padding: 12px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  max-width: none;
  position: relative;
  z-index: 1;
}

.footer-logo .site-logo,
.footer-widget .footer-logo img {
  display: block;
  max-height: 58px;
  width: auto;
  max-width: 240px;
  height: auto;
  opacity: 1;
  filter: none;
}

.home-page .top-space-15 {
  display: none;
}

.vikroh-video-hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: block;
  color: #fff;
}

.vikroh-video-hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.vikroh-video-hero__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
}

.vikroh-video-hero__gif-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.vikroh-video-hero__gif {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
}

.vikroh-video-hero__gif-0 {
  animation: vikrohGifA 12s ease-in-out infinite;
}

.vikroh-video-hero__gif-1 {
  animation: vikrohGifB 12s ease-in-out infinite;
}

.vikroh-video-hero__youtube {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.vikroh-video-hero__youtube iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-width: 177.78vh;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  border: 0;
}

@keyframes vikrohGifA {
  0%, 42% { opacity: 1; }
  50%, 100% { opacity: 0; }
}

@keyframes vikrohGifB {
  0%, 42% { opacity: 0; }
  50%, 92% { opacity: 1; }
  100% { opacity: 0; }
}

.vikroh-video-hero__overlay {
  display: none;
}

.vikroh-video-hero__content,
.vikroh-video-hero__scroll {
  display: none !important;
}

.vikroh-video-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.vikroh-video-hero__title {
  max-width: 760px;
  font-family: var(--vikroh-font);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.15;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: #fff;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.65);
}

.vikroh-video-hero__desc {
  max-width: 620px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: #fff;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.75rem;
}

.vikroh-video-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.vikroh-video-hero__stat {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  padding: 14px 18px;
  border-radius: 14px;
  background: rgba(8, 44, 83, 0.35);
  border: 1px solid rgba(92, 185, 108, 0.35);
  color: #fff;
  backdrop-filter: blur(8px);
}

.vikroh-video-hero__stat-value,
.vikroh-video-hero__stat .odometer,
.vikroh-video-hero__stat .count-plus {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
}

.vikroh-video-hero__stat small {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
}

.vikroh-video-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.55);
}

.hamburger-infos .contact-link,
.footer-contact-info a {
  color: inherit;
  text-decoration: none;
}

.hamburger-infos .contact-link:hover,
.footer-contact-info a:hover {
  color: var(--vikroh-green-light);
}

.vikroh-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(8, 44, 83, 0.12);
  box-shadow: 0 12px 30px rgba(8, 44, 83, 0.08);
  background: #fff;
}

.vikroh-map-title {
  margin: 0;
  padding: 18px 20px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--vikroh-navy);
  background: var(--vikroh-surface-2);
  border-bottom: 1px solid rgba(8, 44, 83, 0.08);
}

.vikroh-map-embed {
  display: block;
  width: 100%;
  min-height: 320px;
}

.inner-page .footer-contact-info .contact-item a {
  color: var(--vikroh-navy);
  font-weight: 500;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .vikroh-video-hero__content {
    padding: 120px 20px 96px;
  }

  .vikroh-video-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

.home-page .h5-banner-content .banner-title {
  font-family: var(--vikroh-font);
  font-size: clamp(1.65rem, 2.8vw, 2.45rem);
  line-height: 1.28;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.home-page .h5-banner-content .solution-box .desc {
  font-family: var(--vikroh-font);
  font-size: 0.98rem;
  line-height: 1.65;
}

.home-page .hero-counter .count-plus {
  font-family: var(--vikroh-font);
  font-weight: 700;
}

.h5-testimonial .testimonial-item .desc p {
  font-family: var(--vikroh-quote-font);
  font-size: 1.2rem;
  line-height: 1.9;
  font-style: italic;
  letter-spacing: 0.01em;
  color: rgba(8, 44, 83, 0.88);
}

.h5-testimonial .testimonial-author .title {
  font-family: var(--vikroh-font);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.h5-testimonial .testimonial-author .designation {
  font-family: var(--vikroh-font);
  font-size: 0.9rem;
  opacity: 0.75;
}

.h5-testimonial .testimonial-item {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(6px);
}

.inner-page #smooth-wrapper,
.inner-page #smooth-content,
.home-page #smooth-wrapper,
.home-page #smooth-content {
  min-height: 60vh;
}

.inner-page .space-for-header,
.home-page .top-space-15 {
  height: 0;
}

.inner-page .tj-page-header,
.inner-page .tj-page-header.section-gap-x {
  position: relative;
  padding-top: 150px;
  padding-bottom: 62px;
  background-size: cover;
  background-position: center;
  color: #fff;
}

.inner-page .tj-page-title {
  font-family: var(--vikroh-font);
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.inner-page .tj-page-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--vikroh-font);
}

.inner-page .tj-page-link a,
.inner-page .tj-page-link span {
  color: rgba(255, 255, 255, 0.92);
}

.inner-page .page-header-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  pointer-events: none;
}

.inner-page .tj-inner-content {
  padding-top: 70px;
  padding-bottom: 90px;
}

.inner-page .vikroh-page .lead {
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
  line-height: 1.75;
}

.inner-page .vikroh-page h2 {
  margin: 2rem 0 1rem;
  font-size: 1.35rem;
  font-weight: 700;
}

.inner-page .vikroh-page ul,
.inner-page .vikroh-page ol {
  margin: 1rem 0 1.5rem 1.25rem;
}

.inner-page .vikroh-page li + li {
  margin-top: 0.35rem;
}

.inner-page .content-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.page-visual-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 2rem 0 2.5rem;
}

.page-visual-card {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  background: var(--vikroh-surface-2);
  border: 1px solid rgba(8, 44, 83, 0.08);
  box-shadow: 0 12px 30px rgba(8, 44, 83, 0.06);
}

.page-visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.page-visual-card img[src$=".svg"] {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}

.page-visual-card figcaption {
  padding: 14px 16px;
  font-size: 0.92rem;
  color: rgba(8, 44, 83, 0.78);
}

.page-stats-panel {
  margin: 2rem 0;
  padding: 24px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--vikroh-navy) 0%, var(--vikroh-navy-dark) 100%);
  color: #fff;
}

.page-stats-panel h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.stat-meter + .stat-meter {
  margin-top: 0.85rem;
}

.stat-meter span {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 0.35rem;
  opacity: 0.92;
}

.stat-meter .bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}

.stat-meter .bar i {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--vikroh-green), var(--vikroh-green-light));
}

@media (max-width: 768px) {
  .inner-page .content-grid-2,
  .page-visual-row {
    grid-template-columns: 1fr;
  }

  .page-visual-card img {
    height: 190px;
  }
}

.inner-page .focus-lines {
  font-weight: 600;
  margin: 1.5rem 0;
}

.inner-page .contact-details-block .sec-title {
  margin: 0.75rem 0 1rem;
}

.inner-page .contact-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 600;
}

.inner-page .contact-form input,
.inner-page .contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 8px;
  padding: 12px 14px;
  background: #fff;
}

.inner-page .contact-form textarea {
  resize: vertical;
}

.inner-page .contact-card {
  padding: 24px;
  border-radius: 12px;
  background: rgba(62, 161, 83, 0.1);
}

.inner-page .contact-form input:focus,
.inner-page .contact-form textarea:focus {
  border-color: var(--vikroh-green);
  outline: none;
  box-shadow: 0 0 0 3px rgba(62, 161, 83, 0.15);
}

.inner-page .contact-card-error {
  background: #fde8e8;
}

.inner-page .footer-contact-info .contact-item + .contact-item {
  margin-top: 0.5rem;
}

.header-area .site_logo img {
  max-height: 58px;
  width: auto;
}
