@font-face {
  font-family: "Fenwick";
  src:
    url("../fonts/FenwickLight.woff2") format("woff2"),
    url("../fonts/FenwickLight.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --primary-color: #003b8a;
  --secondary-color: #313131;
  --title-font: "Fenwick";
  --body-font: "Instrument Sans", sans-serif;
  --light-green: #f4fefe;
}

body {
  font-family: var(--body-font);
  margin: 0px !important;
  padding: 0px;
  font-size: 1.1rem;
  line-height: 1.8;
  overflow-x: hidden;
  color: var(--secondary-color);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

section {
  margin: 80px 0;
  display: block;
}

img {
  object-fit: cover;
  border-radius: 8px;
  width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: var(--primary-color);
}

ul,
ol {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--title-font) !important;
  margin: 0 0 15px 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -4px;
  color: #ffffff;
}

h2 {
  font-size: clamp(2.3rem, 4vw, 3.5rem);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -4px;
  color: var(--primary-color);
  margin-bottom: 35px;
}

h2 > span::before {
  content: "";
  background-image: url("../images/title-shape.svg");
  width: 100%;
  height: 175%;
  position: absolute;
  left: -35px;
  top: -40px;
  background-repeat: no-repeat;
  z-index: -1;
}

h2 > span {
  position: relative;
  z-index: 1;
}

h3 {
  font-size: 1.5rem;
  letter-spacing: -1px;
  color: var(--primary-color);
  line-height: 1.4;
  font-weight: 500;
}

h4 {
  font-size: 2rem;
  margin-bottom: 25px;
  color: var(--primary-color);
  font-weight: 500;
  letter-spacing: -2px;
  line-height: 1.1;
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin: 0 0 10px 0;
  letter-spacing: 0px;
  color: var(--secondary-color);
  font-weight: 400;
  font-family: var(--body-font);
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.tt-header {
  background: transparent;
  padding: 20px 0;
  position: fixed;
  top: 0;
  z-index: 9999;
  width: 100%;
  transition:
    padding 0.3s ease,
    background-color 0.3s ease,
    box-shadow 0.3s ease;
}

.tt-header.tt-header-scrolled {
  padding: 12px 0;
  background-color: #0c111d;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.tt-main-menu {
  display: flex;
  list-style: none;
  gap: 30px;
}

.tt-main-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

.tt-menu-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  background: #0068f0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  position: relative;
  z-index: 1;
}

.tt-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    background-color 0.3s ease;
  transform-origin: center;
}

.tt-menu-toggle.is-open span:nth-child(1) {
  transform: translateY(3px) rotate(45deg);
}

.tt-menu-toggle.is-open span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

@media (max-width: 991px) {
  .tt-header {
    padding: 20px 0 !important;
  }
  .tt-menu-toggle {
    display: flex !important;
  }
  .desktop-only {
    display: none;
  }
  .tt-nav-wrapper li {
    margin: 0 0 12px 0 !important;
  }
  .tt-nav-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--primary-color);
    flex-direction: column;
    padding: 93px 20px 40px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
    transition: all 0.4s ease;
  }

  .tt-nav-wrapper.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .tt-main-menu {
    flex-direction: column;
    text-align: center;
    margin-bottom: 30px;
  }

  .tt-btn-cta {
    padding: 13px 20px 13px 50px !important;
  }

  .tt-btn-cta .btn-icon {
    width: 40px !important;
    height: 40px !important;
  }
}

.tt-nav-wrapper ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 30px;
  align-items: center;
}

.tt-nav-wrapper li {
  margin: 0;
  padding: 0;
}

.tt-nav-wrapper a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  font-size: 14px;
  font-family: var(--title-font);
  letter-spacing: -0.5px;
}

.tt-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.tt-logo {
  max-width: 200px;
  position: relative;
  z-index: 1;
}

.tt-logo a {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}

.logo-mobile {
  display: none;
}
.logo-desktop {
  display: block;
  height: 40px;
  width: auto;
}

.mobile-only {
  display: none !important;
}

.desktop-only {
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .tt-logo {
    max-width: 137px;
  }
  .logo-desktop {
    display: none;
  }
  .logo-mobile {
    display: block;
    height: 35px;
    width: auto;
  }

  .desktop-only {
    display: none !important;
  }

  .tt-nav-wrapper.active .mobile-only {
    display: inline-flex !important;
    margin-top: 20px;
    justify-content: center;
  }

  .tt-nav-wrapper ul {
    display: block;
  }
}

.tt-btn-cta {
  color: #003366 !important;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
}

.hero-eidas {
  position: relative;
  background-color: #05070a;
  overflow: hidden;
  height: 99vh;
  display: flex;
  align-items: end;
  width: 100%;
  padding-bottom: 65px;
  margin: 0;
}

.hero-eidas .container {
  position: relative;
  z-index: 9;
}

.hero-content {
  max-width: 650px;
}

.hero-content .hero-subtitle {
  margin-bottom: 40px;
  color: white;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .hero-eidas {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-actions {
    flex-direction: column;
    gap: 20px;
  }

  .shape {
    opacity: 0.5;
  }
}

.info-card-wrapper {
  position: relative;
  /* background: linear-gradient(135deg, #001a3d 0%, #000a1a 100%); */
  background: #002658;
  border-radius: 20px;
  padding: 50px 52px 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.info-card-wrapper .customAnimation.shape-left {
  transform: translate(-50%, -50%) rotate(-100deg);
  flex: none;
  width: 1690px;
  height: auto;
  position: absolute;
  top: 34%;
  left: 50%;
  bottom: auto;
  z-index: 1;
}

.info-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.info-title {
  color: #9cfcf6;
}

.info-description p {
  color: #cbd5e1;
  max-width: 90%;
}

.info-text h2 > span::before {
  opacity: 0.3;
}

.info-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.badge-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

@media (max-width: 991px) {
  .info-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .info-description p {
    max-width: 100%;
  }

  .info-card-wrapper {
    padding: 40px 30px;
  }

  .info-visual {
    order: -1;
    margin-bottom: 20px;
  }

  .badge-img {
    max-width: 200px;
  }
}

/* Section 3 Grid */
.tt-features {
  padding: 114px 0;
  margin-bottom: 0px;
  background: #002658;
}

.tt-features h2,
.tt-features p {
  color: white;
}

.tt-features .tt-comp-main-title span:before {
  opacity: 0.3;
}

.tt-features .hero-actions {
  justify-content: right;
  margin: 50px 0 0 0;
  background: white;
  border-radius: 8px;
  padding: 30px;
}
.tt-features .hero-actions .tt-btn-cta.btn-reverse .btn-text {
  color: var(--primary-color) !important;
}

.tt-features .hero-actions .tt-btn-cta.btn-reverse .btn-icon svg {
  fill: var(--primary-color) !important;
}

.tt-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.tt-feature-content {
  display: flex;
  align-items: start;
  gap: 5px;
  margin-bottom: 15px;
}

/* Section 4 Grid */
.tt-intro {
  padding: 25px 0;
  background: #fff;
}
.tt-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.tt-feature-content h3 {
  color: white;
}
.tt-intro-img img {
  width: 100%;
  border-radius: 20px;
  height: 475px;
}

.tt-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 991px) {
  .tt-features {
    padding: 50px 0;
  }
  .tt-features-grid,
  .tt-intro-grid {
    grid-template-columns: 1fr;
  }
  .tt-intro-content {
    text-align: center;
  }
  .tt-actions {
    justify-content: center;
  }
  .tt-feature-content {
    margin-bottom: 0px;
  }
}

.tt-feature-icon {
  height: 60px;
  display: flex;
  align-items: center;
}

.tt-feature-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@media (max-width: 767px) {
  .tt-feature-item {
    text-align: left;
    margin-bottom: 0px;
  }
  .tt-feature-icon {
    justify-content: center;
  }
}

.tt-actions {
  display: flex;
  align-items: center;
  gap: 35px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .tt-actions {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}

/* Section 5 Specifics */
.tt-strategy {
  padding: 88px 0 95px;
  background-color: #ffffff;
  text-align: center;
}

.tt-strategy-content {
  max-width: 670px;
  margin: 0 auto;
}

.tt-title-large {
  max-width: 74%;
  margin: 0 auto 35px;
}

.tt-text-center {
  text-align: center;
}
.tt-flex-center {
  justify-content: center;
}

@media (max-width: 767px) {
  .tt-title-large {
    font-size: 2.5rem;
  }
  .tt-strategy {
    padding: 0px 20px;
  }
}

/* Section 6 Footer CTA */
.tt-footer-cta {
  padding: 80px 0 155px;
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.tt-footer-cta .container {
  position: relative;
  z-index: 2;
}

.tt-footer-cta::after {
  content: "";
  background: #000000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  position: absolute;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

.tt-cta-grid {
  display: grid;
  grid-template-columns: 1fr 550px;
  align-items: center;
}

.tt-cta-content h2 > span::before {
  filter: brightness(0) saturate(100%) invert(34%) sepia(79%) saturate(5526%)
    hue-rotate(205deg) brightness(96%) contrast(102%);
}

.tt-white-title {
  color: #ffffff;
}

.tt-white-desc {
  color: white;
}

.tt-cta-portrait img {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 991px) {
  .tt-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .tt-white-desc {
    margin-left: auto;
    margin-right: auto;
  }
  .tt-cta-portrait img {
    margin: 40px auto 0;
  }
  .tt-white-title {
    font-size: 2.5rem;
  }
}

.tt-approach-section {
  padding: 40px 0;
  background: #fff;
}
.tt-subtitle {
  margin-top: -20px;
  margin-bottom: 50px;
}

.tt-approach-grid {
  display: grid;
  /* grid-template-columns: repeat(3, 1fr); */
  grid-template-columns: repeat(3, calc(33.33% - 27px));
  column-gap: 40px;
  text-align: left;
  row-gap: 20px;
}

.tt-app-img img {
  height: 275px;
  border-radius: 0px;
  margin-bottom: 33px;
}

.tt-app-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0 0 12px 0;
}

.tt-app-icon {
  width: 24px;
  height: auto;
  margin-top: 5px;
}

.tt-app-info h3 {
  padding: 0 0 0 55px;
  position: relative;
  margin: 0;
}

.tt-app-info h3::before {
  content: "";
  background-image: url(../images/title-icon.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 45px;
  height: 45px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
}

.tt-app-desc {
  margin: 0 7px;
}

@media (max-width: 991px) {
  .tt-approach-grid {
    grid-template-columns: repeat(2, calc(50% - 27px));
  }
}
@media (max-width: 600px) {
  .tt-approach-grid {
    display: block;
  }
}

/* Section 8 Specifics */
.tt-contact-cta {
  padding: 135px 0;
  background-color: #ffffff;
  margin-bottom: 0px;
}

.tt-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: center;
}

.tt-contact-img img {
  max-width: 475px;
  height: 475px;
  border-radius: 8px 0 0 8px;
}

.tt-contact-content {
  padding-right: 20px;
}

.tt-contact-content .tt-desc-mid {
  text-align: left;
  margin-bottom: 30px;
}

.tt-contact-content .btn-link-arrow {
  font-size: 1.1rem;
  color: #003366;
}

.tt-contact-cta .tt-title-large {
  max-width: 100%;
}

@media (max-width: 991px) {
  .tt-contact-cta {
    padding: 0;
  }
  .tt-contact-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .tt-contact-content {
    padding-right: 0;
    text-align: center;
  }
  .tt-contact-content .tt-title-large,
  .tt-contact-content .tt-desc-mid {
    text-align: center;
  }
  .tt-contact-img img {
    margin: 0 auto;
  }
  .tt-contact-content .tt-actions {
    justify-content: center;
  }
}

.tt-footer {
  padding: 62px 0 40px;
  background: #fff;
  /* border-top: 1px solid #eee; */
  background-color: #002658;
}

.tt-footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.tt-footer-logo {
  max-width: 160px;
}

.tt-footer-col h4 {
  color: white;
}

.tt-footer-address p {
  color: white;
  margin: 30px 0 0 0;
}

.tt-footer-col ul {
  list-style: none;
  padding: 0;
}
.tt-footer-col ul li {
  margin-bottom: 28px;
}
.tt-footer-col ul li a {
  text-decoration: none;
  color: white;
  transition: color 0.3s;
}
.tt-footer-col ul li a:hover {
  color: var(--light-green);
}

.tt-footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 50px;
  font-size: 0.9rem;
}

.tt-footer-bottom a {
  color: white;
  text-decoration: none;
}

.bottom-right p {
  font-size: 0.9rem;
  color: white;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .tt-footer-col a {
    display: inline-block;
  }
  .tt-footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .tt-footer-grid {
    grid-template-columns: 1fr;
    text-align: left;
    margin: 0;
  }
  .tt-footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

.eidas-section#ei_s1_ {
  margin: 120px 0 0;
}

.eidas-section {
  margin: 160px 0 0;
}

.eidas-top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 35px;
}

.eidas-image-container {
  position: relative;
}

.eidas-image-container::after {
  content: "";
  background-image: url("../images/bottom-shape-1.png");
  width: 618px;
  height: 326px;
  position: absolute;
  bottom: -145px;
  background-size: 100%;
  z-index: 9;
  left: 50%;
  transform: translate(-50%, 0);
}

.eidas-col-content {
  flex: 0 0 47%;
}

.eidas-col-list {
  flex: 0 0 46%;
}

.eidas-col-content.full-width,
.eidas-col-list.full-width {
  flex: 0 0 100% !important;
  width: 100% !important;
  max-width: 100% !important;
}

.eidas-list-title {
  font-weight: 600;
  letter-spacing: -1.5px;
  margin-bottom: 28px;
}

.eidas-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.eidas-list-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  color: var(--primary-color);
}

.eidas-icon {
  width: 28px;
  height: 28px;
  object-fit: cover;
  flex: 0 0 28px;
  position: relative;
  top: 15px;
}

.eidas-full-img {
  height: 545px;
}

.eidas-bottom-full-section {
  margin: 112px 0 20px;
  height: 985px;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

.eidas-bottom-full-section.mb-0 {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .eidas-bottom-full-section {
    margin: 0;
    height: 400px;
  }
  .eidas-col-content {
    flex: 0 0 100%;
  }

  .eidas-col-list {
    flex: 0 0 100%;
  }
  .eidas-main-title {
    font-size: 32px;
  }

  .eidas-top-row {
    flex-direction: column;
    gap: 30px;
  }

  .eidas-section {
    padding: 40px 0;
    margin: 80px 0;
  }
}

.service-block {
  padding: 200px 0 0 0;
  margin: 0;
}

.service-block:last-child {
  padding-bottom: 75px;
}

.service-block .container {
  position: relative;
  flex-wrap: wrap;
}

.service-block.odd .container::after {
  content: "";
  background-image: url("../images/ser-icon1.png");
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -270px;
  background-repeat: no-repeat;
  left: 135px;
  opacity: 0.5;
}

.service-block.even .container::after {
  content: "";
  background-image: url("../images/ser-icon2.png");
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: -270px;
  background-repeat: no-repeat;
  left: 135px;
  opacity: 0.5;
}

.flex-row-reverse {
  flex-direction: row-reverse;
}

.service-image,
.service-content {
  flex: 0 0 46%;
  z-index: 2;
}

.service-image img {
  height: 351px;
}

.service-content .week {
  display: inline-block;
  padding: 1px 11px;
  background-color: #0066ff;
  color: #ffffff;
  font-size: 18px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.service-btn {
  margin-top: 25px;
}

.approch-content .service-title {
  font-size: 30px;
}

.approch-content .service-desc p br {
  display: none;
}

.approch-content .service-desc p > span {
  color: #0068f0;
  margin: 0 0 20px 0;
  display: block;
}

@media (max-width: 768px) {
  .approch-content .service-title {
    font-size: 25px;
  }
  .service-image,
  .service-content {
    flex: 0 0 100%;
    width: 100%;
  }
  .flex-row-reverse {
    flex-direction: column;
    text-align: center;
  }
  .btn-demo {
    justify-content: center;
  }
  .service-block {
    padding: 50px 0 0 0;
  }
  .service-content {
    text-align: left;
  }
}

@media (max-width: 991px) {
  .service-block {
    padding: 75px 0 0 0;
  }
  .service-image img {
    width: 100%;
    height: 300px;
    margin-bottom: 25px;
  }
}

.ser-benefits-section {
  padding: 40px 0;
  background-color: #fff;
}

.text-center {
  text-align: center;
}

.ser-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 118px;
}

.ser-benefit-item {
  display: flex;
  flex-direction: column;
}

.ser-benefit-header {
  display: flex;
  align-items: center;
  gap: 15px;
}

.ser-benefit-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 0px;
}

@media (max-width: 991px) {
  .service-block.odd .container::after,
  .service-block.even .container::after {
    display: none;
  }
  .ser-benefits-grid {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 50px;
  }
}

.about-story-section {
  padding: 100px 0 0;
  background-color: #fff;
}

.about-story-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-intro p {
  margin-bottom: 40px;
}

@media (max-width: 768px) {
  .about-story-title {
    font-size: 38px;
  }
  .about-intro p,
  .about-main-desc p {
    font-size: 16px;
  }
}

.about-join-section {
  padding: 100px 0;
  background-color: #fff;
}

.about-join-row {
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-join-col-img {
  flex: 1.2;
}

.about-join-col-content {
  flex: 1;
}

.join-img-rounded {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 991px) {
  .about-join-row {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }
  .join-title {
    font-size: 32px;
  }
  .btn-primary-blue {
    justify-content: center;
  }
}

.contact-page-section {
  padding: 80px 0;
  background: #fff;
}
.con-intro-desc {
  margin: 0 0 60px 0;
  color: #4a5568;
}

.inner-contact {
  width: 715px;
  max-width: 90%;
  margin: 0 auto;
}

.con-form-container br {
  display: none;
}

.tt-cf7-form-wrapper {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 15px;
  box-sizing: border-box;
}

.tt-cf7-row {
  margin-bottom: 10px;
  width: 100%;
}

.tt-cf7-grid-2 {
  display: flex;
  gap: 10px;
}

.tt-cf7-grid-2 .tt-cf7-field-group {
  flex: 1;
  min-width: 0;
}

.tt-cf7-grid-2 .tt-cf7-field-group p {
  margin-bottom: 0px;
}

.tt-cf7-field-group {
  position: relative;
  display: block;
  width: 100%;
}

.tt-cf7-input-icon {
  position: absolute;
  left: 24px;
  top: 11px;
  color: #0066ff;
  font-size: 18px;
  z-index: 2;
  pointer-events: none;
}

.tt-cf7-textarea-group .tt-cf7-input-icon {
  top: 12px;
  transform: none;
}

.tt-cf7-form-wrapper input[type="text"],
.tt-cf7-form-wrapper input[type="email"],
.tt-cf7-form-wrapper input[type="tel"],
.tt-cf7-form-wrapper textarea {
  width: 100% !important;
  box-sizing: border-box;
  padding: 16px 16px 16px 50px !important;
  font-size: 12px;
  color: #1a202c;
  background-color: #ffffff;
  border: 1px solid #cbd5e0;
  border-radius: 12px;
  outline: none;
  transition:
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  font-family: var(--title-font);
  letter-spacing: -1px;
}

input::placeholder,
textarea::placeholder {
  color: #000000 !important;
}

.tt-cf7-form-wrapper textarea {
  height: 150px;
  resize: vertical;
}

.tt-cf7-form-wrapper input:focus,
.tt-cf7-form-wrapper textarea:focus {
  border-color: #0066ff !important;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.wpcf7-not-valid-tip {
  font-size: 13px;
  margin-top: 5px;
  text-align: left;
}

.tt-cf7-form-wrapper input[type="submit"] {
  background-color: transparent !important;
  color: var(--primary-color);
  border: none !important;
  appearance: none;
  padding: 0px;
  line-height: 30px;
  font-family: var(--title-font);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.tt-cf7-submit-row.tt-btn-cta p {
  margin: 0px;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  .tt-cf7-grid-2 {
    flex-direction: column;
    gap: 10px;
  }

  .tt-cf7-form-wrapper input[type="text"],
  .tt-cf7-form-wrapper input[type="email"],
  .tt-cf7-form-wrapper input[type="tel"],
  .tt-cf7-form-wrapper textarea {
    font-size: 15px;
    padding: 14px 20px 14px 52px !important;
  }

  .tt-cf7-input-icon {
    left: 20px;
    font-size: 16px;
  }
}

.tt-btn-cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  background-color: #fff;
  border: none;
  border-radius: 50px;
  padding: 20px 20px 20px 70px;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.4s ease;
  min-height: 50px;
  font-family: var(--title-font);
  cursor: pointer;
}

.tt-btn-cta .btn-icon {
  position: absolute;
  left: 5px;
  width: 56px;
  height: 56px;
  background-color: #0068f0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 2;
}

.tt-btn-cta .btn-icon svg {
  font-size: 16px;
  width: 16px !important;
  height: 16px !important;
}

.tt-btn-cta .btn-text {
  color: var(--primary-color);
  font-weight: 400;
  transition: all 0.4s ease;
  z-index: 1;
  font-size: 14px;
  letter-spacing: -0.5px;
}

.tt-btn-cta:hover {
  padding: 20px 70px 20px 20px;
}

.tt-btn-cta:hover .btn-icon {
  left: calc(100% - 60px);
  color: var(--primary-color);
}

.tt-btn-cta.btn-reverse {
  background-color: transparent !important;
}

.tt-btn-cta.btn-reverse .btn-text {
  color: white !important;
}

.tt-btn-cta.btn-reverse .btn-icon {
  background-color: transparent !important;
}

.tt-btn-cta.btn-dark.sliding-btn-reverse {
  background-color: #0068f0;
}

.tt-btn-cta.btn-dark.sliding-btn-reverse:hover {
  background-color: var(--primary-color);
}

.tt-btn-cta.btn-dark.sliding-btn-reverse .btn-text {
  color: white;
}

.tt-btn-cta.btn-dark.sliding-btn-reverse .btn-icon {
  background-color: white;
}

.tt-btn-cta.btn-dark.sliding-btn-reverse .btn-icon svg {
  fill: #0068f0 !important;
}

.tt-btn-cta.btn-dark.sliding-btn-reverse:hover .btn-icon svg {
  fill: var(--primary-color) !important;
}

.tt-btn-cta.btn-dark.btn-reverse .btn-icon svg {
  fill: var(--primary-color) !important;
}

.tt-btn-cta.btn-dark.btn-reverse .btn-text {
  color: var(--primary-color) !important;
}

.tt-btn-cta.with-border {
  border: 1px solid #0068f0 !important;
}

.animated-svg {
  width: 80%;
}

.customAnimation.shape-right {
  flex: none;
  width: 2040px;
  height: auto;
  position: absolute;
  bottom: -1120px;
  right: -1160px;
  transform: rotate(-750deg);
  z-index: 4;
}

.customAnimation.shape-left {
  width: 1803px;
  height: auto;
  position: absolute;
  bottom: -400px;
  left: -1080px;
  transform: rotate(-16deg);
  z-index: 4;
}

.page-template-about-template .customAnimation.shape-left {
  bottom: 160px;
  flex: 0 0 auto;
  height: auto;
  left: -840px;
  position: absolute;
  width: 1800px;
  transform: rotate(-96deg);
}

.page-template-about-template .customAnimation.shape-right {
  bottom: -640px;
  flex: 0 0 auto;
  height: auto;
  position: absolute;
  right: -1200px;
  width: 1800px;
  transform: rotate(-135deg);
}

.page-template-contact-template .customAnimation.shape-left {
  bottom: -96px;
  flex: 0 0 auto;
  height: auto;
  left: -1200px;
  position: absolute;
  width: 1800px;
  transform: rotate(-150deg);
}

.page-template-contact-template .customAnimation.shape-right {
  bottom: 136px;
  flex: 0 0 auto;
  height: auto;
  position: absolute;
  right: -920px;
  width: 2040px;
  transform: rotate(-675deg);
}

.shape-bottom-glow {
  width: 710px;
  height: 710px;
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
  bottom: -450px;
}

.hero-eidas::after {
  content: "";
  background: #000000;
  background: linear-gradient(
    0deg,
    rgba(0, 0, 0, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  width: 100%;
  position: absolute;
  height: 100%;
  bottom: 0;
  z-index: 1;
}

.flowing-path {
  fill: none;
  animation: flow 2s linear infinite;
}
@keyframes flow {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.flowing-path-new {
  animation: flow-new 3s linear infinite;
}

@keyframes flow-new {
  from {
    stroke-dashoffset: 20;
  }
  to {
    stroke-dashoffset: 0;
  }
}

.single main {
  padding: 100px 0 0 0;
}

.single .tt-header {
  background-color: #0c111d;
}

.single main h1 {
  color: var(--primary-color);
  margin: 50px 0;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.single main .post-thumbnail img {
  height: 500px;
  object-position: top;
}

@media screen and (max-width: 991px) {
  .customAnimation.shape-left {
    transform: rotate(-16deg);
    width: 1600px;
  }
  .customAnimation.shape-right {
    width: 1600px;
    bottom: -920px;
    right: -920px;
    transform: rotate(-750deg);
  }
  .page-template-pagesabout-template-php .customAnimation.shape-left {
    bottom: 320px;
    left: -840px;
    width: 1600px;
    transform: rotate(-96deg);
  }
  .page-template-pagesabout-template-php .customAnimation.shape-right {
    bottom: -800px;
    right: -1120px;
    width: 1600px;
    transform: rotate(-135deg);
  }
  .page-template-contact-template .customAnimation.shape-left {
    bottom: -40px;
    left: -1168px;
    width: 1600px;
    transform: rotate(-135deg);
  }
  .page-template-contact-template .customAnimation.shape-right {
    bottom: -200px;
    right: -1080px;
    width: 1600px;
    transform: rotate(-675deg);
  }
  section {
    margin: 50px 0;
  }
  .tt-title-large {
    max-width: 100%;
  }
}

.js-typewriter::after {
  content: "|";
  animation: js-blink 0.8s step-end infinite;
  margin-left: 2px;
  color: #0056b3;
}

@keyframes js-blink {
  from,
  to {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}

/* Component Root Container */
.tt-comparison-section {
  /* padding: 100px 0; */
  background-color: #ffffff;
  font-family: inherit;
  overflow: hidden;
}

/* Header Text Alignments */
.tt-comp-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 70px auto;
}

.tt-comp-main-title {
  /* font-size: 42px;
    color: #003366;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2; */
}

.tt-comp-subtitle {
  /* font-size: 16px;
    color: #667085;
    line-height: 1.6; */
}

/* Flex Grid Structure */
.tt-comp-grid {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.tt-comp-column {
  flex: 1;
  min-width: 0;
}

/* Modern Card Wrapper Background Treatment */
.tt-track-modern .tt-comp-card-wrapper {
  background-color: #9cfcf63b;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(0, 102, 255, 0.03);
}

.tt-track-traditional {
  padding: 24px 0;
}

/* Column Header Layouts */
.tt-track-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.tt-track-des {
  margin-bottom: 35px;
}

.tt-track-traditional .tt-track-des p {
  color: #0f151780;
}

.tt-track-title {
  /*font-size: 24px;
    font-weight: 700; */
}

.tt-track-traditional .tt-track-title {
  color: #0f151780;
  margin: 0;
}
.tt-track-modern .tt-track-title {
  color: #003366;
  margin: 0;
}

/* Status Labels & Badges */
.tt-track-tag {
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 15px;
}

.tt-track-traditional .tt-track-tag {
  background-color: #0f151780;
  color: #ffffff;
}

.tt-track-modern .tt-track-tag {
  background-color: #0066ff;
  color: #ffffff;
  min-width: 75px;
}

.tt-track-modern .tt-node-desc {
  color: #0f1517;
}

/* Timeline Layout Component Engine */
.tt-timeline-wrapper {
  position: relative;
  padding-left: 35px;
}

.tt-timeline-axis-line {
  position: absolute;
  left: 11px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  height: 88%;
}

.tt-track-traditional .tt-timeline-axis-line {
  background-color: #e4e7ec;
}
.tt-track-modern .tt-timeline-axis-line {
  background-color: var(--primary-color);
}

.tt-timeline-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* Timeline Steps/Nodes */
.tt-timeline-node {
  position: relative;
}

.tt-node-marker {
  position: absolute;
  left: -35px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #ffffff;
  box-sizing: border-box;
  z-index: 2;
}

.tt-track-traditional .tt-node-marker {
  border: 3px solid #0f151780;
}
.tt-track-modern .tt-node-marker {
  border: 4px solid var(--primary-color);
}

.tt-node-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.tt-node-label {
  font-size: 18px;
  letter-spacing: -0.9px;
  margin: 0px;
  font-weight: normal;
}

.tt-track-traditional .tt-node-label {
  color: #0f151780;
}
.tt-track-modern .tt-node-label {
  color: #003366;
}

.tt-node-tag {
  font-size: 14px;
  padding: 5px 8px;
  border-radius: 6px;
  line-height: 15px;
}

.tt-track-traditional .tt-node-tag {
  background-color: #0f151780;
  color: #ffffff;
}
.tt-track-modern .tt-node-tag {
  background-color: #0066ff;
  color: #ffffff;
}

.tt-node-desc {
  font-size: 14px;
  line-height: 1.5;
  color: #0f151780;
  margin: 0;
}

/* Responsive Adaptive Viewport Rules */
@media (max-width: 991px) {
  .tt-comp-grid {
    flex-direction: column;
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .tt-comp-main-title {
    font-size: 32px;
  }
  .tt-track-modern .tt-comp-card-wrapper {
    padding: 25px 20px;
  }
}

/* Container Box & Global Section Wrappers */
.tt-industry-cta-section {
  /* padding: 30px 0 80px 0; */
  background-color: #ffffff;
}

/* Light Accent Display Card Grid */
.tt-industry-cta-card {
  background-color: #9cfcf63b;
  border-radius: 24px;
  padding: 45px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.tt-ind-cta-action .tt-btn-cta.btn-reverse .btn-text {
  color: var(--primary-color) !important;
}

.tt-ind-cta-action .tt-btn-cta .btn-icon svg {
  fill: var(--primary-color) !important;
}

/* Structural Content Flex Alignment */
.tt-ind-cta-content {
  flex: 1;
  max-width: 70%;
}

/* Typography Design Hierarchy */
.tt-ind-cta-title {
  /* font-size: 32px;
    color: #003366; 
    font-weight: 600;
    margin: 0 0 14px 0;
    line-height: 1.25; */
}

.tt-ind-cta-desc {
  /* font-size: 16px;
    color: #1a202c;
    line-height: 1.6;
    margin: 0; */
}

/* Action Field & Specialized Pill Button Components */
.tt-ind-cta-action {
  flex-shrink: 0;
}

.tt-ind-cta-btn {
  /* display: inline-flex;
    align-items: center;
    gap: 16px;
    background-color: #ffffff;
    border: 1px solid #e4e7ec;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.02); */
}

.tt-ind-cta-label {
  font-size: 15px;
  font-weight: 700;
  color: #003366;
  transition: color 0.3s ease;
}

.tt-ind-cta-icon {
  /* display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    color: #0066ff; 
    transition: transform 0.3s ease; */
}

/* Premium Component Hover Dynamics */
.tt-ind-cta-btn:hover {
  /* background-color: #ffffff;
    border-color: #0066ff;
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.08);
    transform: translateY(-2px); */
}

.tt-ind-cta-btn:hover .tt-ind-cta-icon {
  /* transform: translateX(4px); Clean interactive nudge animation */
}

/* Mobile & Tablet Responsive Layout Logic Overrides */
@media screen and (max-width: 991px) {
  .tt-industry-cta-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    padding: 40px 35px;
  }

  .tt-ind-cta-content {
    max-width: 100%;
  }

  .tt-ind-cta-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 576px) {
  .tt-industry-cta-card {
    padding: 30px 20px;
    border-radius: 16px;
  }

  .tt-ind-cta-title {
    font-size: 22px;
  }

  .tt-ind-cta-desc {
    font-size: 15px;
  }

  .tt-ind-cta-btn {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

/* Core Section Wrapping */
.tt-offers-section {
  /* padding: 100px 0; */
  background-color: #ffffff;
}

/* Master Centered Header Elements */
.tt-offers-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 80px auto;
}

.tt-offers-main-title {
  /* font-size: 42px;
    color: #003366; 
    font-weight: 700;
    margin: 0 0 18px 0;
    letter-spacing: -0.5px; */
}

.tt-offers-main-subtitle {
  /* font-size: 17px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0; */
}

/* Row & Component Grid Mechanics */
.tt-offers-grid-container {
  display: flex;
  flex-direction: column;
  gap: 100px; /* Clean tracking gap between feature blocks */
}

.tt-offers-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Alternating directional mapping hook */
.tt-row-reverse {
  flex-direction: row-reverse;
}

.tt-offers-col-text {
  flex: 0 0 46%;
  max-width: 46%;
}

.tt-offers-col-media {
  flex: 0 0 48%;
  max-width: 48%;
}

/* Dynamic Pill Badges */
.tt-offers-badge {
  display: inline-block;
  padding: 2px 11px;
  background-color: #0068f0;
  color: #ffffff;
  font-size: 14px;
  border-radius: 6px;
  margin-bottom: 20px;
}

.tt-offers-badge.badge-alt {
  /* background-color: #e6f7ff;
    color: #0088ff; */
}

/* Local Text Layout Blocks */
.tt-offers-heading {
  font-size: 34px;
  /* color: #003366;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px; */
}

.tt-offers-desc {
  /* font-size: 16px;
    line-height: 1.6; */
  margin: 0 0 28px 0;
}

/* Interactive Clean Check Vector Bullet System */
.tt-offers-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-offers-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.tt-list-icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  background-color: transparent;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  border: 1px solid #0066ff;
}

.tt-list-icon svg {
  width: 12px;
  height: 12px;
}

.tt-list-text {
  /* font-size: 15px;
    color: #1a202c; */
  line-height: 1.5;
}

/* Premium Image Asset Frame Wrapper */
.tt-offers-img-wrapper {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.tt-offers-img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.tt-offers-img-wrapper:hover img {
  transform: scale(1.02); /* Crisp card level interaction physics */
}

/* Media Query Blueprint Adapters */
@media screen and (max-width: 991px) {
  .tt-offers-section {
    padding: 70px 0;
  }
  .tt-offers-main-title {
    font-size: 34px;
  }
  .tt-offers-row,
  .tt-row-reverse {
    flex-direction: column;
    gap: 40px;
  }
  .tt-offers-col-text,
  .tt-offers-col-media {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tt-offers-grid-container {
    gap: 70px;
  }
  .tt-offers-heading {
    font-size: 28px;
  }
}

@media screen and (max-width: 576px) {
  .tt-offers-main-title {
    font-size: 28px;
  }
  .tt-offers-heading {
    font-size: 24px;
  }
  .tt-offers-img-wrapper {
    border-radius: 18px;
  }
}

/* Section & Master Card Wrapper */
.tt-infra-section {
  padding: 0;
  background-color: #ffffff;
}

.tt-infra-card {
  background-color: #0068f0;
  border-radius: 24px;
  padding: 40px;
}

/* White Context Mini Badge Component */
.tt-infra-badge {
  display: inline-block;
  padding: 1px 10px;
  background-color: white;
  color: var(--primary-color);
  font-size: 15px;
  border-radius: 6px;
  margin-bottom: 24px;
}

/* Layout Text Scaling Systems */
.tt-infra-title {
  color: #ffffff;
  font-size: 32px;
  margin: 0 0 20px 0;
  letter-spacing: -1px;
}

.tt-infra-desc {
  color: #9cfcf6;
  font-size: 18px;
  margin: 0 0 20px 0;
}

/* Inverted Icon Checklist System */
.tt-infra-list {
  list-style: none;
  padding: 0;
  margin: 0 0 45px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tt-infra-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-infra-icon {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border: 1px solid #ffffff;
  border-radius: 50%;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-infra-icon svg {
  width: 11px;
  height: 11px;
}

.tt-infra-text {
  color: #ffffff;
}

.tt-infra-actions {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tt-infra-actions .tt-btn-cta.sliding-btn-reverse .btn-icon {
  background-color: transparent;
}

.tt-infra-actions .tt-btn-cta.sliding-btn-reverse .btn-icon svg {
  fill: var(--primary-color) !important;
}

/* Button 1: Pristine White Pill Component */
/* .tt-infra-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background-color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tt-infra-btn-primary .tt-action-label {
  font-size: 15px;
  font-weight: 700;
  color: #003366;
}

.tt-infra-btn-primary .tt-action-chevron {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #0066ff;
  transition: transform 0.3s ease;
}

.tt-infra-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  background-color: #f5faff;
}

.tt-infra-btn-primary:hover .tt-action-chevron {
  transform: translateX(3px);
} */

/* Button 2: Floating Inverted Text Link Option */
/* .tt-infra-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none !important;
  transition: opacity 0.3s ease;
}

.tt-infra-btn-secondary .tt-action-label-light {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.tt-infra-btn-secondary .tt-action-chevron-light {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.8);
  transition: transform 0.3s ease;
}

.tt-infra-btn-secondary:hover {
  opacity: 0.95;
}

.tt-infra-btn-secondary:hover .tt-action-label-light {
  border-color: #ffffff;
}

.tt-infra-btn-secondary:hover .tt-action-chevron-light {
  transform: translateX(4px);
} */

/* Media Query Layout Overrides */
@media screen and (max-width: 991px) {
  .tt-infra-card {
    padding: 45px 40px;
  }
  .tt-infra-title {
    font-size: 28px;
  }
}

@media screen and (max-width: 767px) {
  .tt-infra-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .tt-infra-btn-primary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 576px) {
  .tt-infra-card {
    padding: 35px 24px;
    border-radius: 18px;
  }
  .tt-infra-title {
    font-size: 22px;
  }
  .tt-infra-desc {
    font-size: 15px;
  }
}

.tt-benefits-showcase {
  padding: 120px 0;
  background-color: var(--light-green);
  margin-bottom: 0px;
}

.tt-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Intro Header */
.tt-section-intro {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 90px auto;
}

.tt-main-headline {
  /* font-size: 46px;
  font-weight: 700;
  color: #004494; 
  line-height: 1.22;
  margin: 0 0 28px 0;
  letter-spacing: -0.6px; */
}

.tt-sub-headline {
  /* font-size: 16px;
  color: #4a5568;
  line-height: 1.65; */
  max-width: 610px;
  margin: 0 auto;
}

/* 3 Column Feature Grid Deck */
.tt-cards-deck {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 90px;
}

.tt-card-box {
  /* flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 16px; */
}

.tt-icon-element {
  display: flex;
  align-items: start;
  gap: 5px;
  margin-bottom: 15px;
}

.tt-card-icon {
  display: flex;
  align-items: center;
  flex: 0 0 40px;
}

.tt-card-icon img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.tt-icon-element svg {
  width: 100%;
  height: 100%;
  display: block;
}

.tt-card-content {
  /* flex: 1; */
}

.tt-card-heading {
  /* font-size: 22px;
  font-weight: 600;
  color: #004494;
  line-height: 1.35;
  margin: 0 0 14px 0; */
}

.tt-card-paragraph {
  /* font-size: 15px;
  color: #2d3748;
  line-height: 1.6;
  margin: 0;
  */
}

/* Isolated Compliance White Panel */
.tt-compliance-footer {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 25px rgba(0, 44, 94, 0.02);
}

.tt-compliance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
}

.tt-compliance-block {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.tt-label-text {
  font-size: 18px;
  color: var(--primary-color);
}

.tt-pill-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.tt-solid-pill {
  background-color: #0066ff;
  color: #ffffff;
  font-size: 18px;
  padding: 1px 9px;
  border-radius: 6px;
}

@media screen and (max-width: 1140px) {
  .tt-compliance-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .tt-compliance-block {
    width: 100%;
    justify-content: space-between;
  }
}

@media screen and (max-width: 991px) {
  .tt-benefits-showcase {
    padding: 85px 0;
  }
  .tt-main-headline {
    font-size: 36px;
  }
  .tt-cards-deck {
    flex-direction: column;
    gap: 45px;
  }
  .tt-card-box {
    max-width: 100%;
  }
}

@media screen and (max-width: 650px) {
  .tt-container {
    padding: 0 24px;
  }
  .tt-compliance-footer {
    padding: 30px 24px;
  }
  .tt-compliance-block {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .tt-compliance-block {
    justify-content: flex-start;
  }
}

@media screen and (max-width: 480px) {
  .tt-main-headline {
    font-size: 28px;
  }
  .tt-card-heading {
    font-size: 20px;
  }
  .tt-pill-group {
    flex-wrap: wrap;
  }
}

/* ==========================================================================
   OUTCOMES & IMPLEMENTATIONS STYLES (MAPPED TO image_b528e0.jpg)
   ========================================================================== */
.tt-outcomes-section {
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
  margin: 0;
}

.tt-outcomes-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

.tt-outcomes-split-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}

/* Left Column Content Layout */
.tt-outcomes-left {
  flex: 0 0 52%;
  max-width: 52%;
}

.tt-outcomes-headline {
  color: #ffffff;
  /* font-size: 44px;
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px; */
}

.tt-outcomes-summary {
  color: white;
  /*max-width: 560px;
  font-size: 16px;
  line-height: 1.6;
  margin: 0 0 48px 0; */
}

/* Metrics Dashboard Grid Layout */
.tt-outcomes-metrics-grid {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 50px;
}

.tt-metric-item {
  /* flex: 1;
   border-left: 1px solid rgba(255, 255, 255, 0.15);
  padding-left: 20px; */
}

.tt-metric-item:first-child {
  border-left: none;
  padding-left: 0;
}

.tt-metric-stat {
  font-size: 28px;
  /* color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  letter-spacing: -0.2px; */
}

.tt-metric-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

.tt-outcomes-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tt-outcomes-actions .tt-btn-cta.btn-reverse {
  border: 1px solid white;
}

/* .tt-btn-pill-primary {
  display: inline-flex;
  align-items: center;
  flex-direction: row-reverse;
  gap: 12px;
  background-color: #ffffff;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.tt-btn-pill-primary .tt-btn-text {
  font-size: 14px;
  font-weight: 600;
  color: #0b111a;
}

.tt-btn-pill-primary .tt-btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background-color: #0066ff;
  color: #ffffff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.tt-btn-pill-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.1);
  background-color: #f8fafc;
}

.tt-btn-pill-primary:hover .tt-btn-icon {
  transform: scale(1.05) translateX(1px);
}

.tt-btn-pill-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 28px;
  border-radius: 100px;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.tt-btn-pill-secondary .tt-btn-text-light {
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
}

.tt-btn-pill-secondary .tt-btn-icon-light {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  transition: transform 0.3s ease;
}

.tt-btn-pill-secondary:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
}

.tt-btn-pill-secondary:hover .tt-btn-icon-light {
  transform: translateX(3px);
  color: #ffffff;
} */

.tt-outcomes-right {
  flex: 0 0 42%;
  max-width: 42%;
}

.tt-testimonial-card {
  width: 100%;
  border-radius: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.tt-testimonial-inner {
  padding: 50px;
  box-sizing: border-box;
  backdrop-filter: blur(1px);
}

.tt-quote-mark {
  color: white;
  margin-bottom: 24px;
}

.tt-testimonial-body {
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
  margin: 0 0 28px 0;
}

.tt-testimonial-profile {
  margin-bottom: 24px;
}

.tt-profile-name {
  font-size: 20px;
  color: #ffffff;
  margin: 0 0 4px 0;
  letter-spacing: -0.5px;
}

.tt-profile-role {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.tt-testimonial-meta {
  font-size: 19px;
  font-style: italic;
  color: white;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
  line-height: 26px;
}

@media screen and (max-width: 1100px) {
  .tt-outcomes-split-wrapper {
    flex-direction: column;
    gap: 60px;
  }
  .tt-outcomes-left,
  .tt-outcomes-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .tt-outcomes-summary {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .tt-outcomes-section {
    padding: 80px 0;
  }
  .tt-outcomes-container {
    padding: 0 24px;
  }
  .tt-outcomes-headline {
    font-size: 32px;
  }
  .tt-outcomes-metrics-grid {
    flex-direction: column;
    gap: 24px;
  }
  .tt-metric-item {
    border-left: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 0;
    padding-bottom: 16px;
    width: 100%;
  }
  .tt-metric-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .tt-outcomes-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .tt-btn-pill-primary,
  .tt-btn-pill-secondary {
    width: 100%;
    justify-content: center;
    box-sizing: border-box;
  }
  .tt-testimonial-inner {
    padding: 35px 25px;
  }
}

.inner-hero .hero-content {
  max-width: 100%;
}

.inner-hero.hero-eidas {
  height: 60vh;
}

.sol-intro-section,
.sol-infra-section {
  position: relative;
  padding: 50px 0 0;
  background-color: #ffffff;
}

.sol-container,
.sol-onboard-container,
.sol-qualify-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Decorative Wave Graph Styling behind headline */
.sol-wave-decor {
  /* position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 120px;
  z-index: 1;
  opacity: 0.35;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 40px,
    #a5f3fc 41px,
    #a5f3fc 43px,
    transparent 44px
  );
  background-size: 30px 60px; */
}

/* Header Elements Stack */
.sol-header,
.tt-onboard-header-block,
.tt-qualify-header-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px auto;
}

.sol-badge,
.tt-onboard-pill-badge,
.tt-qualify-pill-badge,
.tt-sign-pill-badge {
  display: inline-block;
  padding: 1px 11px;
  background-color: #0066ff;
  color: #ffffff;
  font-size: 18px;
  border-radius: 8px;
  margin-bottom: 32px;
}

.sol-main-title {
  /* font-size: 52px;
  font-weight: 700;
  color: #003380; 
  line-height: 1.18;
  margin: 0 0 32px 0;
  letter-spacing: -1px; */
}

.sol-main-desc {
  /* font-size: 16px;
  color: #4a5568;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto; */
}

/* Split Column Comparison Dashboard */
.sol-split-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
  /* border-top: 1px solid #edf2f7;
  padding-top: 60px; */
}

.sol-panel-left {
  flex: 0 0 48%;
  max-width: 48%;
}

.sol-panel-right {
  flex: 0 0 46%;
  max-width: 46%;
}

.tt-panel-label-blue,
.tt-onboard-col-label,
.tt-qualify-col-label,
.tt-sign-col-label {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 24px 0;
  letter-spacing: -0.5px;
}

/* Left Content Bold Block */
.tt-panel-bold-statement,
.tt-onboard-bold-statement,
.tt-qualify-bold-statement,
.tt-sign-bold-statement {
  font-size: 20px;
  color: #000000;
  line-height: 1.45;
  margin: 0;
}

/* Right Content Value Checklist */
.sol-value-list,
.tt-onboard-check-list,
.tt-qualify-check-list,
.tt-sign-check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sol-value-list li,
.tt-onboard-check-list li,
.tt-qualify-check-list li,
.tt-sign-check-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-value-check-icon,
.tt-onboard-icon-circle,
.tt-qualify-icon-circle,
.tt-qualify-icon-circle,
.tt-sign-icon-circle {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-value-check-icon svg,
.tt-onboard-icon-circle svg,
.tt-qualify-icon-circle svg,
.tt-qualify-icon-circle svg,
.tt-sign-icon-circle svg {
  width: 15px;
  height: 15px;
}

.tt-value-item-text {
  /* font-size: 15px;
  color: #2d3748;
  font-weight: 400;
  line-height: 1.5; */
}

@media screen and (max-width: 991px) {
  .sol-intro-section,
  .sol-infra-section,
  .sol-features-section,
  .sol-qualify-features-section {
    padding: 0;
  }

  .sol-features-container,
  .tt-features-container,
  .tt-qfeatures-container,
  .tt-sfeatures-container {
    padding: 25px;
  }
  /* .sol-intro-section {
     padding: 90px 0 70px 0; 
  } */
  /* .sol-main-title {
    font-size: 38px;
  } */
  .sol-split-grid {
    flex-direction: column;
    gap: 50px;
    padding-top: 45px;
  }
  .sol-panel-left,
  .sol-panel-right {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .sol-header {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 600px) {
  .sol-container {
    padding: 0 24px;
  }
  /* .sol-main-title {
    font-size: 28px;
  } */
  .tt-panel-bold-statement {
    font-size: 17px;
  }
  .tt-panel-label-blue {
    font-size: 19px;
    margin-bottom: 16px;
  }
}

.sol-features-section {
  /* padding: 100px 0;
  background-color: var(--light-green); */
}

.sol-features-container,
.tt-features-container,
.tt-qfeatures-container,
.tt-sfeatures-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 80px 40px;
  box-sizing: border-box;
  background-color: var(--light-green);
}

/* 2-Column Responsive CSS Grid Frame */
.sol-features-grid,
.tt-features-cards-grid,
.tt-qfeatures-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

/* Individual Feature Card Cards Block */
.sol-feature-card,
.tt-infra-item-card,
.tt-features-item-card,
.tt-qfeatures-item-card,
.tt-sfeatures-item-card {
  background-color: #ffffff;
  border-radius: 24px; /* Generous soft corner treatment */
  padding: 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  box-shadow: 0 4px 20px rgba(0, 51, 128, 0.015);
  transition:
    transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.4s ease;
}

.sol-feature-card:hover,
.tt-infra-item-card:hover,
.tt-features-item-card:hover,
.tt-qfeatures-item-card:hover,
.tt-sfeatures-item-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(0, 51, 128, 0.04);
}

/* Icon Asset Dimensions Layout */
.tt-sf-card-icon,
.tt-infra-card-icon,
.tt-features-card-icon,
.tt-qfeatures-card-icon,
.tt-sfeatures-card-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0044cc; /* Default line icon accent base coloring */
}

.tt-sf-card-icon img,
.tt-infra-card-icon img,
.tt-features-card-icon img,
.tt-qfeatures-card-icon img,
.tt-sfeatures-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Icon fallback if field value returns empty */
.tt-sf-icon-blank {
  border: 2px dashed #e2e8f0;
  border-radius: 6px;
}

/* Text Typography Block Alignment */
.tt-sf-card-content {
  width: 100%;
}

.tt-sf-card-title,
.tt-infra-card-title,
.tt-features-card-title,
.tt-qfeatures-card-title,
.tt-sfeatures-card-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.tt-sf-card-description {
  /* font-size: 15px;
  color: #3f4e66;
  line-height: 1.6;
  margin: 0; */
}

@media screen and (max-width: 991px) {
  /* .sol-features-section {
    padding: 80px 0;
  } */
  .sol-features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .sol-feature-card {
    padding: 36px;
  }
}

@media screen and (max-width: 575px) {
  /* .sol-features-container {
    padding: 0 24px;
  } */
  .sol-feature-card {
    padding: 32px 24px;
    border-radius: 18px;
  }
  .tt-sf-card-title {
    font-size: 19px;
    margin-bottom: 12px;
  }
  .tt-sf-card-icon {
    margin-bottom: 20px;
  }
}

.sol-infra-section {
  position: relative;
  padding: 80px 0;
  background-color: var(--light-green);
}

.tt-infra-container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
  position: relative;
  z-index: 2;
}

/* Centralized top blueprint arc design frame accent */
.tt-infra-wave-decor {
  /* position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 180px;
  height: 80px;
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 35px,
    #22d3ee 36px,
    #22d3ee 38px,
    transparent 39px
  );
  background-size: 24px 48px; */
}

/* Headings Layer styling alignment */
.tt-infra-intro-header {
  text-align: center;
  margin-bottom: 70px;
}

.tt-infra-heading {
  /* font-size: 48px;
  font-weight: 700;
  color: #004494; 
  line-height: 1.2;
  margin: 0 0 24px 0;
  letter-spacing: -0.8px; */
}

.tt-infra-badge-label {
  /* font-size: 15px;
  color: #4a5568;
  font-weight: 500;
  margin: 0; */
}

/* 3-Column Uniform Block Grid Frame */
.tt-infra-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 60px;
}

/* Structural White Grid Cards Component */
.tt-infra-item-card {
  /*background-color: #ffffff;
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 20px rgba(0, 44, 148, 0.01); */
}

.tt-infra-card-icon {
  /* width: 28px;
  height: 28px;
  margin-bottom: 24px;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-infra-card-icon img {
  /*  width: 100%;
  height: 100%;
  object-fit: contain; */
}

.tt-infra-card-body {
  width: 100%;
}

.tt-infra-card-title {
  /*  font-size: 20px;
  font-weight: 600;
  color: #004494;
  line-height: 1.35;
  margin: 0 0 14px 0; */
}

.tt-infra-card-desc {
  /* font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
  margin: 0; */
}

/* Bottom Panel: Deep Electric Blue Accent Framework */
.tt-infra-usecase-panel,
.tt-features-usecase-panel,
.tt-qfeatures-usecase-panel,
.tt-sfeatures-usecase-panel {
  background-color: #0066ff; /* Rich solid electric primary choice */
  border-radius: 16px;
  padding: 40px;
  box-sizing: border-box;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.15);
}

.tt-usecase-title,
.tt-feat-usecase-title,
.tt-qfeat-usecase-title,
.tt-sfeat-usecase-title {
  font-size: 32px;
  color: #ffffff;
}

/* Balanced Double Column Flex Grid for Use Cases */
.tt-usecase-flex-list,
.tt-feat-usecase-flex-list,
.tt-qfeat-usecase-flex-list,
.tt-sfeat-usecase-flex-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 10px;
}

.tt-usecase-list-item,
.tt-feat-usecase-list-item,
.tt-qfeat-usecase-list-item,
.tt-sfeat-usecase-list-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tt-usecase-check,
.tt-feat-usecase-check,
.tt-qfeat-usecase-check,
.tt-sfeat-usecase-check {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-usecase-check svg,
.tt-feat-usecase-check svg,
.tt-qfeat-usecase-check svg,
.tt-sfeat-usecase-check svg {
  width: 15px;
  height: 15px;
}

.tt-usecase-text {
  /* font-size: 14.5px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95); */
}

/* ==========================================================================
   BREAKPOINTS SYSTEMS MEDIA QUERY STYLES
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .tt-infra-cards-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Step down to double column grid maps */
    gap: 24px;
  }
}

@media screen and (max-width: 850px) {
  .tt-usecase-flex-list {
    grid-template-columns: 1fr; /* Use cases collapse to structural simple rows list */
    row-gap: 16px;
  }
  .tt-infra-usecase-panel {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  /* .sol-infra-section {
    padding: 85px 0;
  } */
  .tt-infra-heading {
    font-size: 34px;
  }
  .tt-infra-cards-grid {
    grid-template-columns: 1fr; /* Core card layers collapse fully vertical */
    gap: 20px;
  }
  .tt-infra-item-card {
    padding: 32px;
  }
}

@media screen and (max-width: 500px) {
  .tt-infra-container {
    padding: 0 24px;
  }
  .tt-infra-usecase-panel {
    padding: 36px 24px;
    border-radius: 12px;
  }
  .tt-usecase-title {
    font-size: 22px;
    margin-bottom: 24px;
  }
  .tt-infra-heading {
    font-size: 28px;
  }
}

.sol-onboard-section {
  /* padding: 120px 0;
  background-color: #ffffff; 
  font-family:
    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif; */
}

.sol-onboard-container {
  /* width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box; */
}

/* Center Heading Component Styles */
.tt-onboard-header-block {
  /* text-align: center;
  max-width: 740px;
  margin: 0 auto 90px auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Solid Top Floating Identifier Pill */
.tt-onboard-pill-badge {
  /* background-color: #0066ff; 
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  text-transform: capitalize;
  margin-bottom: 36px;
  display: inline-block;
  letter-spacing: 0.2px; */
}

/* Central Stacked Headline Elements Box */
.tt-onboard-title-wrapper {
  position: relative;
  /* margin-bottom: 32px; */
  display: inline-block;
}

.tt-onboard-main-title {
  /* font-size: 52px;
  font-weight: 700;
  color: #003fa3; 
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
  position: relative;
  z-index: 2; */
}

/* Dynamic underlying mint curve graphic layout */
.tt-onboard-wave-graphic {
  /* position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 60px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 28px,
    #22d3ee 29px,
    #22d3ee 31px,
    transparent 32px
  );
  background-size: 20px 40px; */
}

/* Intermediate Paragraph Copy */
.tt-onboard-summary-desc {
  /* font-size: 16.5px;
  color: #334155;
  line-height: 1.6;
  margin: 0; */
}

/* Bottom Split Matrix Row Layout */
.tt-onboard-split-row {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr; /* Keeps left side distinct and prevents text overcrowding */
  column-gap: 90px;
  border-top: 1px solid transparent; /* Utility reference for spacing alignment maps */
}

.tt-onboard-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tt-onboard-col-label {
  /* font-size: 22px;
  font-weight: 600;
  color: #003fa3;
  margin: 0 0 28px 0;
  letter-spacing: -0.3px; */
}

/* Left Content Styles: Heavy High-Contrast Typography Focus */
.tt-onboard-bold-statement {
  /* font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.4px; */
}

/* Right Content Styles: Double-Checklist Layout Mapping */
.tt-onboard-check-list {
  /* list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%; */
}

.tt-onboard-check-item {
  /* display: flex;
  align-items: center;
  gap: 14px; */
}

.tt-onboard-icon-circle {
  /* flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #0066ff; 
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-onboard-icon-circle svg {
  /*   width: 10px;
  height: 10px; */
}

.tt-onboard-item-text {
  /* font-size: 15.5px;
  font-weight: 400;
  color: #334155;
  line-height: 1.4; */
}

@media screen and (max-width: 991px) {
  .sol-onboard-section {
    padding: 90px 0;
  }
  /* .tt-onboard-main-title {
    font-size: 42px;
  } */
  .tt-onboard-split-row {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .tt-onboard-header-block {
    margin-bottom: 60px;
  }
  .tt-onboard-col-label {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 575px) {
  .sol-onboard-container {
    padding: 0 24px;
  }
  /* .tt-onboard-main-title {
    font-size: 32px;
  } */
  .tt-onboard-bold-statement {
    font-size: 18px;
  }
  .tt-onboard-summary-desc {
    font-size: 15px;
  }
}

.sol-features-section,
.sol-qualify-features-section {
  position: relative;
  padding: 0;
}

.tt-features-container {
  /* width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box; */
}

/* 2x2 Uniform Feature Cards Layout Grid */
.tt-features-cards-grid {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;  */
  margin-bottom: 60px;
}

/* Crisp White Feature Grid Cards */
.tt-features-item-card {
  /*  background-color: #ffffff;
  border-radius: 20px;
  padding: 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(0, 44, 148, 0.01); */
}

.tt-features-card-icon {
  /* width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: #005ce6;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-features-card-icon img {
  /*  width: 100%;
  height: 100%;
  object-fit: contain; */
}

.tt-features-card-body {
  width: 100%;
}

.tt-features-card-title {
  /* font-size: 22px;
  font-weight: 600;
  color: #003fa3; 
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px; */
}

.tt-features-card-desc {
  /* font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin: 0; */
}

/* Integrated Bottom Box Panel: Deep Electric Blue Block Layout */
.tt-features-usecase-panel {
  /* background-color: #0066ff; 
  border-radius: 16px;
  padding: 55px 60px;
  box-sizing: border-box;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.12); */
}

.tt-feat-usecase-title {
  /* font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 36px 0;
  letter-spacing: -0.4px; */
}

/* Balanced 2-Column Responsive List Matrix */
.tt-feat-usecase-flex-list {
  /* list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 22px; */
}

.tt-feat-usecase-list-item {
  /* display: flex;
  align-items: center;
  gap: 14px; */
}

.tt-feat-usecase-check {
  /* flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-feat-usecase-check svg {
  /* width: 9px;
  height: 9px; */
}

.tt-feat-usecase-text {
  /* font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95); */
}

/* Bottom Actions Row & Outlined Button Structure */
.tt-feat-usecase-action-row {
  display: flex;
  justify-content: flex-start;
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  padding-top: 36px;
}

.tt-feat-usecase-action-row a,
.tt-qfeat-usecase-action-row a,
.tt-sfeat-usecase-action-row a {
  border: 1px solid #ffffff;
}

.tt-feat-usecase-btn {
  /* display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    color 0.25s ease; */
}

.tt-feat-usecase-btn:hover {
  /* background-color: #ffffff;
  color: #0066ff; */
}

.tt-feat-btn-arrow {
  /* display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px; */
}

.tt-feat-btn-arrow svg {
  /* width: 100%;
  height: 100%; */
}

/* ==========================================================================
   BREAKPOINTS SYSTEMS MEDIA QUERY STYLES
   ========================================================================== */
@media screen and (max-width: 991px) {
  .tt-features-cards-grid {
    grid-template-columns: 1fr; /* Fallback stack layout for feature boxes */
    gap: 24px;
  }
  .tt-feat-usecase-flex-list {
    column-gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* .sol-features-section {
    padding: 60px 0 90px 0;
  } */
  .tt-features-item-card {
    padding: 36px;
  }
  .tt-features-usecase-panel {
    padding: 40px;
  }
  .tt-feat-usecase-flex-list {
    grid-template-columns: 1fr; /* Flattens checkboxes layout vertical */
    row-gap: 18px;
    margin-bottom: 32px;
  }
  .tt-feat-usecase-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 480px) {
  /* .tt-features-container {
    padding: 0 24px;
  } */
  .tt-features-item-card {
    padding: 32px 24px;
  }
  .tt-features-usecase-panel {
    padding: 36px 24px;
  }
  .tt-feat-usecase-btn {
    width: 100%;
    justify-content: center;
  }
}

.sol-qualify-section {
  /* padding: 120px 0;
  background-color: #ffffff; */
}

.sol-qualify-container {
  /* width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box; */
}

/* Center Heading Component Styles */
.tt-qualify-header-block {
  /* text-align: center;
  max-width: 780px;
  margin: 0 auto 90px auto; */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Solid Top Floating Identifier Pill */
.tt-qualify-pill-badge {
  /* background-color: #0066ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  text-transform: capitalize;
  margin-bottom: 36px;
  display: inline-block;
  letter-spacing: 0.2px; */
}

/* Central Stacked Headline Elements Box */
.tt-qualify-title-wrapper {
  position: relative;
  /* margin-bottom: 32px; */
  display: inline-block;
}

.tt-qualify-main-title {
  /* font-size: 52px;
  font-weight: 700;
  color: #003fa3; 
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
  position: relative;
  z-index: 2; */
}

/* Dynamic underlying mint curve graphic layout */
.tt-qualify-wave-graphic {
  /* position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 60px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 28px,
    #22d3ee 29px,
    #22d3ee 31px,
    transparent 32px
  );
  background-size: 20px 40px; */
}

/* Intermediate Paragraph Copy */
.tt-qualify-summary-desc {
  /* font-size: 16.5px;
  color: #334155;
  line-height: 1.6;
  margin: 0; */
}

/* Bottom Split Matrix Row Layout */
.tt-qualify-split-row {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  column-gap: 90px;
}

.tt-qualify-col {
  /* display: flex;
  flex-direction: column;
  align-items: flex-start; */
}

.tt-qualify-col-label {
  /* font-size: 22px;
  font-weight: 600;
  color: #003fa3;
  margin: 0 0 28px 0;
  letter-spacing: -0.3px; */
}

/* Left Content Styles: Heavy High-Contrast Typography Focus */
.tt-qualify-bold-statement {
  /* font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.4px; */
}

/* Right Content Styles: Double-Checklist Layout Mapping */
.tt-qualify-check-list {
  /* list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%; */
}

.tt-qualify-check-item {
  /* display: flex;
  align-items: center;
  gap: 14px; */
}

.tt-qualify-icon-circle {
  /* flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #0066ff;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-qualify-icon-circle svg {
  /* width: 10px;
  height: 10px; */
}

.tt-qualify-item-text {
  /* font-size: 15.5px;
  font-weight: 400;
  color: #334155;
  line-height: 1.4; */
}

@media screen and (max-width: 991px) {
  .sol-qualify-section {
    padding: 90px 0;
  }
  /* .tt-qualify-main-title {
    font-size: 42px;
  } */
  .tt-qualify-split-row {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .tt-qualify-header-block {
    margin-bottom: 60px;
  }
  .tt-qualify-col-label {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 575px) {
  .sol-qualify-container {
    padding: 0 24px;
  }
  /* .tt-qualify-main-title {
    font-size: 32px;
  } */
  .tt-qualify-bold-statement {
    font-size: 18px;
  }
  .tt-qualify-summary-desc {
    font-size: 15px;
  }
}

.sol-qualify-features-section {
  /*  position: relative;
  padding: 80px 0 120px 0;
  background-color: #f2fafc; /* Fine low-contrast theme layout canvas tint */
}

.tt-qfeatures-container {
  /* width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box; */
}

/* 2x2 Feature Layout Matrix */
.tt-qfeatures-cards-grid {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px; */
  margin-bottom: 60px;
}

/* Individual Feature Grid Box Elements */
.tt-qfeatures-item-card {
  /* background-color: #ffffff;
  border-radius: 20px;
  padding: 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(0, 44, 148, 0.01); */
}

.tt-qfeatures-card-icon {
  /* width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: #005ce6;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-qfeatures-card-icon img {
  /* width: 100%;
  height: 100%;
  object-fit: contain; */
}

.tt-qfeatures-card-body {
  width: 100%;
}

.tt-qfeatures-card-title {
  /* font-size: 22px;
  font-weight: 600;
  color: #003fa3; /* Intended core dark brand blue style 
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px; */
}

.tt-qfeatures-card-desc {
  /* font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin: 0; */
}

/* Solid Blue Use Case Wrapper Box */
.tt-qfeatures-usecase-panel {
  /* background-color: #0066ff;
  border-radius: 16px;
  padding: 55px 60px;
  box-sizing: border-box;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.12); */
}

.tt-qfeat-usecase-title {
  /* font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 36px 0;
  letter-spacing: -0.4px; */
}

/* Two-Track Dynamic Grid For List Elements */
.tt-qfeat-usecase-flex-list {
  /* list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 22px; */
}

.tt-qfeat-usecase-list-item {
  /* display: flex;
  align-items: center;
  gap: 14px; */
}

.tt-qfeat-usecase-check {
  /* flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-qfeat-usecase-check svg {
  /* width: 9px;
  height: 9px; */
}

.tt-qfeat-usecase-text {
  /* font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95); */
}

/* Action Trigger Border Button */
.tt-qfeat-usecase-action-row {
  display: flex;
  justify-content: flex-start;
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  padding-top: 36px;
}

/* .tt-qfeat-usecase-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.tt-qfeat-usecase-btn:hover {
  background-color: #ffffff;
  color: #0066ff;
}

.tt-qfeat-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.tt-qfeat-btn-arrow svg {
  width: 100%;
  height: 100%;
} */

@media screen and (max-width: 991px) {
  .tt-qfeatures-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tt-qfeat-usecase-flex-list {
    column-gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  /* .sol-qualify-features-section {
    padding: 60px 0 90px 0;
  } */
  .tt-qfeatures-item-card,
  .tt-qfeatures-usecase-panel {
    padding: 40px;
  }
  .tt-qfeat-usecase-flex-list {
    grid-template-columns: 1fr;
    row-gap: 18px;
    margin-bottom: 32px;
  }
  .tt-qfeat-usecase-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 480px) {
  /* .tt-qfeatures-container {
    padding: 0 24px;
  } */
  .tt-qfeatures-item-card {
    padding: 32px 24px;
  }
  .tt-qfeatures-usecase-panel {
    padding: 36px 24px;
  }
  .tt-qfeat-usecase-btn {
    width: 100%;
    justify-content: center;
  }
}

.sol-sign-section {
  /* padding: 120px 0;
  background-color: #ffffff; */
}

.sol-sign-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Center Heading Component Styles */
.tt-sign-header-block {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 90px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Solid Top Floating Identifier Pill */
.tt-sign-pill-badge {
  /* background-color: #0066ff;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 8px;
  text-transform: capitalize;
  margin-bottom: 36px;
  display: inline-block;
  letter-spacing: 0.2px; */
}

/* Central Stacked Headline Box */
.tt-sign-title-wrapper {
  position: relative;
  /* margin-bottom: 32px; */
  display: inline-block;
}

.tt-sign-main-title {
  /* font-size: 52px;
  font-weight: 700;
  color: #003fa3; /* Signature dark blue brand color match 
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
  position: relative;
  z-index: 2; */
}

/* Dynamic underlying mint curve graphic layout */
.tt-sign-wave-graphic {
  /* position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 260px;
  height: 60px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 28px,
    #22d3ee 29px,
    #22d3ee 31px,
    transparent 32px
  );
  background-size: 20px 40px; */
}

/* Intermediate Paragraph Copy */
.tt-sign-summary-desc {
  /* font-size: 16.5px;
  color: #334155;
  line-height: 1.6;
  margin: 0; */
}

/* Bottom Split Matrix Row Layout */
.tt-sign-split-row {
  display: grid;
  grid-template-columns: 4.5fr 5.5fr;
  column-gap: 90px;
}

.tt-sign-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tt-sign-col-label {
  /* font-size: 22px;
  font-weight: 600;
  color: #003fa3;
  margin: 0 0 28px 0;
  letter-spacing: -0.3px; */
}

/* Left Content Styles: Heavy High-Contrast Typography Focus */
.tt-sign-bold-statement {
  /* font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: 1.45;
  margin: 0;
  letter-spacing: -0.4px; */
}

/* Right Content Styles: Checklist Layout Mapping */
.tt-sign-check-list {
  /* list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%; */
}

.tt-sign-check-item {
  /* display: flex;
  align-items: center;
  gap: 14px; */
}

.tt-sign-icon-circle {
  /* flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #0066ff;
  color: #0066ff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-sign-icon-circle svg {
  /* width: 10px;
  height: 10px; */
}

.tt-sign-item-text {
  /* font-size: 15.5px;
  font-weight: 400;
  color: #334155;
  line-height: 1.4; */
}

@media screen and (max-width: 991px) {
  .sol-sign-section {
    padding: 90px 0;
  }
  /* .tt-sign-main-title {
    font-size: 42px;
  } */
  .tt-sign-split-row {
    grid-template-columns: 1fr;
    row-gap: 48px;
  }
  .tt-sign-header-block {
    margin-bottom: 60px;
  }
  .tt-sign-col-label {
    margin-bottom: 16px;
  }
}

@media screen and (max-width: 575px) {
  .sol-sign-container {
    padding: 0 24px;
  }
  /* .tt-sign-main-title {
    font-size: 32px;
  } */
  .tt-sign-bold-statement {
    font-size: 18px;
  }
  .tt-sign-summary-desc {
    font-size: 15px;
  }
}

.sol-sign-features-section {
  /* position: relative;
  padding: 80px 0 120px 0;
  background-color: #f2fafc;  */
}

.tt-sfeatures-container {
  /* width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box; */
}

/* 2x2 Grid Layout Wrapper */
.tt-sfeatures-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

/* Individual Content Cards */
/* .tt-sfeatures-item-card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 44px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 4px 24px rgba(0, 44, 148, 0.01);
}

.tt-sfeatures-card-icon {
  width: 32px;
  height: 32px;
  margin-bottom: 28px;
  color: #005ce6;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-sfeatures-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
} */

.tt-sfeatures-card-body {
  width: 100%;
}

/* .tt-sfeatures-card-title {
  font-size: 22px;
  font-weight: 600;
  color: #003fa3;
  line-height: 1.3;
  margin: 0 0 16px 0;
  letter-spacing: -0.3px;
}

.tt-sfeatures-card-desc {
  font-size: 15px;
  color: #334155;
  line-height: 1.6;
  margin: 0;
} */

/* Bright Corporate Blue Use Case Panel Base */
.tt-sfeatures-usecase-panel {
  /* background-color: #0066ff;
  border-radius: 16px;
  padding: 55px 60px;
  box-sizing: border-box;
  color: #ffffff;
  box-shadow: 0 20px 45px rgba(0, 102, 255, 0.12); */
}

.tt-sfeat-usecase-title {
  /* font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 36px 0;
  letter-spacing: -0.4px; */
}

/* Dual Column Use Case Checklist */
.tt-sfeat-usecase-flex-list {
  /* list-style: none;
  padding: 0;
  margin: 0 0 44px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 22px; */
}

.tt-sfeat-usecase-list-item {
  /* display: flex;
  align-items: center;
  gap: 14px; */
}

.tt-sfeat-usecase-check {
  /* flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-sfeat-usecase-check svg {
  /* width: 9px;
  height: 9px; */
}

.tt-sfeat-usecase-text {
  /* font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95); */
}

/* Outlined Call To Action Element Row */
.tt-sfeat-usecase-action-row {
  display: flex;
  justify-content: flex-start;
  /* border-top: 1px solid rgba(255, 255, 255, 0.15); */
  padding-top: 36px;
}

/* .tt-sfeat-usecase-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition:
    background-color 0.25s ease,
    color 0.25s ease;
}

.tt-sfeat-usecase-btn:hover {
  background-color: #ffffff;
  color: #0066ff;
}

.tt-sfeat-btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.tt-sfeat-btn-arrow svg {
  width: 100%;
  height: 100%;
} */

@media screen and (max-width: 991px) {
  .tt-sfeatures-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .tt-sfeat-usecase-flex-list {
    column-gap: 40px;
  }
}

@media screen and (max-width: 767px) {
  .sol-sign-features-section {
    padding: 60px 0 90px 0;
  }
  .tt-sfeatures-item-card,
  .tt-sfeatures-usecase-panel {
    padding: 40px;
  }
  .tt-sfeat-usecase-flex-list {
    grid-template-columns: 1fr;
    row-gap: 18px;
    margin-bottom: 32px;
  }
  .tt-sfeat-usecase-title {
    font-size: 24px;
    margin-bottom: 28px;
  }
}

@media screen and (max-width: 480px) {
  /* .tt-sfeatures-container {
    padding: 0 24px;
  } */
  .tt-sfeatures-item-card {
    padding: 32px 24px;
  }
  .tt-sfeatures-usecase-panel {
    padding: 36px 24px;
  }
  .tt-sfeat-usecase-btn {
    width: 100%;
    justify-content: center;
  }
}

.tt-infrastructure-flow-section {
  position: relative;
  overflow: hidden;
}

.tt-infra-flow-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Structural Header Alignment */
.tt-infra-flow-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 100px auto;
  position: relative;
}

.tt-infra-flow-main-title {
  /*  font-size: 48px;
  font-weight: 700;
  color: #0040a1;
  line-height: 1.2;
  letter-spacing: -0.8px;
  margin: 0 0 24px 0;
  position: relative;
  display: inline-block; */
}

/* Underlying cyan wave effect matching brand accent layout graphics */
.tt-infra-title-deco-waves {
  /*  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
  width: 160px;
  height: 12px;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 4px,
    #a5f3fc 4px,
    #a5f3fc 6px,
    transparent 6px
  );
  background-size: 16px 12px; */
}

.tt-infra-flow-sub-para {
  /* font-size: 15.5px;
  color: #475569;
  line-height: 1.65;
  margin: 28px 0 0 0; */
}

/* Grid Architecture Area */
.tt-infra-triangulation-matrix {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 130px;
  column-gap: 80px;
  max-width: 960px;
  margin: 0 auto;
  padding-top: 20px;
}

/* Base Card Node Structure */
.tt-infra-card-node {
  background-color: var(--light-green);
  border-radius: 24px;
  padding: 24px;
  box-sizing: border-box;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.tt-node-top-center {
  grid-column: 1 / span 2;
  justify-self: center;
  width: 50%;
  min-width: 440px;
  z-index: 3;
}

.tt-node-bottom-left {
  grid-column: 1;
  z-index: 1;
}

.tt-node-bottom-right {
  grid-column: 2;
  z-index: 1;
}

/* Custom Uploaded Line Icons Containment */
.tt-infra-node-icon-row {
  margin-bottom: 20px;
}

.tt-infra-icon-box {
  width: 56px;
  height: 56px;
  background-color: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0066ff;
  padding: 8px;
  box-sizing: border-box;
}

.tt-infra-icon-box svg,
.tt-infra-icon-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Identity Framework Inline Tags */
.tt-node-pill-label {
  display: inline-block;
  padding: 1px 11px;
  background-color: #0066ff;
  color: #ffffff;
  font-size: 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

.tt-infra-node-title {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.5px;
}

.tt-infra-node-desc {
  /* font-size: 14.5px;
  color: #334155;
  line-height: 1.55;
  margin: 0; */
}

.tt-infra-central-glowing-hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -40%) !important;
  width: 190px;
  height: 190px;
  background-color: #0066ff;
  border-radius: 50%;
  padding: 8px;
  box-sizing: border-box;
  z-index: 5;
  box-shadow: 0 12px 36px rgba(0, 102, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.tt-infra-central-glowing-hub::before {
  content: "";
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border: 2px dashed #0066ff;
  border-radius: 50%;
  opacity: 0.8;
}

.tt-hub-circle-inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding: 10px;
  box-sizing: border-box;
}

.tt-hub-text-small {
  font-size: 13px;
  opacity: 0.9;
  font-weight: 400;
}

.tt-hub-text-brand {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin: 3px 0;
  letter-spacing: -0.2px;
}

.tt-hub-text-muted {
  font-size: 14px;
  opacity: 0.95;
  font-weight: 500;
}

@media screen and (max-width: 991px) {
  .tt-infra-triangulation-matrix {
    grid-template-columns: 1fr;
    row-gap: 40px;
    max-width: 550px;
    padding-top: 0;
  }
  .tt-node-top-center,
  .tt-node-bottom-left,
  .tt-node-bottom-right {
    grid-column: 1;
    width: 100%;
    min-width: 0;
    justify-self: stretch;
  }
  .tt-infra-central-glowing-hub {
    display: none;
    /* position: relative;
    top: 0;
    left: 0;
    transform: none;
    margin: 20px auto;
    grid-row: 2; */
  }
  .tt-node-top-center {
    grid-row: 1;
  }
  .tt-node-bottom-left {
    grid-row: 3;
  }
  .tt-node-bottom-right {
    grid-row: 4;
  }

  /* .tt-infra-flow-main-title {
    font-size: 38px;
  } */
}

@media screen and (max-width: 575px) {
  .tt-infra-flow-container {
    padding: 0 24px;
  }
  .tt-infra-card-node {
    padding: 30px 24px;
  }
  /* .tt-infra-flow-main-title {
    font-size: 32px;
  } */
}

.tt-company-expertise-section {
  position: relative;
}

.tt-expertise-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Central Header System Block */
.tt-expertise-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 96px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tt-expertise-title-wrapper {
  position: relative;
  /* margin-bottom: 32px; */
  display: inline-block;
}

.tt-expertise-main-title {
  /* font-size: 54px;
  font-weight: 700;
  color: #0040a1; /* Target custom royal navy accent hue matching image precisely 
  line-height: 1.15;
  margin: 0;
  letter-spacing: -1px;
  position: relative;
  z-index: 2; */
}

/* Abstract stylized cyan structural wave vector frame */
.tt-expertise-wave-accent {
  /* position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 40px;
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 28px,
    #22d3ee 29px,
    #22d3ee 31px,
    transparent 32px
  );
  background-size: 20px 40px; */
}

.tt-expertise-sub-paragraph {
  /* font-size: 16px;
  color: #475569;
  line-height: 1.65;
  margin: 0;
  max-width: 760px; */
}

/* 2x2 Matrix Grid Breakdown Layout */
.tt-expertise-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  row-gap: 54px;
}

/* Grid Item Card Blocks */
.tt-expertise-item-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Heading Stack alignment containing inline icons on the left line */
.tt-expertise-card-head-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.tt-expertise-card-icon {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  margin-top: 3px;
  /* color: #0066ff;  Custom electric identifier accent color 
  display: flex;
  align-items: center;
  justify-content: center; */
}

.tt-expertise-card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tt-expertise-card-title {
  /* font-size: 24px;
  font-weight: 600;
  color: #0040a1;
  line-height: 1.3;
  margin: 0;
  letter-spacing: -0.4px; */
  margin: 0px;
}

.tt-expertise-card-description {
  /* font-size: 15.5px;
  color: #334155;
  line-height: 1.65;
  margin: 0;
  padding-left: 38px; 
  box-sizing: border-box; */
}

@media screen and (max-width: 991px) {
  /* .tt-company-expertise-section {
    padding: 90px 0;
  } */
  /* .tt-expertise-main-title {
    font-size: 42px;
  } */
  .tt-expertise-cards-grid {
    grid-template-columns: 1fr; /* Collapse card layers vertical */
    row-gap: 44px;
  }
  .tt-expertise-header {
    margin-bottom: 64px;
  }
  .tt-expertise-card-description {
    padding-left: 0; /* Align back clean on compressed profiles */
  }
}

@media screen and (max-width: 575px) {
  .tt-expertise-container {
    padding: 0 24px;
  }
  /* .tt-expertise-main-title {
    font-size: 32px;
  } */
  /* .tt-expertise-card-title {
    font-size: 20px;
  } */
  /* .tt-expertise-sub-paragraph,
  .tt-expertise-card-description {
    font-size: 15px;
  } */
}

.tt-company-team-section {
  background-color: #ffffff;
}

.tt-team-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Three Column Master Matrix System Grid */
.tt-team-profiles-grid {
  display: grid;
  grid-template-columns: repeat(
    3,
    1fr
  ); /* Fits 3 items perfectly per line horizontal row */
  column-gap: 48px;
  row-gap: 64px;
}

/* Individual Executive Profiles Structure */
.tt-team-profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Photo Aspect Wrapper matching the layout style proportions */
.tt-team-photo-canvas {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  background-color: #64748b;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.tt-team-actual-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 2;
}

/* Default state placeholder fallback structure */
.tt-team-avatar-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

/* Brand linear design elements layered inside the container */
.tt-team-canvas-accent-stripes {
  /* position: absolute;
  bottom: 0;
  left: 0;
  width: 45%;
  height: 50%;
  z-index: 3;
  pointer-events: none;
  opacity: 0.8;
  background-image: repeating-linear-gradient(
    45deg,
    #a5f3fc 0px,
    #a5f3fc 3px,
    transparent 3px,
    transparent 12px
  ); */
}

/* Typography Hierarchy Stack */
.tt-team-meta-stack {
  width: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.tt-team-member-name {
  /* font-size: 22px;
  font-weight: 600;
  color: #0040a1; 
  line-height: 1.3;
  margin: 0 0 6px 0;
  letter-spacing: -0.3px; */
  margin: 0;
}

.tt-team-member-role {
  display: block;
  font-size: 15px;
  color: var(--primary-color);
  margin-bottom: 16px;
  /* font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
 */
}

.tt-team-member-bio {
  /* font-size: 14px;
  color: #475569; 
  line-height: 1.55;
  margin: 0; */
}

@media screen and (max-width: 991px) {
  .tt-team-profiles-grid {
    grid-template-columns: repeat(
      2,
      1fr
    ); /* Shifts smoothly down into a balanced 2-column view */
    column-gap: 32px;
    row-gap: 48px;
  }
}

@media screen and (max-width: 650px) {
  .tt-team-profiles-grid {
    grid-template-columns: 1fr; /* Formats cleanly as single vertical stacks on narrow devices */
    row-gap: 44px;
  }
  .tt-team-photo-canvas {
    max-width: 400px; /* Controls image sizing bounds when stretched vertically */
    margin-left: auto;
    margin-right: auto;
  }
  .tt-team-container {
    padding: 0 24px;
  }
}

/* ==========================================================================
   RESOURCES: TRANSLATE THE REGULATION CODE (image_47b600.png 1:1 Match)
   ========================================================================== */
.tt-regulation-translate-section {
  background-color: var(--light-green);
  position: relative;
  overflow: hidden;
}

.tt-translate-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  box-sizing: border-box;
}

/* Header Presentation Alignment */
.tt-translate-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 95px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tt-translate-title-box {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.tt-translate-main-headline {
  /* font-size: 54px;
  font-weight: 700;
  color: #003da8; 
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.8px;
  position: relative;
  z-index: 2; */
}

/* Underlying design system decorative cyan line-arc wave element */
.tt-translate-deco-wave {
  /* position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 250px;
  height: 40px;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
  background-image: radial-gradient(
    circle at 50% 100%,
    transparent 28px,
    #22d3ee 29px,
    #22d3ee 31px,
    transparent 32px
  );
  background-size: 20px 40px; */
}

.tt-translate-subtitle-copy {
  /* font-size: 16px;
  color: #475569;
  line-height: 1.6; */
  margin: 0;
  max-width: 680px;
}

/* Two Column Layout Row Configuration */
.tt-translate-links-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 90px;
  row-gap: 40px;
}

/* Frameless Interactive Entry Nodes */
.tt-translate-article-node {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none !important;
  background: transparent;
  border: none;
  padding: 0;
}

/* Sharp, Rounded Solid Category Badges */
.tt-translate-pill {
  display: inline-block;
  padding: 1px 11px;
  background-color: #0066ff;
  color: #ffffff;
  font-size: 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Title Links */
.tt-translate-article-title {
  /* font-size: 24px;
  font-weight: 600;
  color: #003da8;
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.3px;
  transition: color 0.25s ease; */
}

.tt-translate-article-node:hover .tt-translate-article-title {
  color: #0066ff; /* Smooth color swap trigger on hover states */
}

@media screen and (max-width: 991px) {
  .tt-regulation-translate-section {
    padding: 90px 0;
  }
  .tt-translate-main-headline {
    font-size: 42px;
  }
  .tt-translate-links-row {
    column-gap: 45px;
  }
  .tt-translate-header {
    margin-bottom: 64px;
  }
}

@media screen and (max-width: 767px) {
  .tt-translate-links-row {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }
  .tt-translate-pill {
    margin-bottom: 14px;
  }
  .tt-translate-article-title {
    font-size: 21px;
  }
}

@media screen and (max-width: 575px) {
  .tt-translate-container {
    padding: 0 24px;
  }
  .tt-translate-main-headline {
    font-size: 32px;
  }
  .tt-translate-subtitle-copy {
    font-size: 15px;
  }
}
