 
      /* ===== forindex.css embedded ===== */
      :root {
        --navy: #294169;
        --navy-deep: #1b2d4f;
        --navy-mid: #3a5a8c;
        --navy-light: #e8edf5;
        --navy-pale: #f3f6fb;
        --gold: #c8a84b;
        --gold-dark: #a8882e;
        --gold-light: #f5e9c8;
        --white: #ffffff;
        --text-dark: #1a2233;
        --text-mid: #4a5568;
        --text-light: #8a9ab5;
        --border: #d1dae8;
        --radius-sm: 6px;
        --radius-md: 12px;
        --radius-lg: 20px;
        --shadow-sm: 0 2px 10px rgba(41, 65, 105, 0.1);
        --shadow-md: 0 8px 28px rgba(41, 65, 105, 0.16);
        --shadow-lg: 0 18px 52px rgba(41, 65, 105, 0.2);
        --font: "Poppins", sans-serif;
        --tr: 0.28s ease;
        --container: 1200px;
      }
      *,
      *::before,
      *::after {
        box-sizing: border-box;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--font);
        color: var(--text-dark);
        background: var(--white);
        margin: 0;
        padding: 0;
        -webkit-font-smoothing: antialiased;
        font-size: 16px;
        line-height: 1.7;
      }
      img {
        max-width: 100%;
        display: block;
      }
      a {
        text-decoration: none;
        color: inherit;
      }
      ul {
        margin: 0;
        padding: 0;
      }
      h1,
      h2,
      h3,
      h4 {
        font-family: var(--font);
        margin: 0;
        line-height: 1.3;
      }
      .container,
      .container-xl {
        width: 100%;
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 20px;
      }

      /* NAVBAR */
      .ftco-navbar-light {
        background: var(--navy) !important;
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: 0 2px 18px rgba(41, 65, 105, 0.25);
        border-bottom: 2px solid var(--gold);
      }
      .navbar .container-xl {
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        padding-top: 10px;
        padding-bottom: 10px;
      }
      .withlogo {
        display: flex;
        align-items: center;
        gap: 10px;
      }
      .imgnav {
        width: 44px;
        height: 44px;
        object-fit: contain;
        border-radius: 50%;
        border: 2px solid var(--gold);
        background: var(--white);
        padding: 2px;
        flex-shrink: 0;
        transition: transform var(--tr);
      }
      .imgnav:hover {
        transform: rotate(6deg) scale(1.07);
      }
      .navbar-brand {
        color: var(--white) !important;
        font-size: 1.05rem;
        font-weight: 700;
        letter-spacing: 0.02em;
        line-height: 1.2;
        text-decoration: none;
        display: flex;
        flex-direction: column;
      }
      .navbar-brand .sml {
        font-size: 0.65rem;
        font-weight: 400;
        color: var(--gold-light);
        letter-spacing: 0.06em;
        text-transform: uppercase;
      }
      .navbar-toggler {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 38px;
        border: 1px solid rgba(200, 168, 75, 0.5);
        border-radius: var(--radius-sm);
        background: transparent;
        color: var(--gold);
        transition: background var(--tr);
        cursor: pointer;
      }
      .navbar-toggler:hover {
        background: rgba(200, 168, 75, 0.15);
      }
      .navbar-toggler .fa-bars {
        color: var(--gold);
        font-size: 1.1rem;
      }
      @media (min-width: 992px) {
        .navbar-toggler {
          display: none;
        }
      }
      .collapse:not(.show) {
        display: none;
      }
      .navbar-collapse.show {
        display: block;
        width: 100%;
      }
      @media (min-width: 992px) {
        .navbar-collapse {
          display: flex !important;
          flex-basis: auto;
        }
      }
      .navbar-nav {
        display: flex;
        flex-direction: column;
        list-style: none;
        padding: 0;
        margin: 0.5rem 0 0;
      }
      @media (min-width: 992px) {
        .navbar-nav {
          flex-direction: row;
          align-items: center;
          margin: 0;
          gap: 0.15rem;
        }
      }
      .navbar-nav .nav-link {
        display: block;
        padding: 8px 14px;
        color: rgba(255, 255, 255, 0.82) !important;
        font-size: 0.82rem;
        font-weight: 500;
        border-radius: var(--radius-sm);
        transition:
          color var(--tr),
          background var(--tr);
        letter-spacing: 0.03em;
        position: relative;
      }
      @media (min-width: 992px) {
        .navbar-nav .nav-link::after {
          content: "";
          position: absolute;
          bottom: 4px;
          left: 14px;
          right: 14px;
          height: 2px;
          background: var(--gold);
          border-radius: 2px;
          transform: scaleX(0);
          transition: transform var(--tr);
          transform-origin: left;
        }
        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
          transform: scaleX(1);
        }
      }
      .navbar-nav .nav-link:hover,
      .navbar-nav .nav-link.active {
        color: var(--white) !important;
        background: rgba(200, 168, 75, 0.12);
      }
      @media (max-width: 991px) {
        .navbar-collapse.show {
          background: var(--navy-deep);
          border-top: 1px solid rgba(200, 168, 75, 0.2);
          padding: 8px 0 12px;
          border-radius: 0 0 var(--radius-md) var(--radius-md);
          box-shadow: var(--shadow-md);
        }
        .navbar-nav .nav-link {
          padding: 10px 20px;
          border-radius: 0;
          font-size: 0.88rem;
        }
        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
          background: rgba(200, 168, 75, 0.14);
          border-left: 3px solid var(--gold);
          padding-left: 17px;
        }
      }

      /* HERO */
      .slider-hero {
        position: relative;
        overflow: hidden;
        height: 640px;
      }
      .slider-hero .overlay {
        position: absolute;
        inset: 0;
        z-index: 2;
        pointer-events: none;
        background: linear-gradient(135deg, rgba(27, 45, 79, 0.88) 0%, rgba(41, 65, 105, 0.8) 55%, rgba(58, 90, 140, 0.7) 100%);
      }
      .slider-hero::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
        z-index: 6;
      }
      .hero-slider {
        position: relative;
        height: 100%;
      }
      .hero-slider .item {
        position: absolute;
        inset: 0;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1.1s ease;
      }
      .hero-slider .item.is-active {
        opacity: 1;
        visibility: visible;
        z-index: 3;
      }
      .hero-slider .work,
      .hero-slider .img {
        width: 100%;
        height: 100%;
        display: flex;
      }
      .hero-slider .img {
        background-size: cover;
        background-position: center;
        transform: scale(1.06);
        transition: transform 7s linear;
        align-items: center;
        justify-content: center;
      }
      .hero-slider .item.is-active .img {
        transform: scale(1);
      }
      .hero-slider .container-xl {
        height: 100%;
      }
      .hero-slider .row {
        height: 80%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 100%;
        display: flex;
        margin: 0;
        padding: 0 20px;
      }
      .hero-logo-box {
        margin-bottom: 1.75rem;
        opacity: 0;
        transform: translateY(-14px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .hero-slider .item.is-active .hero-logo-box {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.15s;
      }
      .hero-logo-box img.carouselimg {
        height: 150px;
        margin: 0 auto;
        filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.4));
        border-radius: 50%;
        /* border: 3px solid var(--gold); */
        background: rgba(255, 255, 255, 0.1);
        padding: 4px;
      }
      .hero-slider .col-md-7 {
        max-width: 760px;
        width: 100%;
        padding: 0;
      }
      .hero-slider .text > * {
        opacity: 0;
        transform: translateY(20px);
        transition:
          opacity 0.7s ease,
          transform 0.7s ease;
      }
      .hero-slider .item.is-active .text > * {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.35s;
      }
      .text h1.angats,
      .text h1.upper {
        color: var(--white);
        font-weight: 800;
        font-size: clamp(1.4rem, 3.5vw, 2.5rem);
        letter-spacing: 0.02em;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        line-height: 1.25;
      }
      .text h1.angats::after,
      .text h1.upper::after {
        content: "";
        display: block;
        width: 60px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
        margin: 16px auto 0;
      }
      .hero-slider p {
        margin: 1.5rem 0 0;
      }
      .btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        border: none;
        border-radius: var(--radius-sm);
        font-family: var(--font);
        font-weight: 600;
        font-size: 0.9rem;
        cursor: pointer;
        transition:
          background var(--tr),
          color var(--tr),
          box-shadow var(--tr),
          transform var(--tr);
        padding: 12px 28px;
        letter-spacing: 0.03em;
      }
      .btn.btn-white {
        background: var(--gold);
        color: var(--navy-deep);
      }
      .btn.btn-white:hover {
        background: var(--white);
        color: var(--navy);
        box-shadow: 0 4px 18px rgba(41, 65, 105, 0.25);
        transform: translateY(-2px);
      }
      .btn.btn-primary {
        background: var(--navy);
        color: var(--white);
        border: 2px solid transparent;
      }
      .btn.btn-primary:hover {
        background: var(--navy-deep);
        box-shadow: 0 4px 18px rgba(41, 65, 105, 0.3);
        transform: translateY(-2px);
      }
      .p-4 {
        padding: 1.4rem;
      }
      .py-3 {
        padding-top: 0.9rem;
        padding-bottom: 0.9rem;
      }
      .py-5 {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
      }
      .px-4 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
      }
      .mt-4 {
        margin-top: 1.5rem;
      }
      .mb-4 {
        margin-bottom: 1.5rem;
      }
      .mb-5 {
        margin-bottom: 2.5rem;
      }

      /* Arrows & Dots */
      .hero-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 5;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        border: 1.5px solid rgba(255, 255, 255, 0.4);
        background: rgba(41, 65, 105, 0.45);
        backdrop-filter: blur(6px);
        color: var(--white);
        font-size: 1.5rem;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition:
          background var(--tr),
          border-color var(--tr),
          transform var(--tr);
      }
      .hero-arrow:hover {
        background: var(--gold);
        border-color: var(--gold);
        color: var(--navy-deep);
        transform: translateY(-50%) scale(1.08);
      }
      .hero-arrow--prev {
        left: 24px;
      }
      .hero-arrow--next {
        right: 24px;
      }
      .hero-dots {
        position: absolute;
        left: 50%;
        bottom: 28px;
        transform: translateX(-50%);
        z-index: 5;
        display: flex;
        gap: 10px;
      }
      .hero-dot {
        width: 10px;
        height: 10px;
        padding: 0;
        border: none;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition:
          background var(--tr),
          width var(--tr);
      }
      .hero-dot:hover {
        background: rgba(255, 255, 255, 0.75);
      }
      .hero-dot.is-active {
        background: var(--gold);
        width: 28px;
        border-radius: 6px;
      }
      .js-fullheight {
        min-height: 70vh;
      }
      .d-flex {
        display: flex;
      }
      .align-items-center {
        align-items: center;
      }
      .align-items-stretch {
        align-items: stretch;
      }
      .justify-content-center {
        justify-content: center;
      }
      .text-center {
        text-align: center;
      }
      .ms-auto {
        margin-left: auto;
      }

      /* ABOUT SECTION */
      .ftco-section {
        padding: 88px 0;
        position: relative;
      }
      .ftco-section:not(.bg-light) {
        background: linear-gradient(150deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
        overflow: hidden;
      }
      .ftco-section:not(.bg-light)::before {
        content: "";
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 55% 60% at 80% 50%, rgba(200, 168, 75, 0.06) 0%, transparent 65%);
        pointer-events: none;
      }
      .ftco-section.bg-light {
        background: var(--navy-pale);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
      }
      .row {
        display: flex;
        flex-wrap: wrap;
        margin: 0 -15px;
      }
      .row > [class*="col-"] {
        padding: 0 15px;
        width: 100%;
        margin-top: 10px;
      }
      @media (min-width: 768px) {
        .col-md-3 {
          width: 25%;
        }
        .col-md-6 {
          width: 50%;
        }
        .col-md-7 {
          width: 58.333%;
        }
      }
      @media (min-width: 992px) {
        .col-lg-5 {
          width: 41.667%;
        }
        .col-lg-6 {
          width: 50%;
        }
        .order-lg-last {
          order: 2;
        }
        .my-lg-5 {
          margin-top: 3rem;
          margin-bottom: 3rem;
        }
      }
      .row.g-lg-5 {
        margin: 0 -15px;
      }
      @media (min-width: 992px) {
        .row.g-lg-5 {
          margin: 0 -2rem;
        }
        .row.g-lg-5 > [class*="col-"] {
          padding: 0 2rem;
        }
      }
      .mb-lg-0 {
        margin-bottom: 1rem;
      }
      @media (min-width: 992px) {
        .mb-lg-0 {
          margin-bottom: 0;
        }
      }
      .subheading {
        display: inline-block;
        color: var(--gold);
        text-transform: uppercase;
        letter-spacing: 0.14em;
        font-weight: 700;
        font-size: 0.68rem;
        margin-bottom: 10px;
        background: rgba(200, 168, 75, 0.12);
        padding: 4px 14px;
        border-radius: 20px;
        border: 1px solid rgba(200, 168, 75, 0.25);
      }
      .heading-section h2.chg {
        color: var(--white);
        font-weight: 800;
        font-size: clamp(1.4rem, 3vw, 2rem);
        line-height: 1.25;
      }
      .abt {
        color: rgba(255, 255, 255, 0.8) !important;
        font-size: 0.925rem;
        line-height: 1.8;
        margin-bottom: 0.75rem;
      }

      /* About service mini-cards */
      .services-wrap {
        padding: 8px;
      }
      .services {
        background: rgba(255, 255, 255, 0.06);
        border: 1px solid rgba(200, 168, 75, 0.18);
        border-radius: var(--radius-md);
        padding: 1.75rem 1.5rem;
        height: 100%;
        width: 100%;
        transition:
          background var(--tr),
          transform var(--tr),
          box-shadow var(--tr),
          border-color var(--tr);
        position: relative;
        overflow: hidden;
      }
      .services::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: var(--gold);
        transform: scaleX(0);
        transition: transform var(--tr);
        transform-origin: left;
      }
      .services:hover::before,
      .services.actives::before {
        transform: scaleX(1);
      }
      .services:hover,
      .services.actives {
        background: var(--gold);
        border-color: var(--gold);
        transform: translateY(-5px);
        box-shadow: var(--shadow-md);
      }
      .services .icon span {
        font-size: 2.4rem;
        color: var(--gold);
        display: inline-block;
        margin-bottom: 0.85rem;
        transition: color var(--tr);
      }
      .services:hover .icon span,
      .services.actives .icon span {
        color: var(--navy-deep);
      }
      .services .text h2 {
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--white) !important;
        margin-bottom: 0.5rem;
        transition: color var(--tr);
      }
      .services:hover .text h2,
      .services.actives .text h2 {
        color: var(--navy-deep) !important;
      }
      .services .text p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.875rem;
        margin: 0;
        line-height: 1.65;
        transition: color var(--tr);
      }
      .services:hover .text p,
      .services.actives .text p {
        color: var(--navy-deep);
      }

      /* SERVICES SECTION (bg-light) */
      .bg-light .heading-section h2 {
        color: var(--navy);
        font-weight: 800;
        font-size: clamp(1.3rem, 2.8vw, 1.9rem);
      }
      .bg-light .subheading {
        background: rgba(41, 65, 105, 0.08);
        color: var(--navy-mid);
        border-color: rgba(41, 65, 105, 0.15);
      }

      /* Flow Wrap */
      .flow-wrap {
        background: var(--white);
        border-radius: var(--radius-md);
        padding: 2.2rem 1.4rem;
        width: 100%;
        text-align: center;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--border);
        border-bottom: 3px solid transparent;
        transition:
          border-color var(--tr),
          transform var(--tr),
          box-shadow var(--tr);
        position: relative;
        overflow: hidden;
      }
      .flow-wrap::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, var(--navy), var(--gold));
        transform: scaleX(0);
        transition: transform var(--tr);
        transform-origin: left;
      }
      .flow-wrap:hover::before {
        transform: scaleX(1);
      }
      .flow-wrap:hover {
        border-bottom-color: var(--gold);
        transform: translateY(-6px);
        box-shadow: var(--shadow-md);
      }
      .flow-wrap .icon span {
        font-size: 2.8rem;
        color: var(--navy);
        transition:
          color var(--tr),
          transform var(--tr);
        display: inline-block;
      }
      .flow-wrap:hover .icon span {
        color: var(--gold-dark);
        transform: scale(1.08);
      }
      .flow-wrap .text h2 {
        font-size: 0.9rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-top: 1rem;
        line-height: 1.4;
        transition: color var(--tr);
      }
      .flow-wrap .text a {
        text-decoration: none;
      }
      .flow-wrap .text a:hover h2 {
        color: var(--navy);
      }
      .ftco-section.bg-light .row.justify-content-center > [class*="col-"] {
        margin-bottom: 24px;
      }

      /* CLIENTS TABLE */
      .table-container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 72px 24px 80px;
        position: relative;
      }
      .table-container::before {
        content: "";
        position: absolute;
        top: 0;
        left: 24px;
        right: 24px;
        height: 4px;
        background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy-mid));
        border-radius: 0 0 4px 4px;
      }
      h1.clients {
        text-align: center;
        color: var(--navy);
        font-weight: 800;
        font-size: clamp(1.3rem, 3vw, 2rem);
        margin-bottom: 36px;
        letter-spacing: 0.04em;
      }
      h1.clients::after {
        content: "";
        display: block;
        width: 56px;
        height: 3px;
        background: var(--gold);
        border-radius: 2px;
        margin: 12px auto 0;
      }
      .table-scroll-wrap {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-md);
        box-shadow: var(--shadow-md);
      }
      .table-container table {
        width: 100%;
        border-collapse: collapse;
        border-radius: var(--radius-md);
        overflow: hidden;
        min-width: 600px;
      }
      .table-container th {
        background: var(--navy);
        color: var(--white);
        text-align: left;
        font-weight: 600;
        font-size: 0.875rem;
        padding: 14px 18px;
        letter-spacing: 0.03em;
        border-right: 1px solid rgba(255, 255, 255, 0.08);
      }
      .table-container th:last-child {
        border-right: none;
      }
      .table-container th:first-child {
        background: var(--navy-deep);
        border-right: 2px solid var(--gold);
      }
      .table-container td {
        background: var(--white);
        padding: 14px 18px;
        border-bottom: 1px solid var(--border);
        border-right: 1px solid var(--border);
        vertical-align: top;
        font-size: 0.875rem;
        line-height: 1.6;
        transition: background var(--tr);
      }
      .table-container td:last-child {
        border-right: none;
      }
      .table-container td.industry {
        font-weight: 700;
        color: var(--navy);
        background: var(--navy-pale);
        border-right: 2px solid var(--gold);
        min-width: 140px;
      }
      .table-container td.empty {
        text-align: center;
        color: var(--text-light);
        font-size: 1rem;
      }
      .table-container tr:hover td {
        background: var(--navy-light);
      }
      .table-container tr:hover td.industry {
        background: #dce4f0;
      }
      .table-container ul {
        list-style: none;
        padding: 0;
        margin: 0;
      }
      .table-container ul li {
        padding-left: 16px;
        position: relative;
        margin-bottom: 5px;
        font-size: 0.86rem;
        color: var(--text-mid);
      }
      .table-container ul li::before {
        content: "—";
        position: absolute;
        left: 0;
        color: var(--gold);
        font-weight: 700;
      }

      /* FOOTER */
      .csl-footer {
        background: var(--navy-deep);
        color: var(--white);
        position: relative;
        overflow: hidden;
        padding-top: 56px;
      }
      .csl-footer .overlay {
        position: absolute;
        inset: 0;
        background: radial-gradient(ellipse 70% 50% at 10% 80%, rgba(200, 168, 75, 0.06) 0%, transparent 60%), radial-gradient(ellipse 50% 60% at 90% 20%, rgba(58, 90, 140, 0.25) 0%, transparent 60%);
        pointer-events: none;
      }
      .csl-footer__container {
        max-width: var(--container);
        margin: 0 auto;
        padding: 0 24px 40px;
        position: relative;
      }
      .csl-footer__grid {
        display: grid;
        grid-template-columns: 2fr 1.2fr 1fr;
        gap: 40px 32px;
        align-items: start;
      }
      .csl-footer__brand-name {
        display: block;
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--white);
        text-decoration: none;
        margin-bottom: 4px;
        transition: color var(--tr);
      }
      .csl-footer__brand-name:hover {
        color: var(--gold);
      }
      .csl-footer__brand-tagline {
        display: block;
        font-size: 0.7rem;
        color: var(--gold-light);
        letter-spacing: 0.1em;
        text-transform: uppercase;
        margin-bottom: 20px;
        opacity: 0.8;
      }
      .csl-footer__contact-list {
        list-style: none;
        padding: 0;
        margin: 0 0 20px;
        display: flex;
        flex-direction: column;
        gap: 10px;
      }
      .csl-footer__contact-list li {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.72);
        line-height: 1.5;
      }
      .csl-footer__contact-list .icon {
        color: var(--gold);
        font-size: 0.9rem;
        margin-top: 2px;
        flex-shrink: 0;
        width: 16px;
      }
      .csl-footer__contact-list a {
        color: inherit;
        text-decoration: none;
        transition: color var(--tr);
      }
      .csl-footer__contact-list a:hover {
        color: var(--gold);
      }
      .csl-footer__social {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        gap: 10px;
      }
      .csl-footer__social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(200, 168, 75, 0.3);
        color: rgba(255, 255, 255, 0.72);
        font-size: 0.9rem;
        text-decoration: none;
        transition:
          background var(--tr),
          color var(--tr),
          transform var(--tr);
      }
      .csl-footer__social a:hover {
        background: var(--gold);
        color: var(--navy-deep);
        border-color: var(--gold);
        transform: translateY(-2px);
      }
      .csl-footer__heading {
        font-size: 0.78rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: var(--gold);
        margin: 0 0 16px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(200, 168, 75, 0.2);
      }
      .csl-footer__services {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 8px;
      }
      .csl-footer__services a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition:
          color var(--tr),
          gap var(--tr);
      }
      .csl-footer__services a:hover {
        color: var(--white);
        gap: 12px;
      }
      .csl-footer__services .arrow,
      .csl-footer__faq-link .arrow {
        color: var(--gold);
        font-size: 1rem;
        flex-shrink: 0;
        transition: transform var(--tr);
      }
      .csl-footer__services a:hover .arrow,
      .csl-footer__faq-link:hover .arrow {
        transform: translateX(4px);
      }
      .csl-footer__faq-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
      }
      .csl-footer__faq-link:hover {
        color: var(--white);
      }
      .csl-footer__bottom {
        background: var(--navy);
        padding: 14px 24px;
        text-align: center;
        border-top: 1px solid rgba(200, 168, 75, 0.15);
      }
      .csl-footer__bottom p {
        font-size: 0.78rem;
        color: rgba(255, 255, 255, 0.55);
        margin: 0;
      }
      .csl-footer__bottom a {
        color: var(--gold-light);
        text-decoration: none;
        font-weight: 600;
      }

      /* RESPONSIVE */
      @media (min-width: 1200px) {
        .slider-hero {
          height: 700px;
        }
        .text h1.angats,
        .text h1.upper {
          font-size: 2.6rem;
        }
        .ftco-section {
          padding: 100px 0;
        }
      }
      @media (min-width: 768px) and (max-width: 1023px) {
        .slider-hero {
          height: 560px;
        }
        .text h1.angats,
        .text h1.upper {
          font-size: 1.9rem;
        }
        .hero-logo-box img.carouselimg {
          max-width: 110px;
        }
        .ftco-section {
          padding: 68px 0;
        }
        .heading-section h2.chg {
          font-size: 1.6rem;
        }
        .flow-wrap {
          padding: 1.8rem 1.2rem;
        }
        .csl-footer__grid {
          grid-template-columns: 1fr 1fr;
          gap: 32px 24px;
        }
        .csl-footer__col:first-child {
          grid-column: 1/-1;
        }
        .table-container {
          padding: 52px 20px 60px;
        }
      }
      @media (min-width: 576px) and (max-width: 767px) {
        .slider-hero {
          height: 500px;
        }
        .text h1.angats,
        .text h1.upper {
          font-size: 1.55rem;
        }

        .hero-arrow {
          width: 38px;
          height: 38px;
          font-size: 1.2rem;
        }
        .hero-arrow--prev {
          left: 12px;
        }
        .hero-arrow--next {
          right: 12px;
        }
        .ftco-section {
          padding: 56px 0;
        }
        .col-md-3 {
          width: 50%;
        }
        .services-wrap {
          padding: 6px;
        }
        .services {
          padding: 1.4rem 1.2rem;
        }
        .flow-wrap {
          padding: 1.6rem 1rem;
        }
        .csl-footer__grid {
          grid-template-columns: 1fr 1fr;
          gap: 28px 20px;
        }
        .csl-footer__col:first-child {
          grid-column: 1/-1;
        }
        .table-container {
          padding: 40px 16px 48px;
        }
      }
      @media (max-width: 575px) {
        .navbar .container-xl {
          padding: 8px 14px;
        }
        .withlogo {
          gap: 8px;
        }
        .imgnav {
          width: 34px;
          height: 34px;
        }
        .navbar-brand {
          font-size: 0.82rem;
          max-width: 200px;
        }
        .navbar-brand .sml {
          display: none;
        }
        .slider-hero {
          height: 440px;
        }
        .text h1.angats,
        .text h1.upper {
          font-size: 1.2rem;
          letter-spacing: 0;
        }
        .text h1.angats::after,
        .text h1.upper::after {
          display: none;
        }

        .hero-logo-box {
          margin-bottom: 1rem;
        }
        .hero-arrow {
          width: 34px;
          height: 34px;
          font-size: 1rem;
        }
        .hero-arrow--prev {
          left: 8px;
        }
        .hero-arrow--next {
          right: 8px;
        }
        .hero-dots {
          bottom: 16px;
        }
        .hero-dot {
          width: 8px;
          height: 8px;
        }
        .hero-dot.is-active {
          width: 20px;
        }
        .btn {
          font-size: 0.82rem;
          padding: 10px 20px;
        }
        .ftco-section {
          padding: 44px 0;
        }
        .heading-section h2.chg {
          font-size: 1.25rem;
        }
        .subheading {
          font-size: 0.6rem;
        }
        .services-wrap {
          padding: 5px;
        }
        .services {
          padding: 1.2rem 1rem;
        }
        .services .icon span {
          font-size: 1.8rem;
        }
        .services .text h2 {
          font-size: 0.82rem;
        }
        .services .text p {
          font-size: 0.8rem;
        }
        .col-md-3 {
          width: 50%;
        }
        .flow-wrap {
          padding: 1.4rem 0.9rem;
        }
        .flow-wrap .icon span {
          font-size: 2.2rem;
        }
        .flow-wrap .text h2 {
          font-size: 0.82rem;
        }
        .bg-light .heading-section h2 {
          font-size: 1.2rem;
        }
        .table-container {
          padding: 36px 14px 44px;
        }
        h1.clients {
          font-size: 1.2rem;
          margin-bottom: 24px;
        }
        .table-container th,
        .table-container td {
          font-size: 0.8rem;
          padding: 10px 12px;
        }
        .table-container ul li {
          font-size: 0.78rem;
        }
        .csl-footer {
          padding-top: 36px;
        }
        .csl-footer__grid {
          grid-template-columns: 1fr;
          gap: 28px;
        }
        .csl-footer__container {
          padding: 0 16px 32px;
        }
        .csl-footer__brand-name {
          font-size: 1rem;
        }
      }
      @media (max-height: 500px) and (max-width: 900px) and (orientation: landscape) {
        .slider-hero {
          height: 300px;
        }
        .hero-logo-box {
          margin-bottom: 0.6rem;
        }
        .hero-logo-box img.carouselimg {
          max-width: 60px;
        }
        .text h1.angats,
        .text h1.upper {
          font-size: 1rem;
        }
        .hero-slider p {
          margin-top: 0.75rem;
        }
        .btn {
          padding: 8px 18px;
          font-size: 0.8rem;
        }
        .ftco-section {
          padding: 36px 0;
        }
        .flow-wrap {
          padding: 1.2rem 0.9rem;
        }
        .csl-footer {
          padding-top: 28px;
        }
        .csl-footer__grid {
          grid-template-columns: 1fr 1fr;
        }
      }
      @media (prefers-reduced-motion: reduce) {
        .hero-slider .item,
        .hero-slider .img {
          transition: none;
        }
        *,
        *::before,
        *::after {
          animation-duration: 0.01ms !important;
          transition-duration: 0.01ms !important;
        }
      }

      /* Flaticon placeholder icons (since flaticon.css not loaded in preview) */
      [class^="flaticon-"]::before,
      [class*=" flaticon-"]::before {
        font-family: var(--font);
        font-style: normal;
        font-size: 2.5rem;
        display: inline-block;
      }
      .flaticon-accountant::before {
        content: "💼";
      }
      .flaticon-research::before {
        content: "🔍";
      }
      .flaticon-recession::before {
        content: "📈";
      }
      .flaticon-money::before {
        content: "💰";
      }
      .flaticon-accounting::before {
        content: "📋";
      }
      .flaticon-financial::before {
        content: "📊";
      }
      .flaticon-tax::before {
        content: "🏢";
      }
      .flaticon-insurance::before {
        content: "📑";
      }
      .flaticon-retirement-plan::before {
        content: "🤝";
      }
      .flaticon-risk::before {
        content: "📉";
      }

      .preview-badge {
        position: fixed;
        bottom: 12px;
        right: 12px;
        background: var(--navy);
        color: var(--white);
        font-family: var(--font);
        font-size: 0.7rem;
        font-weight: 600;
        padding: 6px 14px;
        border-radius: 20px;
        border: 1.5px solid var(--gold);
        letter-spacing: 0.06em;
        z-index: 9998;
        pointer-events: none;
        box-shadow: var(--shadow-md);
      }
   /* Basic fade-in for the whole page */
body {
  opacity: 0;
  animation: fadeIn 0.6s ease-in forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Optional: fade-in with slight upward movement, mas smooth ang feel */
.fade-in {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeInUp 0.6s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}