/*
 * TURKODA Landing Page CSS
 * Based on TemplateMo 590 Topic Listing
 * Adapted with TURKODA brand colors: #0f3047 (navy) | #d62828 (red)
 */

:root {
  --white-color:                  #ffffff;
  --primary-color:                #0f3047;
  --secondary-color:              #d62828;
  --section-bg-color:             #f8f9fa;
  --custom-btn-bg-color:          #d62828;
  --custom-btn-bg-hover-color:    #0f3047;
  --dark-color:                   #111827;
  --p-color:                      #6b7280;
  --border-color:                 rgba(214, 40, 40, 0.35);
  --link-hover-color:             #d62828;

  --body-font-family:             'Readex Pro', sans-serif;
  --title-font-family:            'Readex Pro', sans-serif;

  --h1-font-size:                 58px;
  --h2-font-size:                 46px;
  --h3-font-size:                 32px;
  --h4-font-size:                 28px;
  --h5-font-size:                 24px;
  --h6-font-size:                 22px;
  --p-font-size:                  18px;
  --menu-font-size:               14px;
  --btn-font-size:                16px;
  --copyright-font-size:          15px;

  --border-radius-large:          100px;
  --border-radius-medium:         20px;
  --border-radius-small:          10px;

  --font-weight-normal:           400;
  --font-weight-medium:           500;
  --font-weight-semibold:         600;
  --font-weight-bold:             700;
}

/* ---- BASE ---- */
html {
  overflow-x: hidden;
  max-width: 100%;
}
body {
  background-color: var(--white-color);
  font-family: var(--body-font-family);
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--title-font-family);
  font-weight: var(--font-weight-semibold);
}
h1 { font-size: var(--h1-font-size); font-weight: var(--font-weight-bold); }
h2 { font-size: var(--h2-font-size); font-weight: var(--font-weight-bold); }
h3 { font-size: var(--h3-font-size); }
h4 { font-size: var(--h4-font-size); }
h5 { font-size: var(--h5-font-size); }
h6 { color: var(--primary-color); font-size: var(--h6-font-size); }

p {
  color: var(--p-color);
  font-size: var(--p-font-size);
  font-weight: var(--font-weight-normal);
}
ul li { color: var(--p-color); font-size: var(--p-font-size); }

a, button { touch-action: manipulation; transition: all 0.3s; }
a { display: inline-block; color: var(--primary-color); text-decoration: none; }
a:hover { color: var(--link-hover-color); }
b, strong { font-weight: var(--font-weight-bold); }

/* ---- SECTION ---- */
.section-padding { padding-top: 100px; padding-bottom: 100px; }
.section-bg { background-color: var(--section-bg-color); }

.section-overlay {
  background-image: linear-gradient(15deg, #0f3047 0%, #d62828 100%);
  position: absolute;
  top: 0; left: 0;
  pointer-events: none;
  width: 100%; height: 100%;
  opacity: 0.87;
}
.section-overlay + .container { position: relative; }

.tab-content { background-color: var(--white-color); border-radius: var(--border-radius-medium); }

.nav-tabs {
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 40px;
  justify-content: center;
}
.nav-tabs .nav-link {
  border-radius: 0;
  border-top: 0; border-right: 0; border-left: 0;
  color: var(--p-color);
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-medium);
  padding: 15px 25px;
  transition: all 0.3s;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-bottom-color: var(--secondary-color);
  color: var(--secondary-color);
}

/* ---- BUTTONS ---- */
.custom-btn {
  background: var(--custom-btn-bg-color);
  border: 2px solid transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  line-height: normal;
  transition: all 0.3s;
  padding: 12px 28px;
}
.custom-btn:hover { background: var(--custom-btn-bg-hover-color); color: var(--white-color); }

.custom-border-btn {
  background: transparent;
  border: 2px solid var(--white-color);
  color: var(--white-color);
}
.custom-border-btn:hover { background: var(--white-color); color: var(--primary-color); }

/* ---- NAVBAR ---- */
.sticky-wrapper { position: absolute; top: 0; right: 0; left: 0; }

.navbar {
  background: rgb(16, 49, 73);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  z-index: 9;
  transition: background-color 0.3s, box-shadow 0.3s;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar.is-sticky {
  background-color: var(--primary-color) !important;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.navbar-brand,
.navbar-brand:hover {
  font-size: var(--h4-font-size);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white-color);
}
.navbar-brand span { font-family: var(--title-font-family); color: var(--white-color); }

.navbar-expand-lg .navbar-nav .nav-link {
  border-radius: var(--border-radius-large);
  margin: 10px;
  padding: 10px;
}
.navbar-nav .nav-link {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-family: var(--title-font-family);
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-medium);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-top: 15px;
  padding-bottom: 15px;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover { color: var(--white-color); }

.navbar-icon {
  background: var(--white-color);
  border-radius: var(--border-radius-large);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  width: 40px; height: 40px;
  color: var(--primary-color);
  transition: all 0.3s ease;
  text-decoration: none;
}
.navbar-icon:hover { background: var(--secondary-color); color: var(--white-color); }

.navbar-toggler {
  border: 0; padding: 0; cursor: pointer; margin: 0;
  width: 30px; height: 35px; outline: none;
}
.navbar-toggler:focus { outline: none; box-shadow: none; }

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon { background: transparent; }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before,
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transition: top 300ms 50ms ease, transform 300ms 350ms ease;
  top: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before { transform: rotate(45deg); }
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after { transform: rotate(-45deg); }

.navbar-toggler .navbar-toggler-icon {
  background: var(--white-color);
  transition: background 10ms 300ms ease;
  display: block; width: 30px; height: 2px; position: relative;
}
.navbar-toggler .navbar-toggler-icon:before,
.navbar-toggler .navbar-toggler-icon:after {
  transition: top 300ms 350ms ease, transform 300ms 50ms ease;
  position: absolute; right: 0; left: 0;
  background: var(--white-color);
  width: 30px; height: 2px; content: '';
}
.navbar-toggler .navbar-toggler-icon::before { top: -8px; }
.navbar-toggler .navbar-toggler-icon::after { top: 8px; }

/* ---- HERO ---- */
.hero-section {
  background-image: linear-gradient(135deg, #0f3047 0%, #1e2d55 50%, #d62828 100%);
  position: relative;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 150px;
}
.hero-section .badge-pill {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  display: inline-block;
  font-size: var(--menu-font-size);
  font-weight: var(--font-weight-semibold);
  padding: 8px 20px;
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-section h1 { color: var(--white-color); }
.hero-section h6 { color: rgba(255,255,255,0.75); font-family: var(--body-font-family); font-size: var(--p-font-size); font-weight: var(--font-weight-normal); }

/* ── Hero Typewriter ── */
@keyframes cursorBlink {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@keyframes heroTitleFadeIn {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes shimmerSlide {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}
#hero-title {
  animation: heroTitleFadeIn 0.6s ease forwards;
  min-height: 1.4em;
}
.hero-cursor {
  color: #d62828;
  font-weight: 300;
  animation: cursorBlink 0.85s step-end infinite;
  margin-inline-start: 2px;
}
.hero-cursor.hidden { display: none; }
.hero-red-word {
  background: linear-gradient(90deg, #d62828 0%, #ff6b6b 40%, #ffffff 55%, #ff6b6b 70%, #d62828 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSlide 2.8s linear infinite;
  display: inline;
}

.hero-cta-group { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin-top: 40px; }
.hero-btn-primary {
  background: var(--secondary-color);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-bold);
  padding: 14px 36px;
  border: 2px solid var(--secondary-color);
  transition: all 0.3s;
  display: inline-block;
}
.hero-btn-primary:hover { background: transparent; color: var(--white-color); }
.hero-btn-secondary {
  background: transparent;
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.3s;
  display: inline-block;
}
.hero-btn-secondary:hover { background: rgba(255,255,255,0.1); color: var(--white-color); }

.hero-stats-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--border-radius-medium);
  padding: 20px;
  text-align: center;
}
.hero-stats-card .stat-num { font-size: 32px; font-weight: var(--font-weight-bold); color: #fca5a5; font-family: var(--title-font-family); }
.hero-stats-card .stat-label { font-size: 13px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ---- FEATURED SECTION ---- */
.featured-section {
  background-color: var(--secondary-color);
  border-radius: 0 0 100px 100px;
  padding-bottom: 100px;
}
.featured-section .row {
  position: relative;
  bottom: 100px;
  margin-bottom: -100px;
}

/* ---- CUSTOM BLOCK (CARDS) ---- */
.custom-block {
  border-radius: var(--border-radius-medium);
  position: relative;
  overflow: hidden;
  padding: 30px;
  transition: all 0.3s ease;
  height: 100%;
  background: var(--white-color);
}
.custom-block:hover {
  box-shadow: 0 20px 60px rgba(15, 48, 71, 0.15) !important;
  transform: translateY(-5px);
}
.custom-block > a { width: 100%; display: block; color: inherit; }
.custom-block > a:hover { color: inherit; }

.custom-block-image {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  margin-top: 30px;
}
.custom-block .rounded-pill {
  border-radius: 8px !important;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 36px; height: 36px;
  font-size: 14px;
  font-weight: var(--font-weight-bold);
  flex-shrink: 0;
}

/* Overlay card */
.custom-block-overlay {
  height: 100%;
  min-height: 350px;
  padding: 0;
  background: transparent;
}
.custom-block-overlay > a { height: 100%; display: flex; flex-direction: column; }
.custom-block-overlay .custom-block-image {
  border-radius: var(--border-radius-medium);
  height: 100%;
  min-height: 350px;
  margin-top: 0;
  width: 100%;
  object-fit: cover;
}
.custom-block-overlay-text {
  position: absolute;
  z-index: 2;
  bottom: 60px;
  left: 0; right: 0;
  padding: 30px;
}
.social-share {
  position: absolute;
  bottom: 0; right: 0; left: 0;
  z-index: 2;
  padding: 20px 30px;
}
.social-share .bi-bookmark { color: var(--white-color); font-size: 22px; }
.social-share .bi-bookmark:hover { color: var(--secondary-color); }

/* Badge colors */
.bg-web    { background-color: #0f3047 !important; }
.bg-app    { background-color: #d62828 !important; }
.bg-design { background-color: #6366f1 !important; }
.bg-mkt    { background-color: #f59e0b !important; }
.bg-cloud  { background-color: #10b981 !important; }
.bg-ai     { background-color: #8b5cf6 !important; }

/* Service icon block */
.service-icon-wrap {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 16px;
  flex-shrink: 0;
}

/* ---- TIMELINE (HOW IT WORKS) ---- */
@keyframes timelineIconPop {
  0%   { transform: scale(0.6); }
  55%  { transform: scale(1.2); }
  78%  { transform: scale(0.93); }
  100% { transform: scale(1); }
}
@keyframes timelinePulseRing {
  0%   { transform: scale(1);   opacity: 0.65; }
  100% { transform: scale(2.4); opacity: 0; }
}
@keyframes timelineLineGlow {
  0%, 100% { box-shadow: 0 0 8px rgba(214,40,40,0.6); }
  50%       { box-shadow: 0 0 20px rgba(214,40,40,1); }
}

.timeline-section {
  background: linear-gradient(135deg, #0f3047 0%, #1e1e3f 60%, #2d0000 100%);
  position: relative;
}
.timeline-container .vertical-scrollable-timeline {
  list-style-type: none;
  position: relative;
  padding-left: 0;
}
.timeline-container .vertical-scrollable-timeline .list-progress {
  width: 8px;
  height: 87%;
  background-color: rgba(255,255,255,0.12);
  position: absolute;
  left: 52px;
  top: 0;
  overflow: hidden;
  border-radius: 4px;
}
html[dir="rtl"] .timeline-container .vertical-scrollable-timeline .list-progress { left: auto; right: 52px; }

.timeline-container .vertical-scrollable-timeline .list-progress .inner {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to bottom, #d62828, #ff6b6b, #d62828);
  background-size: 100% 200%;
  border-radius: 4px;
  box-shadow: 0 0 12px rgba(214,40,40,0.55);
  animation: timelineLineGlow 2s ease-in-out infinite;
  transition: height 0.4s ease;
}

/* -- Li entrance animation --
   Items are VISIBLE by default.
   JS adds "tl-ready" to <html> only after confirming JS is running.
   That triggers the hidden state. Then JS adds .active to reveal items.
   If JS fails for any reason, items stay visible. */
.timeline-container .vertical-scrollable-timeline li {
  position: relative;
  padding: 20px 0 65px 145px;
  /* no opacity/transform here -- always visible unless JS runs */
}
html[dir="rtl"] .timeline-container .vertical-scrollable-timeline li {
  padding: 20px 145px 65px 0;
}

/* Hidden state -- ONLY active when .tl-ready is on <html> */
html.tl-ready .timeline-container .vertical-scrollable-timeline li {
  opacity: 0;
  transform: translateX(-55px);
  transition: opacity 0.65s ease, transform 0.65s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
html[dir="rtl"].tl-ready .timeline-container .vertical-scrollable-timeline li {
  transform: translateX(55px);
}

/* Visible when JS adds .active */
html.tl-ready .timeline-container .vertical-scrollable-timeline li.active {
  opacity: 1;
  transform: translateX(0);
}

.timeline-container .vertical-scrollable-timeline li:last-child { padding-bottom: 0; }
.timeline-container .vertical-scrollable-timeline li p { line-height: 36px; }
.timeline-container .vertical-scrollable-timeline li p:last-child { margin-bottom: 0; }

/* ── Icon holder ── */
.timeline-container .vertical-scrollable-timeline li .icon-holder {
  position: absolute;
  left: 0; top: 0;
  width: 104px; height: 104px;
  display: flex;
  justify-content: center; align-items: center;
  background-color: rgba(214,40,40,0.25);
  border-radius: 50%;
  z-index: 1;
  transition: background-color 0.4s ease;
  overflow: visible;
}
html[dir="rtl"] .timeline-container .vertical-scrollable-timeline li .icon-holder { left: auto; right: 0; }

.timeline-container .vertical-scrollable-timeline li .icon-holder::before {
  content: "";
  width: 80px; height: 80px;
  border: 4px solid rgba(255,255,255,0.2);
  position: absolute;
  background-color: transparent;
  border-radius: 50%;
  z-index: -1;
  transition: border-color 0.4s ease;
}
/* Pulse ring — visible only on active */
.timeline-container .vertical-scrollable-timeline li .icon-holder::after {
  content: "";
  position: absolute;
  width: 104px; height: 104px;
  border-radius: 50%;
  border: 2px solid rgba(214,40,40,0.5);
  opacity: 0;
  pointer-events: none;
}
.timeline-container .vertical-scrollable-timeline li .icon-holder i {
  font-size: 28px;
  color: var(--white-color);
  position: relative;
  z-index: 1;
}
.timeline-container .vertical-scrollable-timeline li::before {
  content: "";
  position: absolute;
  height: 100%; width: 8px;
  background-color: transparent;
  left: 52px; z-index: 0;
}
html[dir="rtl"] .timeline-container .vertical-scrollable-timeline li::before { left: auto; right: 52px; }

/* ── Active state ── */
.timeline-container .vertical-scrollable-timeline li.active .icon-holder {
  background-color: var(--secondary-color);
  animation: timelineIconPop 0.55s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.timeline-container .vertical-scrollable-timeline li.active .icon-holder::before {
  border-color: rgba(255,255,255,0.45);
}
.timeline-container .vertical-scrollable-timeline li.active .icon-holder::after {
  animation: timelinePulseRing 1.8s ease-out infinite;
}

/* ---- FAQ ---- */
.faq-section .accordion-item { border: 0; margin-bottom: 12px; border-radius: var(--border-radius-small) !important; overflow: hidden; box-shadow: 0 2px 15px rgba(0,0,0,0.06); }
.faq-section .accordion-button {
  font-family: var(--title-font-family);
  font-size: var(--btn-font-size);
  font-weight: var(--font-weight-semibold);
  color: var(--dark-color);
  background: var(--white-color);
}
.faq-section .accordion-button:not(.collapsed) {
  color: var(--secondary-color);
  background-color: var(--white-color);
  box-shadow: none;
}
.faq-section .accordion-button:focus { box-shadow: none; }
.faq-section .accordion-body {
  color: var(--p-color);
  font-size: var(--btn-font-size);
  line-height: 34px;
}

/* ---- STATS SECTION ---- */
.stats-section { background: var(--primary-color); }
.stat-item { text-align: center; padding: 40px 20px; }
.stat-item .stat-number { font-size: 48px; font-weight: var(--font-weight-bold); color: var(--white-color); font-family: var(--title-font-family); }
.stat-item .stat-label { color: rgba(255,255,255,0.6); font-size: var(--p-font-size); margin-top: 8px; }
.stat-item .stat-icon { font-size: 40px; color: var(--secondary-color); display: block; margin-bottom: 16px; }

/* ---- CONTACT SECTION ---- */
.contact-section { background-color: var(--section-bg-color); }
.contact-info-block { padding: 30px; background: var(--white-color); border-radius: var(--border-radius-medium); height: 100%; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.contact-info-icon { width: 50px; height: 50px; border-radius: 12px; background: linear-gradient(135deg, var(--primary-color), #1a4a6e); display: flex; align-items: center; justify-content: center; color: var(--white-color); font-size: 22px; margin-bottom: 16px; }

/* ---- SITE FOOTER ---- */
.site-footer {
  background: linear-gradient(135deg, #0f3047 0%, #111827 100%);
  border-bottom: 8px solid var(--secondary-color);
  position: relative;
}
.site-footer::after {
  content: "";
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-style: solid;
  border-width: 0 0 180px 180px;
  border-color: transparent transparent var(--secondary-color) transparent;
  pointer-events: none;
}
html[dir="rtl"] .site-footer::after { right: auto; left: 0; border-width: 0 180px 180px 0; }

.site-footer-title { color: var(--white-color); font-size: 14px; font-weight: var(--font-weight-bold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.site-footer-links { padding-left: 0; padding-right: 0; }
.site-footer-link-item { display: block; list-style: none; line-height: normal; margin-bottom: 10px; }
.site-footer-link { color: rgba(255, 255, 255, 0.5); font-size: var(--copyright-font-size); font-weight: var(--font-weight-normal); transition: color 0.2s; }
.site-footer-link:hover { color: var(--secondary-color); }

.copyright-text { font-size: var(--copyright-font-size); color: rgba(255,255,255,0.35); }

/* Social icons */
.social-icon { margin: 0; padding: 0; }
.social-icon-item { list-style: none; display: inline-block; vertical-align: top; margin-bottom: 8px; }
.social-icon-link {
  background: rgba(255,255,255,0.1);
  border-radius: var(--border-radius-large);
  color: var(--white-color);
  font-size: var(--copyright-font-size);
  display: block;
  margin-inline-end: 8px;
  text-align: center;
  width: 38px; height: 38px;
  line-height: 38px;
  transition: background 0.2s, color 0.2s;
}
.social-icon-link:hover { background: var(--secondary-color); color: var(--white-color); }

/* ---- SITE HEADER (inner pages) ---- */
.site-header {
  background-image: linear-gradient(135deg, #0f3047 0%, #d62828 100%);
  padding-top: 150px;
  padding-bottom: 80px;
}
.breadcrumb-item+.breadcrumb-item::before, .breadcrumb-item a:hover, .breadcrumb-item.active { color: var(--white-color); }

/* ---- RESPONSIVE ---- */
@media screen and (max-width: 991px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }
  h3 { font-size: 26px; }
  h4 { font-size: 22px; }
  h5 { font-size: 18px; }
  .section-padding { padding-top: 60px; padding-bottom: 60px; }
  .navbar { background-color: var(--primary-color) !important; }
  .navbar-expand-lg .navbar-nav { padding-bottom: 20px; }
  .navbar-expand-lg .navbar-nav .nav-link { padding: 8px 12px; margin: 0; }
  .nav-tabs .nav-link { font-size: 13px; padding: 10px 15px; }
  .featured-section { border-radius: 0 0 60px 60px; padding-bottom: 60px; }
  .timeline-container .vertical-scrollable-timeline .list-progress { height: 75%; }
  .timeline-container .vertical-scrollable-timeline li { padding-left: 130px; }
  html[dir="rtl"] .timeline-container .vertical-scrollable-timeline li { padding-right: 130px; }
  .hero-section { padding-top: 100px; padding-bottom: 80px; }
  h1.hero-title { font-size: 36px; }
}
@media screen and (max-width: 480px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  .hero-cta-group { flex-direction: column; }
  .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; }
  .featured-section { border-radius: 0 0 40px 40px; }
  .nav-tabs { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nav-tabs .nav-link { white-space: nowrap; padding: 10px 14px; }
  .timeline-container .vertical-scrollable-timeline li { padding-left: 110px; }
  html[dir="rtl"] .timeline-container .vertical-scrollable-timeline li { padding-right: 110px; padding-left: 0; }
}
