
    :root {
      --tfs-lbg: #F4F5F6;
      --tfs-gold: #d4a044;
      --tfs-dark: #374148;
      --tfs-black: #1a1a1a;
      --tfs-footer-bg: #111111;
      --cut: 40px;
      --logo-h: clamp(45px, 5vw, 100px);
      --nav-fs: clamp(12px, 0.9vw, 1vw);
      --top-fs: clamp(13px, 1vw, 0.8vw);
      --card-gap: 1.5rem;
      --mobile-menu-fs: 18px;
      --mobile-sub-fs: 13px;
      --brand-grey: #424a52;
      --bg-overlay: rgba(0, 0, 0, 0.65);
      --light-bg: #f2f2f2;
      --transition-speed: 0.6s;
    }
    
    :root {
  --header-offset: 130px;
}

@media (max-width: 768px) {
  :root {
    --header-offset: 90px;
  }
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

[id] {
  scroll-margin-top: var(--header-offset);
}

    a {
      text-decoration: none;
      color: inherit;
      transition: color 0.2s ease;
    }


   

    p {
      font-family: 'Ubuntu', sans-serif;
      font-size: clamp(14px, 1vw, 1.2vw);
      color: var(--tfs-dark);
      line-height: 1.7;
      text-align: justify;
      margin-bottom: 10px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 1050;
      background: #fff;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
      font-family: 'Ubuntu', sans-serif;
    }

    main {
      flex: 1;
    }

    .sec-bg {
      background-color: var(--tfs-lbg);
    }

    .container-fluid {
      padding-left: 5% !important;
      padding-right: 5% !important;
    }

    .top-bar-container {
      display: flex;
      justify-content: center;
      overflow: hidden;
    }

    .top-bar {
      background-color: var(--tfs-gold);
      color: white;
      padding: 10px clamp(15px, 5vw, 5.5vw);
      font-size: var(--top-fs);
      font-weight: 600;
      clip-path: polygon(0 0, 100% 0, calc(100% - var(--cut)) 100%, var(--cut) 100%);
      margin-left: 2rem;
    }

    .top-bar a {
      color: white;
      text-decoration: none;
      transition: opacity 0.2s;
      white-space: nowrap;
    }

    .top-bar a:hover {
      opacity: 0.8;
    }

    .navbar {
      padding-top: 0 !important;
      padding-bottom: 0 !important;
      min-height: 70px;
      font-family: 'Ubuntu', sans-serif;
    }

    .navbar-brand img {
      height: var(--logo-h);
      width: auto;
      margin-top: -30px;
      margin-bottom: 15px;
      display: block;
    }

    .nav-link {
      color: var(--tfs-dark) !important;
      font-weight: 700;
      font-size: var(--nav-fs);
      text-transform: uppercase;
      padding: 10px clamp(5px, 0.6vw, 12px) !important;
      display: flex;
      align-items: center;
      gap: 3px;
      transition: color 0.3s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--tfs-gold) !important;
    }

    @media (min-width: 992px) {
      .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
      }
    }

    .dropdown-menu {
      border-top: 3px solid var(--tfs-gold);
      border-radius: 0;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      padding: 10px 0;
    }

    .dropdown-item {
      font-size: clamp(14px, 1vw, 1.2vw);
      font-weight: 500;
      padding: 8px 20px;
      color: var(--tfs-dark);
    }

    .dropdown-item:hover {
      background-color: #f8f9fa;
      color: var(--tfs-gold);
    }

    .header-border-bottom {
      height: 5px;
      background-color: var(--tfs-gold);
      width: 100%;
    }

    .navbar-toggler {
      border: none;
      color: var(--tfs-gold);
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    .mobile-overlay {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: var(--tfs-black);
      z-index: 2000;
      display: none;
      flex-direction: column;
      padding: 25px;
      overflow-y: auto;
      color: white;
    }

    .mobile-overlay.active {
      display: flex;
    }

    .mobile-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 30px;
    }

    .mobile-header img {
      height: 55px;
    }

    .close-menu {
      font-size: 35px;
      cursor: pointer;
      background: none;
      border: none;
      color: white;
    }

    .mobile-nav-list {
      list-style: none;
      padding: 0;
    }

    .mobile-nav-item {
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-link {
      font-size: var(--mobile-menu-fs);
      font-weight: 600;
      color: white;
      text-decoration: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
    }

    .mobile-nav-link i {
      font-size: 16px;
      transition: transform 0.3s ease;
    }

    .mobile-nav-link.open i {
      transform: rotate(180deg);
    }

    .mobile-submenu {
      display: none;
      padding: 0 0 10px 10px;
    }

    .mobile-submenu.active {
      display: block;
    }

    .mobile-sub-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 10px 0;
      font-size: var(--mobile-sub-fs);
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
    }

    .mobile-sub-item:hover {
      color: var(--tfs-gold);
    }

    .mobile-footer {
      margin-top: auto;
      display: flex;
      justify-content: space-between;
      padding: 30px 0;
      font-size: 14px;
      opacity: 0.6;
    }

    .mobile-footer a {
      color: white;
      text-decoration: none;
    }


    .main-footer {
      background-color: var(--tfs-footer-bg);
      color: #ffffff;
      padding: 60px 0 20px 0;
      border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .footer-logo {
      max-height: 70px;
      margin-bottom: 25px;
    }

    .footer-desc {
      color: rgba(255, 255, 255, 0.8);
      font-size: clamp(14px, 0.8vw, 1vw);
      line-height: 1.6;
      margin-bottom: 25px;
      margin-right: 2vw;
      max-width: 500px;
    }

    .footer-social-links {
      display: flex;
      gap: 15px;
    }

    .footer-social-links a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.5);
      color: white;
      text-decoration: none;
      font-size: 18px;
      transition: all 0.3s ease;
    }

    .footer-social-links a:hover {
      background-color: var(--tfs-gold);
      border-color: var(--tfs-gold);
    }

    .footer-heading {
      font-size:clamp(18px, 0.9vw, 1vw);
      font-weight: 700;
      margin-bottom: 30px;
      position: relative;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li {
      margin-bottom: 15px;
    }

    .footer-links a {
      color: rgba(255, 255, 255, 0.8);
      text-decoration: none;
      font-size: clamp(14px, 0.9vw, 1vw);
      transition: color 0.2s;
    }

    .footer-links a:hover {
      color: var(--tfs-gold);
    }

    .footer-contact-info {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .contact-item {
      display: flex;
      gap: 15px;
      align-items: flex-start;
    }

    .contact-icon {
      color: var(--tfs-gold);
      font-size: 20px;
      margin-top: 3px;
    }

    .contact-text {
      font-size: clamp(14px, 0.9vw, 1vw);
      line-height: 1.4;
      color: rgba(255, 255, 255, 0.8);
    }

    .contact-text a {
      color: inherit;
      text-decoration: none;
    }

    .contact-text a:hover {
      color: var(--tfs-gold);
    }

    .footer-bottom {
      margin-top: 25px;
      padding-top: 25px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      text-align: center;
      font-size: clamp(12px, 1vw, 1.1vw);
      color: rgba(255, 255, 255, 0.6);
    }

    .footer-bottom a {
      color: var(--tfs-gold);
      text-decoration: none;
    }


    @media (max-width: 768px) {
      .navbar-brand img {


        margin-top: 0px;
        margin-bottom: 1px;
        display: block;
      }

    }

    @media (max-width: 991.98px) {
      .navbar-nav {
        display: none;
      }

      .top-bar {
        clip-path: none;
        width: 100%;
        text-align: center;
        padding: 10px 10px;
        margin-left: 0px;
        overflow: hidden;
      }

      .top-bar .d-flex {
        flex-direction: column;
        gap: 5px;
      }
       .navbar-brand img {
      margin-top: 0px;
      margin-bottom: 0px;

    }

      .spacer-div {
        display: none !important;
      }

      .main-footer {
        padding: 50px 0 20px 0;
      }

      .footer-col {
        margin-bottom: 40px;
      }

      .footer-heading {
        margin-bottom: 20px;
      }
    }

    @media (min-width: 1400px) {
      .container {
        max-width: 1320px;
      }
    }
    
    

    @media (min-width: 2560px) {
      .container {
        max-width: 2300px;
      }
    }



    .button {
      -moz-appearance: none;
      -webkit-appearance: none;
      appearance: none;
      border: none;
      background: none;
      color: #0f1923;
      cursor: pointer;
      position: relative;
      padding: 8px;
      margin-bottom: 20px;
      text-transform: uppercase;
      font-weight: bold;
      font-size: 14px;
      transition: all .15s ease;
      font-family: 'Ubuntu', sans-serif;
    }

    .button::before,
    .button::after {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      left: 0;
      height: calc(50% - 5px);
      border: 1px solid #7D8082;
      transition: all .15s ease;
    }

    .button::before {
      top: 0;
      border-bottom-width: 0;
    }

    .button::after {
      bottom: 0;
      border-top-width: 0;
    }

    .button:active,
    .button:focus {
      outline: none;
    }

    .button:active::before,
    .button:active::after {
      right: 3px;
      left: 3px;
    }

    .button:active::before {
      top: 3px;
    }

    .button:active::after {
      bottom: 3px;
    }

    .button_lg {
      position: relative;
      display: block;
      padding: 10px 20px;
      color: #fff;
      background-color: var(--brand-grey);
      overflow: hidden;
      box-shadow: inset 0px 0px 0px 1px transparent;
    }

    .button_lg::before {
      content: '';
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 2px;
      height: 2px;
      background-color: var(--brand-grey);
    }

    .button_lg::after {
      content: '';
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 4px;
      height: 4px;
      background-color: var(--brand-grey);
      transition: all .2s ease;
    }

    .button_sl {
      display: block;
      position: absolute;
      top: 0;
      bottom: -1px;
      left: -8px;
      width: 0;
      background-color: var(--tfs-gold);
      transform: skew(-15deg);
      transition: all .2s ease;
    }

    .button_text {
      position: relative;
    }

    .button:hover {
      color: #0f1923;
    }

    .button:hover .button_sl {
      width: calc(100% + 15px);
    }

    .button:hover .button_lg::after {
      background-color: #fff;
    }

    
     .slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .custom-pagination {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .pagination-btn {
    width: 60px;
    height: 60px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(4px);
    text-decoration: none;
  }

  .pagination-btn:hover {
    border-color: var(--tfs-gold);
    color: var(--tfs-gold);
  }

  .pagination-btn.active {
    background: var(--tfs-gold);
    color: white;
    border-color: var(--tfs-gold);
    transform: scale(1.1);
  }

  .carousel-item {
    height: 75vh;
    min-height: 550px;
    background-color: var(--tfs-black);
  }

  .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
  }

  .carousel-caption {
    top: 0;
    bottom: 0;
    left: 15%;
    right: 15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .slide-subheading {
    font-size: clamp(14px, 1.8vw, 1.9vw);
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 10px;
    letter-spacing: 1px;
    opacity: 0;
    font-family: 'Ubuntu', sans-serif;
  }

  .slide-heading {
    font-size: clamp(22px, 3vw, 4.5vw);
    font-weight: 800;
    color: var(--tfs-gold);
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.1;
    font-family: 'Ubuntu', sans-serif;
  }

  .slide-desc {
    font-size: clamp(14px, 1vw, 1.1vw);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    line-height: 1.6;
    margin: 0 auto;
    opacity: 0;
    font-family: 'Ubuntu', sans-serif;
    text-align: center;
  }

  @keyframes revealLeftToRight {
    from {
      opacity: 0;
      clip-path: inset(0 100% 0 0);
      transform: translateX(-20px);
    }

    to {
      opacity: 1;
      clip-path: inset(0 0 0 0);
      transform: translateX(0);
    }
  }

  .active .slide-subheading {
    animation: revealLeftToRight 0.8s ease-out forwards;
    animation-delay: 0.2s;
  }

  .active .slide-heading {
    animation: revealLeftToRight 0.8s ease-out forwards;
    animation-delay: 0.5s;
  }

  .active .slide-desc {
    animation: revealLeftToRight 0.8s ease-out forwards;
    animation-delay: 0.8s;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 8%;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .slider-wrapper:hover .carousel-control-prev,
  .slider-wrapper:hover .carousel-control-next {
    opacity: 1;
  }

  .control-icon {
    font-size: 20px;
    color: white;
    background: rgba(212, 160, 68, 0.3);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
  }

  .control-icon:hover {
    background: var(--tfs-gold);
  }

  /* Mission & Vision Section */
  .mv-section {
    position: relative;
    z-index: 200;
    padding-bottom: 30px;
  }

  .mv-container {
    margin-top: -7.5vh;
  }

  .mv-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    height: 100%;
    display: flex;
    align-items: flex-start;
    gap: 25px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }

  .mv-card:hover {
    transform: translateY(-5px);
  }

  .mv-icon {
    font-size: clamp(40px, 4vw, 5.1vw);
    color: var(--tfs-gold);
    flex-shrink: 0;
    line-height: 1;
  }

  .mv-content h3 {
    font-size: clamp(20px, 1.3vw, 2.6vw);
    font-weight: 700;
    color: var(--tfs-black);
    margin-bottom: 15px;
  }

  .mv-content p {
    font-size: clamp(14px, 0.9vw, 1.3vw);
    line-height: 1.6;
    color: var(--tfs-dark);
    margin: 0;
    text-align: justify;
  }

  /* Who We Are Section */
  .about-section {
    padding: 20px 0;
    background-color: #ffffff;
  }

  .about-image-wrapper {
    position: relative;
    text-align: center;
  }

  .about-image-wrapper img {
    max-width: 100%;
    height: auto;
  }

  .suj-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--tfs-gold);
    font-weight: 700;
    font-size: clamp(14px, 1vw, 1.1vw);
    text-transform: uppercase;
    margin-bottom: 15px;
  }

  .suj-label i {
    font-size: 14px;
  }

  .suj-head {
    font-size: clamp(18px, 2vw, 1.6vw);
    font-weight: 800;
    color: var(--tfs-black);
    margin-bottom: 25px;
    line-height: 1.2;
  }

  .call-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 30px;
    border: 2px solid var(--tfs-black);
    border-radius: 30px;
    color: var(--tfs-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 10px;
  }

  .call-btn:hover {
    background-color: var(--tfs-black);
    color: #fff;
  }

  @media (max-width: 991.98px) {
    .mv-card {
      padding: 30px;
      gap: 20px;
    }

    .mv-icon {
      font-size: 40px;
    }

    .about-image-wrapper {
      margin-bottom: 40px;
    }
  }

  @media (max-width: 768px) {
    .carousel-item {
      height: 600px;
    }

    .custom-pagination {
      top: 165px;
      left: 50%;
      transform: translateX(-50%);
      flex-direction: row;
      gap: 10px;
    }

    .pagination-btn {
      width: 42px;
      height: 42px;
      font-size: 22px;
    }

    .carousel-caption {
      left: 5%;
      right: 5%;
      justify-content: center;
      padding-top: 60px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      opacity: 0.5;
      width: 12%;
    }
    .mv-container {
      margin-top: -40px;
      padding: 0 15px;
    }

    .mv-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
      margin-bottom: 20px;
      gap: 15px;
      padding: 30px 20px;
    }

    .mv-icon {
      margin-bottom: 5px;
    }

    .about-image-wrapper img {
      max-width: 70%;
      height: auto;
    }
  }

  @media (max-width: 425px) {
    .carousel-item {
      height: 550px;
    }

    .slide-heading {
      margin-bottom: 15px;
    }

    .about-section {
      padding-top: 20px;
    }

    .mv-card {
      padding: 25px 15px;
    }

    .carousel-control-prev,
    .carousel-control-next {
      display: none;
    }

    /* Clean up mobile */
  }

  @media (max-width: 320px) {
    .carousel-item {
      height: 480px;
    }

    .slide-subheading {
      font-size: 13px;
    }

    .pagination-btn {
      width: 30px;
      height: 30px;
    }
  }
    /* --- Global Section Headers --- */
    .section-container {
      padding: 2rem 0;
    }


    .slider-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      padding: 0 15px 1rem 15px;
    }

    .slider-title {
      font-size: clamp(18px, 1.6vw, 1.2vw);
      font-weight: 700;
      color: var(--brand-grey);
      margin: 0;
    }

    /* Navigation Buttons */
    .nav-controls {
      display: flex;
      gap: 10px;
    }

    .control-btn {
      width: 45px;
      height: 45px;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
      color: var(--brand-blue);
    }

    .control-btn:hover {
      background: var(--brand-grey);
      color: #fff;
      border-color: var(--brand-grey);
    }

    /* --- Slider Base Layout --- */
    .slider-wrapper {

      width: 100%;
      overflow: hidden;
      position: relative;
      touch-action: pan-y;
    }

    .slider-track {
      display: flex;
      transition: transform var(--transition-speed) cubic-bezier(0.25, 1, 0.5, 1);
      padding: 10px 0 30px 0;
    }

    .slider-card-item {
      flex: 0 0 auto;
      padding: 0 calc(var(--card-gap) / 2);
      user-select: none;
    }

    .card {
      border: none;
      border-radius: 20px;
      background: #fff;
      height: 100%;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    }

    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    }

    /* --- 1. Services Section Specifics --- */
    .service-img-wrapper {
      padding: 10px;
    }

    .service-img {
      height: 220px;
      width: 100%;
      object-fit: cover;
      border-radius: 15px;
    }

    .service-heading {
      font-weight: 700;
      font-size: 1.15rem;
      margin-bottom: 1.25rem;
    }

    .service-heading a {
      color: var(--tfs-gold);
      text-decoration: underline;
      text-underline-offset: 5px;
    }

    .service-heading a:hover {
      color: var(--brand-grey);
    }

    .service-list {
      list-style: none;
      padding: 0;
      margin: 0;
      font-family: 'Ubuntu', sans-serif;
    }

    .service-item-link {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 10px;
      font-size: clamp(14px, 0.9vw, 1.2vw);
      color: #444;
      line-height: 1.4;


    }

    .service-item-link:hover {
      color: var(--tfs-gold);
    }

    /* --- 2. Team Section Specifics --- */
    .team-card-body {
      padding: 1rem 1.5rem;
      text-align: left;
    }

    .team-profile-container {
      width: 160px;
      height: 160px;
      margin-bottom: 0.5rem;
      border: 2px solid #eee;
      border-radius: 50%;
      padding: 5px;
      display: block;
    }

    .team-profile-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%;
      background-color: #f0f0f0;
    }

    .team-name {
      color: var(--tfs-gold);
      font-weight: 700;
      font-size: clamp(14px, 1vw, 1.2vw);
      text-decoration: underline;
      text-underline-offset: 4px;
      margin-bottom: 0.5rem;
      display: block;
    }

    .team-role {
      font-weight: 700;
      color: #000;
      font-size: clamp(14px, 0.9vw, 1.2vw);
      margin-bottom: 0.75rem;
    }

    .team-bio span {
      font-weight: bold;
    }

    .team-bio {
      font-size: clamp(14px, 0.8vw, 1.2vw);
      color: #666;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      text-align: justify;
    }

    .read-more-btn {
      color: var(--tfs-gold);
      font-weight: 700;
      font-size: clamp(14px, 0.8vw, 1.2vw);
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    /* --- 3. Industries Section Specifics --- */
    .industry-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
      display: grid;
      grid-template-columns: 1fr;
      gap: 12px;
    }

    @media (min-width: 768px) {
      .industry-list {
        grid-template-columns: 1fr 1fr;
      }
    }

    .industry-item {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: clamp(14px, 0.9vw, 1.2vw);
      font-weight: 500;
      color: #333;
    }

    .industry-item svg {
      color: #000;
      flex-shrink: 0;
    }

    .industry-graphic-container {
      text-align: center;
      padding: 1rem;
    }

    /* --- 4. Why Choose Us Specifics --- */
    .choose-us-graphic-container {
      text-align: center;
      padding: 1rem;
    }

    .choose-us-list {
      list-style: none;
      padding: 0;
      margin: 1rem 0;
    }

    .choose-us-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 0.5rem;
      font-size: clamp(14px, 0.9vw, 1.2vw);
      line-height: 1.5;
      align-items: center;
    }

    .choose-us-item strong {
      color: var(--tfs-gold);
    }

    .choose-us-item svg {
      color: #000;
      flex-shrink: 0;
      margin-top: 4px;
    }

    /* --- 5. Our Values Specifics --- */
    .value-card-container {
      perspective: 1000px;
      height: 200px;
      width: 100%;
    }

    .value-card-inner {
      position: relative;
      width: 100%;
      height: 100%;
      text-align: center;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      transform-style: preserve-3d;
    }

    .value-card-front,
    .value-card-back {
      position: absolute;
      width: 100%;
      height: 100%;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    }

    .value-card-back {
      transform: rotateY(180deg);
      background-color: white;
      color: #333;
      border: 1px solid #eee;
    }

    .val-grey .value-card-front {
      background-color: var(--brand-grey);
      color: white;
    }

    .val-gold .value-card-front {
      background-color: var(--tfs-gold);
      color: white;
    }

    .value-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 1.2rem;
      color: white;
    }

    .value-title {
      font-weight: 700;
      font-size: 1.25rem;
      margin: 0;
    }

    .value-text {
      font-size: clamp(14px, 0.9vw, 1.2vw);
      line-height: 1.5;
      margin: 0;
      text-align: center;
      color: white;
    }

    .front-text {
      display: none;
      margin-top: 1rem;
      font-size: 0.9rem;
      border-top: 1px solid rgba(255, 255, 255, 0.2);
      padding-top: 1rem;
    }
    .value-card-back .value-text {color:var(--brand-grey);}

    @media (max-width: 767px) {
      .value-card-inner {
        transform: none !important;
      }

      .value-card-back {
        display: none;
      }

      .front-text {
        display: block;
      }

      .value-card-front {
        position: relative;
        height: 100%;
        justify-content: center;
      }

      .value-card-container {
        height: 250px;
      }
    }

    @media (min-width: 768px) {
      .value-card-container:hover .value-card-inner {
        transform: rotateY(180deg);
      }
    }

    /* --- Breakpoints --- */
    .slider-card-item {
      width: 100%;
    }

    @media (min-width: 786px) {
      .slider-card-item {
        width: 50%;
      }
    }

    @media (min-width: 1024px) {
      .slider-card-item {
        width: 33.333%;
      }
    }

    @media (min-width: 1440px) {
      .slider-card-item {
        width: 25%;
      }
    }

    @media (min-width: 2560px) {
      .slider-card-item {
        width: 20%;
      }
    }

    @media (min-width: 2560px) {

      .slider-title {
        font-size: 2rem;
      }

      .service-heading {
        font-size: 1.6rem;
      }

      .service-item-link {
        font-size: clamp(14px, 0.9vw, 1.2vw);
        margin-bottom: 14px;
      }

      .service-img {
        height: 350px;
      }

      .team-profile-container {
        width: 220px;
        height: 220px;
      }

      .team-name {
        font-size: 1.8rem;
      }

      .team-role {
        font-size: 1.5rem;
      }

      .team-bio {
        font-size: 1.3rem;
      }

      .industry-item {
        font-size: 1vw;
        gap: 20px;
      }

      .choose-us-item {
        font-size: clamp(14px, 1vw, 1.2vw);
        margin-bottom: 2rem;
      }

      .value-icon-box {
        width: 120px;
        height: 120px;
      }

      .value-title {
        font-size: 2rem;
      }

      .control-btn {
        width: 65px;
        height: 65px;
      }

      .control-btn svg {
        width: 30px;
        height: 30px;
      }

      .value-card-container {
        height: 350px;
      }

    }

    @media (max-width: 991px) {

      .industry-graphic-container,
      .choose-us-graphic-container {
        margin-top: 3rem;
      }
    }
    
    
    
    
      .marquee-wrapper {
      overflow: hidden;
      position: relative;
      padding: 15px 0;
    }

    .marquee-track {
      display: flex;
      align-items: center;
      width: max-content;
      gap: 15px;
    }

    .marquee-track img {
      height: 100px;
      width: auto;
      filter: grayscale(1) opacity(0.8);
      transition: all 0.4s ease;
    }

    .marquee-track img:hover {
      filter: grayscale(0) opacity(1);
      transform: scale(1.1);
    }

    .move-right {
      animation: scrollRight 30s linear infinite;
    }
    .move-left {
      animation: scrollLeft 30s linear infinite;
    }

    @keyframes scrollLeft {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-33.33%);
      }
    }

    @keyframes scrollRight {
      0% {
        transform: translateX(-33.33%);
      }

      100% {
        transform: translateX(0);
      }
    }

    .border-start {
      border-left: 3px solid var(--tfs-gold) !important;
    }

    .border-end {
      border-right: 3px solid var(--tfs-gold) !important;
    }

    @media (max-width: 991px) {
      .marquee-wrapper {
        border: none !important;
      }
    }
    
    
    
    
     .faq-card {
      background: #fff;
      border: 1px solid #eee;
      border-radius: 12px;
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-header {
      padding: 20px 25px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-weight: 600;
      color: var(--tfs-dark);
      font-size:clamp(14px, 1vw, 1.1vw);
    }

    .faq-header i {
      font-size: 14px;
      transition: transform 0.3s ease;
      color: var(--tfs-black);
    }

    .faq-body {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.3s ease-out;
      background-color: #fafafa;
    }

    .faq-body p {
      padding: 0 25px 20px 25px;
      margin: 0;
      color: #666;
      font-size: clamp(14px, 0.9vw, 1.2vw);
      line-height: 1.6;
    }

    /* Active State */
    .faq-card.active {
      border-color: var(--tfs-gold);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .faq-card.active .faq-header i {
      transform: rotate(180deg);
    }

    .faq-card.active .faq-body {
      max-height: 200px;
      /* Adjust based on content */
    }
    
    
        .service-hero {
        background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7));
        background-size: cover;
        background-position: center;
        height: 400px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        text-align: center;
    }
    
    
        /* --- CTA Section Specific Styles --- */
.sec-bg { background-color: #f9f9f9; }

.cta-form-wrapper {
    background: #fff;
    padding: 35px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    border-top: 5px solid var(--tfs-gold);
}

.form-title {
    font-weight: 700;
    color: var(--tfs-black);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-subtitle {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.form-control, .form-select {
    border: 1px solid #e1e1e1;
    padding: 12px 15px;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s;
}

.form-control:focus {
    border-color: var(--tfs-gold);
    box-shadow: 0 0 0 3px rgba(212, 160, 68, 0.1);
}

.btn-submit-cta {
    width: 100%;
    background-color: var(--tfs-black);
    color: #fff;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-submit-cta:hover {
    background-color: var(--tfs-gold);
    transform: translateY(-2px);
}


 .service-row-alt {
        padding: 30px 0;
        
    }
    .service-row-alt:nth-child(even) .service-inner-row {
    flex-direction: row-reverse;
}
    .service-row-alt:nth-child(even) {
        background-color: var(--tfs-lbg);
        
    }
    
    .service-block-img {
        border-radius: 20px;
        
        width: 100%;
        height: 350px;
        object-fit: cover;
    }
        .service-row-alt:nth-child(even) .service-block-img {
    padding-right:1rem;
}
.item-title {
    font-size: clamp(14px, 1.1vw, 1.2vw);
    font-weight: 700;
    color: var(--brand-grey);
    margin: 0;
}
    
    @media (max-width: 991px) {
    .service-inner-row {
        flex-direction: column !important;
    }
}

  .tm-leader-card {
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border-top: 4px solid var(--tfs-gold);
    box-shadow: 0 6px 28px rgba(0,0,0,.08);
    min-height: 260px;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .tm-leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0,0,0,.12);
  }
  .tm-leader-img-col { width: 42%; overflow: hidden; }
  .tm-leader-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block; transition: transform .4s ease;
  }
  .tm-leader-card:hover .tm-leader-img { transform: scale(1.04); }
  .tm-leader-img-badge {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: var(--tfs-gold); color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(10px, 0.7vw, 0.75vw);
    font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px; text-align: center; padding: 6px 8px;
  }
  .tm-leader-info-col { flex: 1; min-width: 0; }
  .tm-leader-name {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(14px, 1vw, 1.2vw);
    font-weight: 700; color: var(--tfs-gold);
    display: block; line-height: 1.3; margin-bottom: 4px;
  }
  .tm-leader-name:hover { color: var(--tfs-black); }
  .tm-leader-role {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(12px, 0.85vw, 1vw);
    font-weight: 700; color: var(--tfs-black); line-height: 1.3;
  }
  .tm-leader-meta {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(11px, 0.75vw, 0.85vw);
    font-weight: 600; color: #999; line-height: 1.4;
  }
  .tm-leader-bio {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(12px, 0.85vw, 1vw);
    color: #555; line-height: 1.65; text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }


  .tm-card-container {
    height: 400px; perspective: 1200px; cursor: pointer;
  }
  .tm-card-inner {
    position: relative; width: 100%; height: 100%;
    transform-style: preserve-3d;
    transition: transform .65s cubic-bezier(.4,.2,.2,1);
    border-radius: 16px;
  }
  .tm-card-container:hover .tm-card-inner { transform: rotateY(180deg); }
  .tm-card-front, .tm-card-back {
    position: absolute; inset: 0; width: 100%; height: 100%;
    border-radius: 16px;
    backface-visibility: hidden; -webkit-backface-visibility: hidden;
    overflow: hidden;
  }
  .tm-card-front { background: var(--tfs-dark); }
  .tm-front-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block; transition: transform .65s ease;
  }
  .tm-card-container:hover .tm-front-img { transform: scale(1.04); }
  .tm-front-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 35%, rgba(0,0,0,.76) 75%, rgba(0,0,0,.93) 100%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 18px;
  }
  .tm-front-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
  .tm-tag {
    background: rgba(255,255,255,.18);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.3); color: #fff;
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(10px, 0.65vw, 0.7vw);
    font-weight: 700; text-transform: uppercase; letter-spacing: .6px;
    padding: 3px 9px; border-radius: 50px;
  }
  .tm-front-name-block {
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,.2);
    border-radius: 10px; padding: 10px 14px;
  }
  .tm-front-name {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw, 1.2vw);
    font-weight: 700; color: #fff; margin: 0 0 3px; line-height: 1.3;
  }
  .tm-front-role {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(11px, 0.75vw, 0.85vw);
    color: var(--tfs-gold); font-weight: 600; margin: 0; line-height: 1.3;
  }
  .tm-card-back {
    background: #fff; transform: rotateY(180deg);
    border: 1px solid #f0f0f0; box-shadow: 0 10px 40px rgba(0,0,0,.08);
  }
  .tm-card-back::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--tfs-gold); border-radius: 16px 16px 0 0;
  }
  .tm-back-avatar-wrap {
    width: 80px; height: 80px; border-radius: 50%;
    border: 3px solid var(--tfs-gold); overflow: hidden;
    flex-shrink: 0; box-shadow: 0 4px 16px rgba(212,160,68,.25);
  }
  .tm-back-avatar { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
  .tm-back-name {
    font-family: 'Raleway', sans-serif;
    font-size: clamp(13px, 1vw, 1.2vw);
    font-weight: 700; color: var(--tfs-gold); line-height: 1.3;
  }
  .tm-back-role {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(12px, 0.85vw, 1vw);
    font-weight: 700; color: var(--tfs-black); line-height: 1.3;
  }
  .tm-back-meta {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(11px, 0.75vw, 0.85vw);
    font-weight: 600; color: #888; line-height: 1.4;
  }
  .tm-back-bio {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(12px, 0.85vw, 1vw);
    color: #555; line-height: 1.55;
  }
  .tm-read-more {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--tfs-gold); font-family: 'Ubuntu', sans-serif;
    font-size: clamp(12px, 0.85vw, 1vw);
    font-weight: 700; border: 2px solid var(--tfs-gold);
    border-radius: 50px; padding: 6px 16px;
    transition: background .25s, color .25s;
  }
  .tm-read-more:hover { background: var(--tfs-gold); color: #fff; }

  @media (max-width: 991px) {
    .tm-card-container { height: 380px; }
    .tm-card-container:hover .tm-card-inner { transform: none; }
    .tm-card-container.flipped .tm-card-inner { transform: rotateY(180deg); }
  }
  
  
.flt-group {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}


.flt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  height: 48px;
  border-radius: 50px;
  border: none;
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(13px, 0.9vw, 1vw);
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 18px rgba(0,0,0,.18);
  transition: transform .2s ease, box-shadow .2s ease;
  white-space: nowrap;
}
.flt-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.22);
}


.flt-wa-btn {
  background: #25D366;
  color: #fff;
}
.flt-wa-btn i { font-size: clamp(16px, 1.2vw, 1.3vw); }


.flt-contact-btn {
  background: var(--tfs-gold);
  color: #fff;
}
.flt-contact-btn i { font-size: clamp(15px, 1.1vw, 1.2vw); }
.flt-contact-btn.active { background: var(--tfs-black); }


.flt-contact-btn .flt-icon-close { display: none !important; }
.flt-contact-btn.active .flt-icon-open  { display: none !important; }
.flt-contact-btn.active .flt-icon-close { display: inline !important; }


.flt-popup {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 320px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(0,0,0,.16);
  border-top: 4px solid var(--tfs-gold);
  overflow: hidden;

  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(.97);
  transition: opacity .25s ease, transform .25s ease;
}
.flt-popup.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.flt-popup-header {
  background: var(--tfs-gold);
  color: #fff;
}
.flt-popup-title {
  font-family: 'Raleway', sans-serif;
  font-size: clamp(13px, 0.95vw, 1.05vw);
  font-weight: 700;
}
.flt-close-btn {
  background: none; border: none; color: #fff;
  font-size: 1.4rem; line-height: 1; cursor: pointer;
  padding: 0 4px; opacity: .85; transition: opacity .2s;
}
.flt-close-btn:hover { opacity: 1; }

.flt-popup-body .form-control {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(12px, 0.85vw, 1vw) !important;
  border-radius: 8px;
  border: 1px solid #ddd;
  transition: border-color .2s, box-shadow .2s;
}
.flt-popup-body .form-control:focus {
  border-color: var(--tfs-gold);
  box-shadow: 0 0 0 3px rgba(212,160,68,.15);
}

.flt-err {
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(10px, 0.72vw, 0.78vw);
  color: #dc3545;
  margin-top: 2px;
  padding-left: 2px;
}

.flt-submit-btn {
  background: var(--tfs-black);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-family: 'Ubuntu', sans-serif;
  font-size: clamp(13px, 0.9vw, 1vw);
  font-weight: 700;
  cursor: pointer;
  transition: background .25s;
}
.flt-submit-btn:hover { background: var(--tfs-gold); }

.flt-thanks-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(212,160,68,.12);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}
.flt-thanks-icon i {
  font-size: 2rem;
  color: var(--tfs-gold);
}

@media (max-width: 480px) {
  .flt-popup { width: calc(100vw - 32px); right: 0; }
  .flt-btn-label { display: none; }
  .flt-btn { padding: 0; width: 48px; justify-content: center; }
}




/*********blog*********/


.blog-hero, 
.blog-content, 
.post-article, 
.sidebar-form-card {
    font-family: 'Ubuntu', sans-serif;
}


.breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
}
.breadcrumb-item a { color: var(--tfs-gold); text-decoration: none; }
.breadcrumb-item.active { color: #888; font-weight: 500; }


.blog-hero {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img-h/Accounting-Services-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    color: white;
    margin-bottom: 50px;
}


.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #eee;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border-color: var(--tfs-gold);
}

.blog-img-container {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.blog-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-card:hover .blog-img-container img {
    transform: scale(1.1);
}

.category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--tfs-gold);
    color: white;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 15px;
}

.blog-title a {
    color: var(--tfs-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.blog-title a:hover {
    color: var(--tfs-gold);
}

.blog-excerpt {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* --- Single Blog Article Styling --- */
.post-article {
    padding-top: 40px;
}

.post-category-tag {
    color: var(--tfs-gold);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 15px;
    display: inline-block;
}

.post-main-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--tfs-dark);
    margin-bottom: 20px;
}

.post-meta-strip {
    font-size: 14px;
    color: #777;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.post-featured-img {
    width: 100%;
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.post-body-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--atfs-text);
}


/* --- Sidebar Components --- */
.sidebar-sticky { 
    position: sticky; 
    top: 100px; 
}

.atblog .sidebar-form-card {
    background: var(--tfs-dark);
    color: white;
    padding: 30px;
    border-radius: 15px;
}

.atblog .sidebar-form-card .form-control {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    margin-bottom: 15px;
    padding: 12px;
}

.atblog .sidebar-form-card .form-control::placeholder {
    color: #bbb;
}

.atblog .sidebar-form-card .btn-submit {
    background: var(--tfs-gold);
    border: none;
    width: 100%;
    padding: 12px;
    font-weight: 700;
    color: white;
    transition: 0.3s;
    cursor: pointer;
}

.atblog .sidebar-form-card .btn-submit:hover {
    filter: brightness(1.1);
}

/* --- Animations & Responsive --- */
.fade-in {
    animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .post-main-title { font-size: 28px; }
    .blog-hero { padding: 50px 0; }
}

ul li,
ol li {
    font-family: 'Ubuntu', sans-serif;
    font-size: clamp(14px, 0.9vw, 1.2vw);
    color: var(--tfs-dark);
    font-weight: 500;

}

  .atblog .post-body-text :is(h2, h3, h4, h5, h6) {
    font-size: clamp(15px, 1.6vw, 1.2vw);
    font-weight: 600;
    color: var(--tfs-black);
    margin-bottom: 15px;
    line-height: 1.2;
  }
