:root {
  --railinc-red: #d71920;
  --railinc-blue: #0052af;
  --railinc-gray: #6c6c6e;
  --railinc-black: #292522;
  --share-btn-blue: #62bce5;
  --footer-bg: #1a1a1a;
  --card-blue: #0052af;
  --link-color: #004390;
  --title-color: #292522;
  --font-barlow: "Barlow", sans-serif;
  --font-hanken: "Hanken Grotesk", sans-serif;
  --railinc-red-border: #a21626;
  --text-white: #ffffff;
  --font-100: 100px;
  --font-28: 28px;
  --font-36: 36px;
  --font-18: 18px;
  --font-20: 20px;
}
@media (max-width: 1199px) {
  :root {
    --font-100: 56px;
    --font-36: 26px;
    --font-18: 16px;
  }
}
@media (max-width: 575px) {
  :root {
    --font-36: 20px;
    --font-20: 18px;
  }
}
button:focus,
button:hover,
a:focus {
  outline: none;
  box-shadow: none;
}

body {
  font-family: var(--font-barlow);
  margin: 0;
  background-color: #ffffff;
  color: #333;
  overflow-x: hidden;
}
html {
  overflow-x: hidden;
}
.color-cycle {
  color: var(--railinc-blue);
}
.color-cycle .char {
  -webkit-animation: color-cycle 1s cubic-bezier(0.5, 0, 0.5, 1) infinite
    alternate !important;
  animation: color-cycle 1s cubic-bezier(0.5, 0, 0.5, 1) infinite alternate !important;
  -webkit-animation-delay: calc(0.03s * var(--char-index)) !important;
  animation-delay: calc(0.03s * var(--char-index)) !important;
  -webkit-animation-duration: calc(0.04s * calc(var(--char-total))) !important;
  animation-duration: calc(0.04s * calc(var(--char-total))) !important;
}
.color-cycle .word {
  margin-bottom: 0px;
  padding-bottom: 0px;
  overflow: visible;
}
@-webkit-keyframes color-cycle {
  25% {
    color: #62bce5;
  }
  50% {
    color: #3187ca;
  }
  75% {
    color: #1a6ebd;
  }
  100% {
    color: #0052af;
  }
}

@keyframes color-cycle {
  25% {
    color: #62bce5;
  }
  50% {
    color: #3187ca;
  }
  75% {
    color: #1a6ebd;
  }
  100% {
    color: #0052af;
  }
}
.gradient-red-blue-title {
  font-family: var(--font-barlow);
  background: linear-gradient(95.66deg, #0077ff -34.75%, #d21d32 121.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.word {
  overflow: hidden;
  padding-bottom: 0.1em;
  margin-bottom: -0.1em;
  transform-origin: bottom;
}
@keyframes gradientanimate {
  0% {
    background-position: 0%;
  }
  100% {
    background-position: 400%;
  }
}
/* Hero Section Common Css */
/* Share button css start */
.share-wrapper {
  position: relative;
  display: inline-block;
}

.share-btn {
  padding: 10px 16px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 6px;
}

.share-options {
  display: none;
  position: absolute;
  top: 45px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.share-options a,
.share-options button {
  display: block;
  padding: 6px 10px;
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.share-options a:hover,
.share-options button:hover {
  color: var(--railinc-red);
}
/* Share button css end */

.hero-banner-section {
  position: relative;
  height: 60vh;
  min-height: 520px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-banner-section-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-banner-section-container {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-banner-section-title {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  color: #fff;
  z-index: 2;
  line-height: 1.2;
  margin: 0;
  text-align: center;
}

/* Hero Section Common Css End */

/* Section Common Css Start */

.section-common-title {
  font-family: var(--font-barlow);
  font-weight: 600;
  line-height: 1.3;
  font-size: clamp(36px, 4vw, 48px);
  margin-bottom: 64px;
  text-align: center;
}

.section-common-description {
  font-family: var(--font-hanken);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 23px;
  color: var(--railinc-gray);
}

.section-padding {
  padding: 100px 0;
}

.section-top-padding {
  padding-top: 100px;
}

.section-bottom-padding {
  padding-bottom: 100px;
}

@media (max-width: 767px) {
  .section-padding {
    padding: 80px 0;
  }

  .section-top-padding {
    padding-top: 80px;
  }

  .section-bottom-padding {
    padding-bottom: 80px;
  }
}

/* Section Common Css End */

.main-header {
  padding-top: 15px;
  z-index: 9999;
  position: relative;
  transition: 0.3s;
  background: #fff;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  border-radius: 0px 0px 32px 32px;
}
header.main-header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: auto;
  background: #fff;
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  background: #fff;
}

.brand-logo {
  display: flex;
  padding: 0px;
  max-width: 400px;
  max-height: 60px;
}

@media (max-width: 575px) {
  .brand-logo {
    max-width: 280px;
    max-height: 40px;
  }
}

.navbar-nav {
  display: flex;
  gap: 28px;
}

.navbar-nav .nav-link {
  font-family: var(--font-hanken);
  color: var(--railinc-gray);
  font-size: 16px;
  font-weight: 500;
  transition: 0.3s ease;
  text-transform: none;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom: 2px solid transparent;
}

.header-navbar {
  background: rgba(254, 255, 255, 0.9);
  border-bottom: 1px solid rgba(108, 108, 110, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 0px 0px 32px 32px;
}

@media (max-width: 991px) {
  .header-navbar {
    border-radius: 0;
  }
}

.header-navbar .navbar-collapse {
  padding-bottom: 12px;
}

.header-navbar .first-navlink {
  padding-left: 0 !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  border-bottom: 2px solid var(--railinc-red-border) !important;
  transition: 0.3s ease;
  color: var(--title-color) !important;
}

.btn-share {
  font-family: var(--font-hanken);
  background-color: var(--share-btn-blue);
  color: var(--link-color) !important;
  border-radius: 200px;
  padding: 8px 20px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}
.btn-share:hover {
  background-color: var(--railinc-red);
  color: var(--text-white) !important;
}
.navbar-toggler {
  border: none;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Custom Hamburger Icon Color */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(0, 86, 179, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991px) {
  .main-header {
    margin-bottom: -15px;
  }

  .header-navbar .navbar-collapse {
    background: #ffffff;
    padding: 20px;
    border-top: 1px solid #eee;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1000;
  }

  .navbar-nav .nav-link {
    padding: 12px 0 !important;
    border-bottom: 1px solid #f8f9fa;
  }

  .navbar-nav .nav-item:last-child .nav-link {
    border-bottom: none;
  }
}

/* --- 2. Hero Section --- */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 130px 0;
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background-image: url("../images/herobg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding-left: 100px;
}

.review-wrapper {
  width: max-content;
}

.display-year .char {
  font-family: var(--font-barlow);
  font-size: clamp(80px, 20vw, 394.899px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 90%;
  font-weight: 600;
}
.display-year .char:nth-child(1) {
  background: linear-gradient(90deg, #0456b1 0%, #1569bb 100%);
  background-clip: text;
  text-fill-color: transparent;
}
.display-year .char:nth-child(2) {
  background: linear-gradient(90deg, #1c70bf 0%, #2f85c9 100%);
  background-clip: text;
  text-fill-color: transparent;
}
.display-year .char:nth-child(3) {
  background: linear-gradient(90deg, #358bcc 0%, #489fd7 100%);
  background-clip: text;
  text-fill-color: transparent;
}
.display-year .char:nth-child(4) {
  background: linear-gradient(90deg, #4ca4d9 0%, #5fb8e3 100%);
  background-clip: text;
  text-fill-color: transparent;
}
.text-in {
  font-family: var(--font-hanken);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 116.556px);
  text-transform: uppercase;
  color: var(--railinc-blue);
  line-height: 100%;
}

.text-review {
  font-family: var(--font-hanken);
  font-weight: 700;
  font-size: clamp(30px, 6vw, 116.556px);
  text-transform: uppercase;
  color: var(--railinc-blue);
  text-align: right;
  line-height: 100%;
  display: block;
}
.horizontal-line {
  width: 100%;
  display: block;
  height: 1px;
  background-color: var(--share-btn-blue);
}
.message-section {
  padding: 120px 0 30vw;
  position: relative;
  overflow: hidden;
  z-index: 11;
  border-radius: 32px 32px 0 0;
  margin-top: -30px;
}

.ceo-message-card {
  background-color: var(--railinc-blue);
  color: #ffffff;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 24px;
  position: relative;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.quote-icon {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 40px;
  color: var(--share-btn-blue);
  opacity: 0.6;
}

.ceo-quote {
  font-family: var(--font-barlow);
  margin-bottom: 30px;
  font-weight: 600;
  font-size: var(--font-28);
  line-height: 1.4em;
  color: #ffffff;
}

.ceo-text {
  font-family: var(--font-hanken);
  font-size: var(--font-20);
  line-height: 1.4em;
  margin-bottom: 30px;
  font-weight: 400;
}

.ceo-image-container {
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 340px;
  max-height: 340px;
  border-radius: 32px;
  overflow: hidden;
  background: #62bce5;
  border-radius: 120px;
  display: flex;
  align-items: end;
  justify-content: center;
}

.ceo-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 100%;
  object-position: bottom;
}

.line-animation-container {
  position: relative;
  transition-property: all;
}

.line-animation {
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

/* --- Responsive Image Handling --- */

@media (min-width: 992px) {
  .message-img-container {
    position: absolute;
    z-index: 1;
    bottom: -10%;
    right: 20%;
    padding: 0;
  }

  .train-overlap-img {
    border-radius: 32px;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
  }
}

@media (max-width: 991px) {
  .message-img-container {
    position: relative;
    margin-top: 10px;
    z-index: 1;
    padding: 0 15px;
    width: 100%;
  }

  .train-overlap-img {
    border-radius: 24px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }

  .ceo-message-card {
    margin-bottom: 0;
  }
}

/* --- 4. Accomplishments Section --- */
.accomplishments-section {
  padding: 80px 0 100px 0;
  border-radius: 30px 30px 0 0;
  overflow: hidden;
}

.accomplishments-section-title {
  font-family: var(--font-barlow);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-100);
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: var(--title-color);
  margin-bottom: 60px;
}

.accomplishments-section .nav-tabs {
  border: none;
  margin-bottom: 48px;
}

.accomplishments-section .nav-item {
  display: flex;
  flex: 1 1 0;
}

.accomplishments-section .nav-link {
  background: transparent;
  text-transform: uppercase;
  border-radius: 0px;
  color: #292522;
  padding: 12px 30px;
  border: none;
  border-right: 1px solid #292522;
  width: 100%;
  height: 100%;
}

.accomplishments-section .nav-item:last-child .nav-link {
  border-right: 0px;
}

.accomplishments-section .nav-link.active,
.accomplishments-section .nav-link:hover {
  background: #221e1f;
  color: #fff;
}

.accomplishments-section .tab-pane {
  background-color: transparent;
  border: none;
  padding-left: 60px;
  padding-right: 60px;
}

@media (max-width: 991px) {
  .accomplishments-section .tab-pane {
    padding-left: 0;
    padding-right: 0;
  }
}

.accomplishments-section .tab-pane img {
  border-radius: 30px;
  overflow: hidden;
  display: block;
}

.accomplishments-section .tab-pane h2 {
  font-family: var(--font-barlow);
  font-size: var(--font-36);
  font-weight: 700;
  line-height: 120%;
  color: var(--title-color);
  margin-bottom: 24px;
}

.accomplishments-section .tab-pane p {
  font-size: var(--font-18);
  font-family: var(--font-hanken);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 24px;
  color: var(--railinc-gray);
}

.accomplishments-section .tab-pane .btn.btn-success {
  background-color: #00a25d;
  border-color: #00a25d;
  padding: 12px 24px;
  border-radius: 400px;
  font-weight: 600;
  transition: 0.3s;
}

.accomplishments-section .tab-pane .btn.btn-success:hover {
  background-color: var(--railinc-red);
  border-color: var(--railinc-red);
  transition: 0.3s;
}

.accomplishments-section .accordion-button {
  text-transform: uppercase;
}

.accomplishments-section .accordion-button:not(.collapsed) {
  background-color: #221e1f;
  color: #fff;
}

.accomplishments-section .accordion-button:not(.collapsed)::after {
  filter: brightness(0) saturate(100%) invert(1);
}

.accomplishments-section .accordion-button::after {
  filter: invert(1);
}
.accomplishments-bg-animation {
  position: absolute;
  top: 0;
  left: 0;
  height: 1080px;
  z-index: -1;
  width: 100%;
  background-color: #f6f6f6;
  pointer-events: none;
  border-radius: 30px 30px 0px 0px;
  overflow: hidden;
}
.main-footer {
  background-color: #221e1f;
  color: #ffffff;
  padding: 80px 0 60px;
  font-family: var(--font-hanken);
}

.footer-logo {
  width: 220px;
  margin-bottom: 35px;
}

.footer-desc {
  max-width: 320px;
  font-size: var(--font-18);
  line-height: 1.4;
  margin-bottom: 30px;
  color: #ffffff;
}

.aar-branding {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 50px;
}

.aar-logo-img {
  height: 45px;
  filter: brightness(0) invert(1);
}

.aar-text {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  text-transform: uppercase;
}

.copyright-box {
  font-size: 16px;
  color: var(--railinc-gray);
  margin-top: 20px;
  font-family: var(--font-hanken);
  font-weight: 400;
  line-height: 1.6;
}

.copyright-box a {
  color: var(--railinc-gray) !important;
  transition: color 0.3s ease;
}

.copyright-box a:hover {
  color: #ffffff !important;
}

.footer-heading {
  font-family: var(--font-barlow);
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #ffffff;
}

.contact-item {
  margin-bottom: 25px;
}

.contact-label {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 0;
  color: #ffffff;
}

.contact-detail {
  color: var(--railinc-gray);
  font-size: 16px;
  font-family: var(--font-hanken);
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
}

.social-links {
  margin-top: 40px;
  display: flex;
  gap: 25px;
  align-items: center;
}

.social-links a {
  color: #ffffff;
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: #ffffff !important;
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.social-links img {
  max-width: 32px;
  max-height: 32px;
  object-fit: cover;
}

/* Past Reports Links */
.past-reports {
  padding: 0;
  list-style: none;
}

.past-reports a {
  color: var(--railinc-gray);
  text-decoration: none;
  font-size: 16px;
  font-family: var(--font-hanken);
  font-weight: 400;
  line-height: 1.6;
  transition: color 0.3s;
}

.past-reports a:hover {
  color: #ffffff;
}

.view-all-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  margin-top: 20px;
  transition: 0.3s;
}
.view-all-link:hover {
  color: var(--railinc-red);
}
@media (max-width: 991px) {
  .main-footer .col-lg-4,
  .main-footer .col-lg-3 {
    margin-top: 50px;
  }
}

@media (max-width: 991px) {
  .message-section {
    padding-top: 90px;
    padding-bottom: 0;
  }

  .header-container,
  .nav-bar {
    padding: 10px 20px;
  }

  .hero-content {
    padding-left: 20px;
  }

  .review-wrapper {
    margin-left: 110px;
  }

  .train-overlap-img {
    margin-left: 0;
    margin-top: 30px;
  }

  .accomplishments-section-title {
    font-size: 48px;
  }

  .accordion.tab-content > .tab-pane {
    display: block;
    opacity: 1;
    background: #fff;
  }
}

/* Iss Modernization Tab CSS START */

/* ISS Page Specific Styles */

/* Hero Section */
.iss-hero {
  background-image: url("../images/moderbizationbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.iss-hero-overlay {
  background: linear-gradient(
    90deg,
    rgba(62, 59, 150, 0.85) 0%,
    rgba(200, 71, 107, 0.8) 100%
  );
}

/* Content Section */
.iss-content-section {
  padding: 80px 0 100px 0;
  background-color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: -30px;
  z-index: 100;
  position: relative;
}

.iss-text-block p {
  font-family: var(--font-hanken);
  font-size: var(--font-18);
  color: var(--title-color);
  line-height: 1.6;
  text-align: justify;
}

.iss-highlight-block {
  display: flex;
  justify-content: center;
  /* align-items: center; */
  margin: 50px auto;
  max-width: 580px;
  width: 100%;
}

.iss-highlight-block p {
  font-family: var(--font-hanken);
  font-size: var(--font-20);
  font-weight: 600;
  line-height: 140%;
  text-align: center;
  animation: gradientanimate 30s linear infinite;
  background: linear-gradient(
    90deg,
    #c30202,
    #d90490,
    #cb03c1,
    #0024b2,
    #c60299,
    #c80505
  );
  background-size: 400%;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation-direction: reverse;
}

/* Icons Grid */
.iss-features-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin: 60px 0;
}

.feature-item {
  text-align: center;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}

.feature-icon {
  min-width: 80px;
  min-height: 80px;
  width: 100%;
  height: 100%;
}
.feature-item:hover {
  transform: translateY(-5px);
}
.feature-label {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: #0052af;
}

/* Future Section */
.iss-future-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.future-img-container img {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.future-img-container:hover img {
  transform: scale(1.02);
}

.iss-future-title {
  font-family: var(--font-barlow);
  font-size: clamp(28px, 4vw, 36px);
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 140%;
  background: linear-gradient(270deg, #62bce5 0%, #0052af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.iss-future-text {
  font-family: var(--font-hanken);
  font-size: var(--font-18);
  color: var(--railinc-gray);
  line-height: 1.7;
}

@media (max-width: 991px) {
  .iss-hero {
    height: 50vh;
    min-height: 300px;
  }

  .iss-features-grid {
    gap: 30px;
  }

  /* 
  .iss-content-section {
    padding: 50px 0;
  } */

  .iss-future-section {
    padding: 60px 0;
  }
}

/* Inside Railinc Page CSS START */

.inside-railinc-hero {
  background-image: url("../images/insideraillinkbg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom;
}

.inside-railinc-hero-overlay {
  opacity: 0.7;
  background: linear-gradient(180deg, #0077ff -33%, #d21d32 136.33%);
  z-index: 1;
}

/* .inside-railinc-hero-title {

} */

.space-section {
  padding: 120px 0 0px 0;
  border-radius: 32px 32px 0 0;
  background-color: #fff;
  margin-top: -30px;
  z-index: 1;
  position: relative;
}

.inside-railinc-heading {
  position: relative;
  z-index: 10;
}

/* Circle Text */
.circle-text-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: 0 auto 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  padding: 40px;
  min-height: 550px;
}

.circle-text-wrapper .circle-bg {
  content: "";
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #dbeeff;
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.circle-text {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: var(--font-20);
  line-height: 1.4;
  color: #0056b3;
  text-align: center;
}

.circle-content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.circle-heading {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 600;
  font-size: var(--font-36);
  line-height: 48px;
  z-index: 1;
  text-align: center;
  color: #0052af;
}

.circle-additional-text {
  font-family: var(--font-hanken);
  color: #0056b3;
  margin-top: 50px;
  opacity: 0;
  /* max-height: 0; */
  overflow: hidden;
  position: relative;
  z-index: 1;
  font-weight: 400;
  font-size: var(--font-20);
  line-height: 100%;
  text-align: center;
}

.content-image {
  width: 100%;
  height: 300px;
  border: 4px solid #62bce5;
  border-radius: 32px;
  object-fit: cover;
  border-radius: 20px;
}

/* Health Section */
.health-section {
  padding: 100px 0;
}

.health-text-bold {
  font-weight: 700;
}

.text-blue {
  color: var(--railinc-blue);
  font-weight: 700;
}

.overlay-card-image-container {
  position: relative;
}

.health-image {
  border: 4px solid #62bce5;
  border-radius: 32px;
}

.health-overlay-card {
  position: absolute;
  top: 20px;
  right: 20px;
}

.overlay-card {
  padding: 24px;
  background: #ffffff;
  border: 1px solid var(--railinc-blue);
  /* max-width: 300px; */
  border-radius: 18px;
}

.overlay-card-title {
  font-family: var(--font-hanken);
  font-weight: 700;
  font-size: 54px;
  text-transform: uppercase;
  color: var(--railinc-blue);
  text-align: center;
  margin-bottom: 0;
}

.overlay-card-text {
  font-size: 24px;
  font-weight: 600;
  line-height: 120%;
  text-align: center;
  margin-bottom: 0;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(93.07deg, #0077ff -33.4%, #d21d32 98.47%);
}

.overlay-card-small {
  display: inline-block;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  font-family: var(--font-hanken);
  text-align: center;
  color: var(--railinc-black);
}

/* Overlay Card Responsive Styles */

@media (max-width: 575px) {
  .health-overlay-card {
    position: static;
    margin-top: 20px;
  }

  .overlay-card {
    padding: 20px;
  }

  .overlay-card-title {
    font-size: 48px;
  }

  .overlay-card-text {
    font-size: 20px;
  }

  .overlay-card-small {
    font-size: 15px;
  }
}

.health-gallery {
  margin-top: 50px;
}

.health-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 30px;
}

.gallery-img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 20px;
}

/* Mobile fix */
@media (max-width: 768px) {
  .health-grid {
    grid-template-columns: 1fr;
  }

  .health-section {
    padding: 30px 0;
  }
}

/* Food Bank Section */
.foodbank-section {
  padding: 60px 0 180px 0;
}

@media (max-width: 991px) {
  .foodbank-section {
    padding: 60px 0;
  }
}

.foodbank-image-container {
  position: relative;
  max-width: 480px;
  max-height: 380px;
}

.foodbank-image-container::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  right: -45px;
  bottom: -36px;
  z-index: -1;
  background: var(--share-btn-blue);
  border-radius: 32px;
}

.foodbank-image {
  border-radius: 32px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.foodbank-overlay-container {
  position: relative;
  max-width: 580px;
  width: 100%;
}

.foodbank-overlay-card {
  position: absolute;
  bottom: -50px;
  right: -40px;
}

.foodbank-text-base {
  font-family: var(--font-barlow);
  font-size: var(--font-18);
  line-height: 140%;
  /* color: var(--railinc-black); */
}

.foodbank-text-bold {
  font-weight: 600;
}
.foodbank-text-regular {
  font-family: var(--font-hanken);
  color: var(--railinc-gray);
  font-weight: 400;
}
.foodbank-text-desc {
  font-family: var(--font-hanken);
  color: var(--railinc-black);
  font-weight: 400;
}

.foodbank-link {
  color: var(--card-blue);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

/* Food Bank Responsive Styles */
@media (max-width: 1199px) {
  .foodbank-overlay-card {
    right: -30px;
    bottom: -40px;
  }

  .foodbank-image-container::after {
    right: -35px;
    bottom: -30px;
  }
}

@media (max-width: 991px) {
  .foodbank-overlay-container {
    max-width: 100%;
    margin-bottom: 40px;
  }

  .foodbank-image-container {
    max-width: 100%;
    max-height: none;
  }

  .foodbank-overlay-card {
    right: 20px;
    bottom: -30px;
  }

  .foodbank-image-container::after {
    right: -25px;
    bottom: -25px;
  }
}

@media (max-width: 767px) {
  .foodbank-section {
    padding: 40px 0 80px 0;
  }

  .foodbank-overlay-card {
    bottom: -100px;
    right: 10px;
  }

  .foodbank-image-container::after {
    right: -15px;
    bottom: -15px;
  }
}

@media (max-width: 575px) {
  .foodbank-image-container::after {
    right: -10px;
    bottom: -10px;
  }
}

.foodbank-text strong {
  font-weight: 700;
}

.foodbank-link {
  color: var(--railinc-blue);
  font-weight: 600;
}

/* Transformative insight */

.ti-hero {
  background-image: url("../images/transformative_herobg.jpg");
}

.ti-hero-overlay {
  inset: 0;
  background: linear-gradient(180deg, #0077ff -33%, #d21d32 136.33%);
  opacity: 0.7;
}

/* Timeline/Stats Section */

.machine-section {
  padding: 80px 0 100px 0;
  border-radius: 32px 32px 0 0;
  background-color: #fff;
  margin-top: -30px;
  z-index: 100;
  position: relative;
}

.matchine-vision-title {
  color: #0052af;
}

.timeline-number {
  font-family: "Hanken Grotesk";
  font-size: 76px;
  font-weight: 700;
  color: var(--railinc-blue);
}

.timeline-label {
  font-family: "Barlow";
  font-size: var(--font-18);
  font-weight: 600;
  color: var(--railinc-blue);
}

.timeline-line {
  width: 64px;
  height: 8px;
  border-radius: 8px;
  position: relative;
  background: #e4e4e6;
}
.timeline-line-span {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--railinc-blue);
  border-radius: 8px;
}

@media (max-width: 991.98px) {
  .timeline-line {
    display: none;
  }

  .timeline-marker {
    margin-bottom: 20px;
  }
}

.timeline-content {
  font-family: var(--font-hanken);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 23px;
  color: var(--title-color);
}

.timeline-bg-content {
  background: #e4e4e6;
  border-radius: 24px;
  padding: 24px;
  margin-top: 24px;
  font-family: var(--font-hanken);
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: var(--title-color);
}

.rgic-section {
  padding: 80px 0 100px 0;
}

.rgic-section-title {
  background: linear-gradient(270deg, #62bce5 0%, #0052af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.rgic-state-title,
.rgic-stat-desc {
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: 21px;
  text-align: center;
  line-height: 140%;
  background: linear-gradient(95.66deg, #0077ff -34.75%, #d21d32 121.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.rgic-state-sub-title {
  font-family: var(--font-hanken);
  text-transform: uppercase;
  text-align: center;
  color: var(--railinc-blue);
  font-weight: 700;
  font-size: var(--font-36);
  line-height: 120%;
}

.rgic-map-img-bkl {
  position: relative;
  width: 100%;
}

.rgic-map-container {
  margin-top: 64px;
}

.rgic-map-img-bkl img {
  width: 100%;
  border-radius: 8px;
}

.rgic-map-img-bkl::after {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 100%;
  height: 100%;
  background: var(--share-btn-blue);
  /* opacity: 0.7; */
  z-index: -1;
  border-radius: 8px;
  pointer-events: none;
}

.rgic-icon-text {
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  color: var(--railinc-blue);
}

.rgic-section-desc {
  font-family: var(--font-hanken);
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 140%;
  color: var(--title-color);
  text-align: justify;
}

.rgic-big-stat-title {
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: 22px;
  line-height: 140%;
  text-align: center;

  background: linear-gradient(95.66deg, #0077ff -34.75%, #d21d32 121.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.rgic-big-stat-number {
  font-family: var(--font-hanken);
  font-weight: 700;
  font-size: 72px;
  line-height: 120%;
  text-align: center;
  text-transform: uppercase;
  color: var(--railinc-blue);
}

.alert-title {
  color: var(--railinc-blue);
}

.alert-question-box p {
  font-family: var(--font-barlow);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  line-height: 44px;
  text-align: right;
  color: var(--railinc-blue);
}

.alert-box-desc {
  font-family: var(--font-hanken);
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 140%;
  color: var(--railinc-black);
}

.cpkc-section {
  padding: 100px 0 120px 0;
  border-radius: 32px 32px 0 0;
}

.cpkc-box-desc {
  font-family: var(--font-hanken);
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 140%;
  color: var(--railinc-gray);
}

.cpkc-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  max-height: 440px;
}

.cpkc-subtitle {
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: var(--font-36);
  line-height: 44px;
  text-align: center;
  color: var(--railinc-blue);
  margin: 40px 0;
}

.cpkc-features-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cpkc-item {
  text-align: center;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.cpkc-icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.cpkc-icon span {
  font-family: var(--font-hanken);
  font-weight: 700;
  font-size: 42.75px;
  line-height: 120%;
  text-transform: uppercase;
  color: var(--railinc-blue);
}

.cpkc-label {
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: var(--font-18);
  line-height: 140%;
  text-align: center;
  color: var(--railinc-blue);
}

/* Stats Overlay */
.stats-overlay-bottom {
  border: 1px solid #eee;
}

/* TransmetriQ Page CSS */

.transmetriq-hero {
  background-image: url("../images/transmetriqherobg.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.transmetriq-hero-overlay {
  opacity: 0.7;
  background: linear-gradient(180deg, #0077ff -33%, #d21d32 136.33%);
}
.transmetric-quote-section {
  padding-top: 80px;
  padding-bottom: 120px;
}

/* Intro Section */
.tm-intro-section {
  padding: 120px 0 30vw;
  position: relative;
  overflow: hidden;
  z-index: 11;
  background-color: #fff;
  border-radius: 32px 32px 0 0;
  margin-top: -30px;
}

/* BLUE CARD */
.tm-blue-card {
  background-color: var(--railinc-blue);
  color: #ffffff;
  padding: clamp(30px, 5vw, 60px);
  border-radius: 24px;
  position: relative;
  z-index: 5;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

/* --- Responsive Image Handling for TransmetriQ Intro --- */

@media (min-width: 992px) {
  .tm-intro-img-col {
    position: absolute;
    z-index: 1;
    bottom: -10%;
    right: 20%;
    padding: 0;
    width: 50%;
  }

  .tm-intro-img {
    border-radius: 32px;
    width: 100%;
    max-height: 450px;
    object-fit: cover;
  }
  .transmetric-quote-section .message-img-container {
    bottom: -40%;
  }
}

@media (max-width: 991px) {
  .tm-intro-img-col {
    position: relative;
    margin-top: 10px;
    z-index: 1;
    padding: 0 15px;
    width: 100%;
  }

  .tm-intro-img {
    border-radius: 24px;
    width: 100%;
    max-height: 300px;
    object-fit: cover;
  }

  .tm-intro-section {
    padding-top: 90px;
    padding-bottom: 0;
  }
}

.tm-blue-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 600;
}

.tm-card-text {
  font-family: var(--font-hanken);
  font-size: var(--font-18);
  line-height: 1.4;
  opacity: 0.9;
}

.tm-author span {
  letter-spacing: 1px;
  font-family: var(--font-barlow);
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  color: #ffffff;
}

.tm-author h5 {
  font-weight: 600;
}

.tm-intro-img {
  height: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: 32px;
}

@media (min-width: 992px) {
  .tm-intro-img-col {
    position: absolute;
    right: 0;
    bottom: -40%;
    z-index: 1;
    padding: 0;
  }

  .tm-intro-img {
    max-height: 400px;
  }
}

@media (max-width: 991px) {
  .tm-intro-img-col {
    position: relative;
    margin-top: 32px;
    padding: 0 15px;
  }

  .tm-intro-img {
    min-height: auto;
    max-height: 320px;
    border-radius: 24px;
  }

  .tm-intro-section {
    padding-bottom: 60px;
  }
}

/* State Section */

.tm-event-section {
  padding: 120px 0 100px 0;
  text-align: center;
}

.tm-event-title,
.tm-event-desc {
  font-family: var(--font-barlow);
  font-weight: 600;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 48px;
  text-align: center;

  background: linear-gradient(95.66deg, #0077ff -34.75%, #d21d32 121.82%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}

.tm-event-sub-title {
  font-family: "Hanken Grotesk";
  font-weight: 700;
  /* font-size: 76px; */
  font-size: clamp(48px, 8vw, 76px);
  line-height: 120%;
  text-transform: uppercase;
  color: var(--railinc-blue);
}

.tm-visibility-title {
  /* background: linear-gradient(270deg, #62bce5 0%, #0052af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent; */
}

/* Icons Grid */
.tm-visibility-item {
  padding: 20px;
}

.tm-visibility-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.tm-visibility-value {
  font-family: var(--font-hanken);
  color: var(--railinc-blue);
  font-weight: 700;
  font-size: 48px;
  line-height: 120%;
}

.tm-visibility-label {
  font-family: var(--font-barlow);
  color: var(--railinc-blue);
  font-weight: 600;
  font-size: var(--font-18);
  line-height: 140%;
  text-align: center;
}

.trans-visibility-img {
  border-radius: 24px;
  border: 8px solid #62bce5;
  margin-bottom: 32px;
}

.tm-visibility-caption {
  font-family: var(--font-hanken);
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 140%;
  text-align: center;
  color: var(--railinc-gray);
}

/* Features Section */
.tm-features-bg {
  padding: 100px 0;
  overflow: hidden;
}
.tm-features-bg .accomplishments-bg-animation {
  height: 100%;
}
/* Add subtle background lines/dots if needed */

.tm-feature-main-title {
  font-family: var(--font-barlow);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 600;
  line-height: 58px;
  text-align: center;
  margin-bottom: 80px;
}

.tm-feature-title {
  font-family: var(--font-barlow);
  font-weight: 700;
  font-size: var(--font-36);
  line-height: 43px;
  color: var(--title-color);
}

.tm-feature-subtitle {
  font-family: var(--font-barlow);
  margin-bottom: 20px;
  font-weight: 700;
  font-size: var(--font-18);
  line-height: 140%;
  color: var(--railinc-blue);
}

.tm-feature-desc {
  font-family: var(--font-hanken);
  font-weight: 400;
  font-size: var(--font-18);
  line-height: 23px;
  color: var(--railinc-gray);
}

.tm-feature-img {
  /* max-width: 550px; */
  max-height: 420px;
  object-fit: cover;
  border-radius: 20px;
}

/* .tm-tooltip-card {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 86, 179, 0.9);
  padding: 15px 20px;
  border-radius: 12px;
  backdrop-filter: blur(5px);
  color: white;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
} */

/* Video Section */
.tm-video-section {
  padding: 100px 0;
  background: linear-gradient(105.86deg, #0077ff -48.67%, #d21d32 159.31%);
}

.tm-video-wrapper {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tm-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  backdrop-filter: blur(5px);
  transition: 0.3s;
  text-decoration: none;
}

.tm-play-btn:hover {
  background: white;
  color: #0056b3;
  transform: translate(-50%, -50%) scale(1.1);
}
.arrow-animation-section {
  position: relative;
}
.arrow-animation-section:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 10%;
  height: 100%;
  display: block;
  background-color: var(--railinc-gray);
  height: 100%;
  aspect-ratio: cos(30deg);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  background: linear-gradient(45deg, #f5f5f5, #f5f5f5);
  transition: 1.5s;
  pointer-events: none;
  z-index: -1;
}
.arrow-animation-section:after {
  position: absolute;
  content: "";
  display: block;
  background: linear-gradient(45deg, #f5f5f5, #f5f5f5);
  top: 0;
  left: -90%;
  width: 90%;
  height: 100%;
  pointer-events: none;
  z-index: -1;
  transition: 1.5s;
}
.arrow-animation-section.active:before {
  left: 90%;
  transition: 1.5s;
}
.arrow-animation-section.active:after {
  left: 0;
  transition: 1.5s;
}
.caption1 {
  display: block;
  opacity: 1;
}
.caption2 {
  opacity: 0;
  display: block;
}
@media (max-width: 1199px) {
  .ceo-quote {
    line-height: 1.4;
  }
  .ceo-image-container {
    border-radius: 60px;
  }
}
@media (max-width: 991px) {
  .tm-intro-section {
    padding-top: 30px;
  }

  .tm-blue-card {
    padding: 40px 30px;
    margin-bottom: -40px;
    /* Overlap fix on mobile */
  }

  .tm-intro-img-col {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
  }

  .tm-intro-img {
    min-height: 250px;
  }

  .tm-floating-card {
    right: 20px;
    bottom: -20px;
  }
  #line-animation {
    display: none;
  }
  .accomplishments-section,
  .cpkc-section {
    background-color: #f5f5f5;
  }
  .matchine-vision-title,
  .color-cycle {
    font-size: 28px;
    line-height: 1.4;
  }
  .tm-event-sub-title {
    font-size: 46px;
  }
  .tm-visibility-wrapper {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .accomplishments-section-title {
    font-size: 36px;
  }
  .accordion.tab-content > .tab-pane {
    margin-bottom: 20px;
  }
  .timeline-number {
    font-size: 46px;
  }
  .circle-heading {
    line-height: 1.2;
  }
  .section-common-title {
    line-height: 1;
  }
  .matchine-vision-title,
  .color-cycle {
    font-size: 22px;
    line-height: 1.4;
  }
}

@media (max-width: 575px) {
  .review-wrapper {
    margin-left: 0px;
  }
  .rgic-big-stat-number {
    font-size: 48px;
  }
  .iss-future-title {
    font-size: 22px;
  }
  .main-footer {
    padding: 20px 0 60px;
  }
  .tm-event-desc {
    font-size: 18px;
    line-height: 1.4;
  }
  .hero-banner-section {
    height: auto;
    min-height: 300px;
  }
  .hero-banner-section-title {
    font-size: 24px;
  }
  .tm-event-sub-title {
    font-size: 36px;
  }
  .tm-event-title {
    font-size: 18px;
  }
  .section-common-title {
    line-height: 1;
    font-size: 28px;
  }
}
