@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
    font-family: 'Poppins', sans-serif !important;
}

/* Button Text SLide Up Animation */
.slide-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}
.slide-btn .btn-text {
    position: relative;
    overflow: hidden;
}
.slide-btn .btn-text span {
    display: inline-block;
    transition: transform 0.3s ease;
}
.slide-btn .text-hover {
    position: absolute;
    top: 100%;
    left: 0;
}
.slide-btn:hover .text-default {
    transform: translateY(-120%);
}
.slide-btn:hover .text-hover {
    transform: translateY(-100%);
}

.btn-style-two.slide-btn {
    border: 1px solid var(--secondary) !important;
}

/* Header Banner */
.tps-hero-banner {
    position: relative;
    background: linear-gradient(90deg, #0163A8 0%, #002a52 50%, #001a33 100%);
    overflow: hidden;
}

.tps-hero-banner .container {
    position: relative;
    z-index: 2;
}

.tps-hero-banner-content {
    padding: 72px 0;
}

.tps-hero-banner-content h1 {
    color: #fff;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 560px;
}

.tps-hero-banner-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 28px;
    max-width: 520px;
}

.tps-hero-banner-content .btn-style-two {
    padding: 12px 24px;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(35, 134, 0, 0.3);
}

.tps-hero-banner-media {
    position: relative;
    min-height: 420px;
    height: 100%;
}

.tps-hero-banner-media::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 35%;
    background: linear-gradient(90deg, #002a52 0%, rgba(0, 42, 82, 0.85) 40%, transparent 100%);
    z-index: 1;
    pointer-events: none;
}

.tps-hero-banner-media img {
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center right;
    display: block;
}

@media (max-width: 991.98px) {
    .tps-hero-banner {
        background: #003366;
    }

    .tps-hero-banner-content {
        padding: 48px 0 24px;
    }

    .tps-hero-banner-content h1 {
        font-size: 36px;
        max-width: 100%;
    }

    .tps-hero-banner-content p {
        font-size: 16px;
        max-width: 100%;
    }

    .tps-hero-banner-media {
        min-height: 280px;
        margin-bottom: 0;
        border-radius: 0;
    }

    .tps-hero-banner-media::before {
        width: 100%;
        height: 40%;
        bottom: auto;
        background: linear-gradient(180deg, #003366 0%, transparent 100%);
    }

    .tps-hero-banner-media img {
        min-height: 280px;
        object-position: center;
    }
}

@media (max-width: 767.98px) {
    .tps-hero-banner-content {
        padding: 40px 0 20px;
    }

    .tps-hero-banner-content h1 {
        font-size: 30px;
    }

    .tps-hero-banner-content p {
        font-size: 15px;
        line-height: 26px;
        margin-bottom: 24px;
    }

    .tps-hero-banner-media {
        min-height: 240px;
    }

    .tps-hero-banner-media img {
        min-height: 240px;
    }
}

@media (max-width: 575.98px) {
    .tps-hero-banner-content h1 {
        font-size: 26px;
    }

    .tps-hero-banner-content .btn-style-two {
        display: inline-block;
        width: 100%;
        text-align: center;
    }

    .slide-btn .btn-text {
        text-align: center;
        display: inline-block;
    }

    .tps-cta-card .slide-btn.btn-style-two,
    .tps-hero-banner-content .slide-btn.btn-style-two {
        height: 50px;
    }
}

.tps-impact-section {
    position: relative;
    padding: 60px 0 80px;
    background-color: #fff;
}

.tps-impact-border-defs {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
    pointer-events: none;
}

.tps-metric-card {
    position: relative;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #D0D5DD;
    padding: 12px 24px;
    height: 100%;
    isolation: isolate;
    transition: box-shadow 0.3s ease;
}

.tps-metric-card-border {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    border-radius: 16px;
}

.tps-metric-card-border-svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
}

.tps-metric-card-border-path {
    fill: none;
    stroke: url(#tps-metric-border-gradient);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 0.22 0.78;
    stroke-dashoffset: 0;
    opacity: 1;
    animation: tps-metric-border-travel 2.5s linear infinite;
}

.tps-metric-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

@keyframes tps-metric-border-travel {
    to {
        stroke-dashoffset: 1;
    }
}

.tps-metric-card .metric-value,
.tps-metric-card p {
    position: relative;
    z-index: 2;
}

.tps-metric-card .metric-value {
    font-size: 28px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.3;
    margin-bottom: 5px;
}

.tps-metric-card p {
    font-size: 16px;
    line-height: 24px;
    color: #344054;
    margin-bottom: 0;
}

.tps-impact-main {
    margin-top: 30px;
}

.tps-impact-img img {
    border-radius: 24px;
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.tps-impact-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--body);
    margin-bottom: 20px;
}

.tps-impact-content p:last-of-type {
    margin-bottom: 36px;
}

.tps-impact-stats {
    margin-top: 0;
}

.tps-impact-stats ul {
    display: flex;
    justify-content: flex-start;
    gap: 48px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.tps-impact-stats ul li {
    text-align: left;
}

.tps-impact-stats li h5 {
    color: transparent;
    -webkit-text-stroke: 1.5px var(--body);
    letter-spacing: 2px;
    font-size: 46px;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
    line-height: 1.1;
    text-shadow: none;
}

.tps-impact-stats li h5::before {
    content: '';
    position: absolute;
    background-image: url(../img/shapes/blue_background_dot.svg);
    background-repeat: no-repeat;
    background-position: top left;
    width: 32px;
    height: 32px;
    top: -8px;
    left: -4px;
    background-size: contain;
    opacity: 0.9;
    z-index: -1;
}

.tps-impact-stats ul li p {
    font-size: 20px;
    color: var(--primary);
    margin-top: 10px;
    margin-bottom: 0 !important;
    font-weight: 500;
}

.about_stats {
    margin: 0 !important;
}

@media (max-width: 991.98px) {
    .tps-impact-section {
        padding: 48px 0 60px;
    }

    .tps-impact-main {
        margin-top: 32px;
    }

    .tps-impact-img {
        margin-bottom: 8px;
    }

    .tps-impact-stats ul {
        gap: 32px;
    }

    .tps-impact-stats li h5 {
        font-size: 40px;
    }

    .tps-service-card-img {
        margin: 0 !important;
    }
}

@media (max-width: 767.98px) {
    .tps-metric-card {
        padding: 24px 20px;
    }

    .tps-metric-card .metric-value {
        font-size: 24px;
    }

    .tps-impact-stats ul li {
        margin-bottom: 32px;
    }

    .tps-impact-stats ul li:last-child {
        margin-bottom: 0;
    }

    .tps-impact-stats li h5 {
        font-size: 36px;
    }
}

@media (max-width: 575.98px) {
    .tps-impact-section {
        padding: 40px 0 48px;
    }

    .tps-metric-card .metric-value {
        font-size: 22px;
    }

    .tps-metric-card p {
        font-size: 15px;
    }
    
    .tps-impact-stats ul {
        gap: 18px;
    }
}

/* Problems We Solve */
.tps-problems-section {
    position: relative;
    padding: 0 0 100px;
    overflow-x: hidden;
}

.tps-problems-section .tps-problems-slider {
    padding: 42px 20px 100px;
}

.tps-problems-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FFFFFF 0%, #EEF7FD 45%, #DDF1FF 100%);
    z-index: 0;
}

.tps-problems-section .container {
    position: relative;
    z-index: 1;
}

.tps-problems-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 48px;
}

.tps-problems-title-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    min-width: 0;
}

.tps-problems-title-wrap h2 {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.tps-problems-line {
    flex: 1;
    height: 2px;
    margin-left: 28px;
    margin-right: 28px;
    background: linear-gradient(90deg, #0FA3DD 0%, rgba(15, 163, 221, 0.15) 100%);
    border-radius: 2px;
    max-width: 520px;
}

.tps-problems-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.tps-problems-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #D0D5DD;
    background: #fff;
    color: #98A2B3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tps-problems-nav button i {
    font-size: 14px;
}

.tps-problems-nav .tps-problems-prev:not(.swiper-button-disabled) {
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    border: none !important;
    color: #fff;
}

.tps-problems-nav .tps-problems-next:not(.swiper-button-disabled) {
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    border: none !important;
    color: #fff;
}

.tps-problems-nav button.swiper-button-disabled {
    opacity: 1;
    cursor: not-allowed;
}

.tps-problems-nav button img {
    width: 16px;
}

.tps-problems-nav button.swiper-button-disabled img {
    filter: brightness(0) saturate(100%) opacity(.25);
}

.tps-problems-slider {
    overflow: hidden;
}

.tps-problems-slider .swiper-slide {
    height: auto;
}

.tps-problem-card {
    background: #fff;
    border: 1px solid #D0D5DD;
    border-radius: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    padding: 20px;
    height: 100%;
    min-height: 260px;
    transition: all 0.3s ease;
}

.tps-problem-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: scale(1.08);
}

.tps-problem-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--primary);
    font-size: 22px;
}

.tps-problem-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tps-problem-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--body);
    line-height: 26px;
    margin-bottom: 10px;
}

.tps-problem-card p {
    font-size: 15px;
    line-height: 24px;
    color: #344054;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .tps-problems-slider {
        padding-bottom: 52px;
    }

    .tps-problems-slider .swiper-slide:nth-child(odd) .tps-problem-card {
        margin-top: 48px;
    }

    .tps-problems-slider .swiper-slide:nth-child(even) .tps-problem-card {
        margin-top: 0;
    }
}

@media (max-width: 991.98px) {
    .tps-problems-section {
        padding: 0 0 72px;
    }

    .tps-problems-header {
        margin-bottom: 32px;
    }

    .tps-problems-line {
        display: none;
    }

    .tps-problems-slider .swiper-slide .tps-problem-card {
        margin-top: 0 !important;
        min-height: auto;
    }
}

@media (max-width: 767.98px) {
    .tps-problems-section {
        padding: 0 0 60px;
    }

    .tps-problems-header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .tps-problems-title-wrap {
        width: 100%;
    }

    .tps-problems-nav {
        margin-left: auto;
    }

    .tps-problem-card {
        padding: 24px 20px;
    }

    .tps-problem-card h3 {
        font-size: 17px;
    }
}

@media (max-width: 575.98px) {
    .tps-problems-title-wrap h2 {
        font-size: 20px;
        white-space: normal;
    }

    .tps-problems-nav button {
        width: 40px;
        height: 40px;
    }
}

/* Our Services */
.tps-services-section {
    padding: 50px 0;
    background: #F9FAFB;
}

.tps-services-header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 56px;
}

.tps-services-header .subtitle {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tps-services-header h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.3;
    margin: 0;
}

.tps-service-card {
    display: flex;
    align-items: stretch;
    height: 100%;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.tps-service-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
}

.tps-service-card-img {
    position: relative;
    flex: 0 0 40%;
    z-index: 2;
    height: 270px;
    margin-top: -30px;
    margin-left: -30px;
    overflow: hidden;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.tps-service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tps-service-card-body {
    flex: 1;
    padding: 28px 28px;
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.tps-service-card-body h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--body);
    line-height: 26px;
    margin-bottom: 14px;
}

.tps-service-card-body ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.tps-service-card-body ul li {
    font-size: 15px;
    line-height: 24px;
    color: #344054;
    margin-bottom: 4px;
}

.tps-service-card-body ul li:last-child {
    margin-bottom: 0;
}

@media (max-width: 1199.98px) {
    .tps-service-card-img {
        flex: 0 0 44%;
        margin-right: -20px;
    }

    .tps-service-card-body {
        padding: 24px 24px 24px 40px;
    }

    .tps-service-card-body h3 {
        font-size: 17px;
    }
}

@media (max-width: 991.98px) {
    .tps-services-section {
        padding: 64px 0;
    }

    .tps-services-header {
        margin-bottom: 40px;
    }

    .tps-services-header h2 {
        font-size: 28px;
    }

    .tps-service-card {
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        overflow: hidden;
    }

    .tps-service-card-img {
        flex: none;
        width: 100%;
        margin-right: 0;
    }

    .tps-service-card-img img {
        min-height: 220px;
        border-radius: 0;
    }

    .tps-service-card-body {
        padding: 24px;
        margin-top: 0;
        border-radius: 0;
        box-shadow: none;
    }
}

@media (max-width: 767.98px) {
    .tps-services-section {
        padding: 48px 0;
    }

    .tps-services-header .subtitle {
        font-size: 20px;
    }

    .tps-services-header h2 {
        font-size: 24px;
    }

    .tps-service-card-img img {
        min-height: 200px;
    }
}

/* Domain Expertise */
.tps-domain-section {
    position: relative;
    padding: 72px 0 88px;
    background-image: url(../img/technical-publication-services/domain-expertise-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow-x: hidden;
}

.tps-domain-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0.8) 0%,rgba(1, 99, 168, 0.6) 100%);
    z-index: 0;
}

.tps-domain-section .container {
    position: relative;
    z-index: 1;
}

.tps-domain-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.tps-domain-header h2 {
    color: #fff;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    max-width: 720px;
}

.tps-domain-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    padding-top: 6px;
}

.tps-domain-nav button {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.55);
    background: transparent;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.tps-domain-nav button i {
    font-size: 14px;
}

.tps-domain-nav .tps-domain-prev:not(.swiper-button-disabled) {
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    border: none !important;
    color: #fff;
}

.tps-domain-nav .tps-domain-next:not(.swiper-button-disabled) {
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    border: none !important;
    color: #fff;
}

.tps-domain-nav button img {
    width: 16px;
}

.tps-domain-nav button.swiper-button-disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.tps-domain-slider {
    overflow: hidden;
}

.tps-domain-slider .swiper-slide {
    height: auto;
}

.tps-domain-slide-grid > [class*="col-"] {
    display: flex;
}

.tps-domain-slide-grid .tps-domain-card {
    width: 100%;
}

.tps-domain-card {
    position: relative;
    display: block;
    border-radius: 16px;
    overflow: hidden;
    min-height: 300px;
    border: 2px solid transparent;
    text-decoration: none;
    transition: all 0.4s ease;
}

.tps-domain-card img {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.tps-domain-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.78) 100%);
    z-index: 1;
    pointer-events: none;
    transition: transform 0.4s ease;
}

.tps-domain-card h3 {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 22px;
    z-index: 2;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
}

.tps-domain-card:hover {
    border: 2px solid #0FA3DD;
}

.tps-domain-card:hover::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.95) 90%);
}

@media (max-width: 1199.98px) {
    .tps-domain-header h2 {
        font-size: 30px;
    }

    .tps-domain-card {
        min-height: 280px;
    }

    .tps-domain-card img {
        min-height: 280px;
    }
}

@media (max-width: 991.98px) {
    .tps-domain-section {
        padding: 56px 0 72px;
    }

    .tps-domain-header {
        margin-bottom: 32px;
    }

    .tps-domain-header h2 {
        font-size: 26px;
    }
}

@media (max-width: 767.98px) {
    .tps-domain-section {
        padding: 48px 0 60px;
    }

    .tps-domain-header {
        flex-wrap: wrap;
        gap: 16px;
    }

    .tps-domain-header h2 {
        font-size: 24px;
        max-width: 100%;
    }

    .tps-domain-nav {
        margin-left: auto;
        padding-top: 0;
    }

    .tps-domain-card {
        min-height: 260px;
    }

    .tps-domain-card img {
        min-height: 260px;
    }

    .tps-domain-card h3 {
        font-size: 15px;
        line-height: 22px;
    }
}

@media (max-width: 575.98px) {
    .tps-domain-header h2 {
        font-size: 22px;
    }

    .tps-domain-nav button {
        width: 40px;
        height: 40px;
    }
}

/* About Katalyst Engineering */
.tps-about-section {
    padding: 80px 0;
    background: #fff;
}

.tps-about-title-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}

.tps-about-title-wrap h4 {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    white-space: nowrap;
}

.tps-about-line {
    flex: 1;
    max-width: 120px;
    height: 2px;
    background: linear-gradient(90deg, #0FA3DD 0%, rgba(15, 163, 221, 0.2) 100%);
    border-radius: 2px;
}

.tps-about-content h2 {
    font-size: 34px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.3;
    margin-bottom: 24px;
}

.tps-about-content p {
    font-size: 16px;
    line-height: 28px;
    color: var(--body);
    margin-bottom: 18px;
}

.tps-about-content p:last-child {
    margin-bottom: 0;
}

.tps-about-collage {
    position: relative;
    display: grid;
    /* grid-template-columns: 1fr 1fr 1.3fr; */
    grid-template-rows: 170px 190px;
    gap: 14px;
    max-width: 560px;
    margin-left: auto;
}

.tps-about-dots {
    position: absolute;
    top: 40px;
    right: 156px;
    width: 100px;
    height: 100px;
    background: url(../img/shapes/blue_dots_shape_02.svg) no-repeat center / contain;
    z-index: 0;
    pointer-events: none;
}

.tps-about-img {
    overflow: hidden;
    border-radius: 14px;
    border: 3px solid #FFFFFF;    
}

.tps-about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.tps-about-img-1 {
    grid-column: 1;
    grid-row: 1;
    width: 200px;
    height: 250px;
    margin-left: 100px;
    z-index: 1;
}

.tps-about-img-2 {
    grid-column: 2;
    grid-row: 1;
    top: 100px;
    position: relative;
    width: 240px;
    height: 230px;
    margin-left: -240px;
    z-index: 2;
}

.tps-about-img-3 {
    grid-column: 1 / 3;
    grid-row: 2;
    margin-left: 50px;
    width: 200px;
    height: 200px;
    position: relative;
    z-index: 3;
}

.tps-about-img-4 {
    grid-column: 3;
    grid-row: 1 / 3;
}

@media (max-width: 1199.98px) {
    .tps-about-content h2 {
        font-size: 30px;
    }

    .tps-about-collage {
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .tps-about-section {
        padding: 64px 0;
    }

    .tps-about-content {
        margin-bottom: 8px;
    }

    .tps-about-content h2 {
        font-size: 28px;
    }

    .tps-about-collage {
        grid-template-rows: 180px 180px;
        margin-left: 0;
        margin-top: 24px;
    }

    .tps-about-dots {
        left: 270px !important;
    }

    .tps-about-img-1 {
        grid-column: 1;
        grid-row: 1;
    }

    .tps-about-img-2 {
        grid-column: 2;
        grid-row: 1;
        margin-left: -320px !important;
    }

    .tps-about-img-3 {
        grid-column: 1 / 3;
        grid-row: 2;
    }

    .tps-about-img-4 {
        grid-column: 1 / 3;
        grid-row: 3;
    }
}

@media (max-width: 767.98px) {
    .tps-about-section {
        padding: 48px 0;
    }

    .tps-about-title-wrap h4 {
        font-size: 20px;
    }

    .tps-about-content h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .tps-about-content p {
        font-size: 15px;
        line-height: 26px;
    }

    .tps-about-collage {
        grid-template-rows: 160px 160px;
        gap: 12px;
    }
}

@media (max-width: 575.98px) {
    .tps-about-title-wrap {
        flex-wrap: wrap;
        gap: 12px;
    }

    .tps-about-line {
        max-width: 80px;
    }

    .tps-about-collage {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, minmax(200px, auto));
    }

    .tps-about-dots {
        display: none;
    }

    .tps-about-img-1,
    .tps-about-img-2,
    .tps-about-img-3,
    .tps-about-img-4 {
        grid-column: 1;
        grid-row: auto;
    }

    .tps-about-dots {
        width: 56px;
        height: 56px;
        right: 8px;
    }
}

/* Why Choose Us */
.tps-why-choose-section {
    padding: 50px 0 90px;
    background: #fff;
}

.tps-why-choose-header {
    text-align: center;
    margin-bottom: 56px;
}

.tps-why-choose-header h2 {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
}

.tps-why-choose-grid {
    padding-top: 32px;
}

.tps-why-choose-grid--second {
    margin-top: 16px;
}

.tps-why-card {
    position: relative;
    background: #fff;
    border: 1px solid #E8F0F6;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    padding: 48px 24px 32px;
    text-align: center;
    height: 100%;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.tps-why-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    /* transform: translateY(-4px); */
    transform: scale(1.05);
}

.tps-why-icon {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    /* background: linear-gradient(180deg, #0163A8 0%, #0FA3DD 100%); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(1, 99, 168, 0.35);
}

.tps-why-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.tps-why-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: var(--body);
    line-height: 24px;
    margin-bottom: 12px;
}

.tps-why-card p {
    font-size: 15px;
    line-height: 24px;
    color: #344054;
    margin-bottom: 0;
}

@media (max-width: 991.98px) {
    .tps-why-choose-section {
        padding: 64px 0 72px;
    }

    .tps-why-choose-header {
        margin-bottom: 48px;
    }

    .tps-why-choose-header h2 {
        font-size: 28px;
    }

    .tps-why-choose-grid > [class*="col-"] {
        margin-bottom: 8px;
    }

    .ai_ml_section.software_and_tools .tab-content>.tab-pane {
        width: 100% !important;
    }

    .ai_ml_logos_grid.cols-3,
    .ai_ml_logos_grid.cols-2 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 767.98px) {
    .tps-why-choose-section {
        padding: 48px 0 60px;
    }

    .tps-why-choose-header h2 {
        font-size: 24px;
    }

    .tps-why-card {
        padding: 44px 20px 28px;
    }

    .tps-why-card h3 {
        font-size: 16px;
    }
    .ai_ml_logos_grid.cols-3,
    .ai_ml_logos_grid.cols-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .tps-compliance-label br {
        display: none;
    }
}

@media (max-width: 575.98px) {
    .tps-why-choose-header {
        margin-bottom: 40px;
    }

    .tps-why-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        top: -28px;
    }

    .ai_ml_logos_grid.cols-3,
    .ai_ml_logos_grid.cols-2 {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}

/* Case Study */
.btn-style-two {
    border-radius: 8px;
    border: 2px solid var(--secondary);
    padding: 10px 20px;
    color: #fff;
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.btn-style-two:hover {
    color: #fff;
    opacity: 0.92;
}

.tps-case-study-section {
    padding: 0 0 80px 0;
    background: #fff;
}

.tps-case-intro h2 {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
}

.tps-case-intro p {
    font-size: 16px;
    line-height: 28px;
    color: #344054;
    margin-bottom: 0;
    max-width: 320px;
}

.tps-case-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    min-height: 340px;
    background-image: url(../img/technical-publication-services/case-study.jpg);
    background-size: cover;
    background-position: center;
    padding: 40px;
    display: flex;
    align-items: flex-end;
}

.tps-case-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(1, 99, 168, 0.5) 0%,rgba(1, 99, 168, 0.5) 100%);
    z-index: 0;
}

.tps-case-card-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
}

.tps-case-label {
    display: block;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 12px;
}

.tps-case-card-content h3 {
    color: #fff;
    font-size: 26px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 16px;
}

.tps-case-card-content p {
    color: rgba(255, 255, 255, 0.92);
    font-size: 15px;
    line-height: 24px;
    margin-bottom: 24px;
}

@media (max-width: 991.98px) {
    .tps-case-study-section {
        padding: 64px 0;
    }

    .tps-case-intro {
        margin-bottom: 24px;
    }

    .tps-case-intro h2 {
        font-size: 28px;
    }

    .tps-case-intro p {
        max-width: 100%;
    }

    .tps-case-card {
        min-height: 300px;
        padding: 32px;
    }

    .tps-case-card-content h3 {
        font-size: 22px;
    }
}

@media (max-width: 767.98px) {
    .tps-case-study-section {
        padding: 48px 0;
    }

    .tps-case-intro h2 {
        font-size: 24px;
    }

    .tps-case-card {
        min-height: 280px;
        padding: 28px 24px;
    }

    .tps-case-card-content h3 {
        font-size: 20px;
    }

    .tps-case-card-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }
}

/* Compliance Expertise */
.tps-compliance-section {
    position: relative;
    padding: 64px 0 72px;
    background: linear-gradient(180deg, #0FA3DD -55%, #4e4e4e, #000000 90%, #0163A8 100%);
    overflow: hidden;
}

.tps-compliance-section::before,
.tps-compliance-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100px;
    pointer-events: none;
    z-index: 0;
}

.tps-compliance-section::before {
    top: 0;
    background: radial-gradient(ellipse 80% 100% at center top, rgba(15, 163, 221, 0.22) 0%, transparent 70%);
}

.tps-compliance-section::after {
    bottom: 0;
    background: radial-gradient(ellipse 80% 100% at center bottom, rgba(15, 163, 221, 0.18) 0%, transparent 70%);
}

.tps-compliance-section .container {
    position: relative;
    z-index: 1;
}

.tps-compliance-header {
    text-align: center;
    margin-bottom: 40px;
}

.tps-compliance-header h2 {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
}

.tps-compliance-row {
    display: flex;
    align-items: center;
    gap: 32px;
}

.tps-compliance-label {
    flex-shrink: 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    margin: 0;
}

.tps-compliance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.tps-compliance-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(180deg, #2d5a3d 0%, #1a3d28 100%); */
    background:rgba(95, 168, 69, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    padding: 10px 20px;
    border-radius: 6px;
    white-space: nowrap;
}

@media (max-width: 991.98px) {
    .tps-compliance-section {
        padding: 56px 0 64px;
    }

    .tps-compliance-header {
        margin-bottom: 32px;
    }

    .tps-compliance-row {
        gap: 24px;
    }

    .tps-compliance-label {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .tps-compliance-section {
        padding: 48px 0 56px;
    }

    .tps-compliance-header h2 {
        font-size: 24px;
    }

    .tps-compliance-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .tps-compliance-tags {
        width: 100%;
    }

    .tps-compliance-tag {
        font-size: 14px;
        padding: 12px 18px;
        white-space: normal;
        text-align: center;
    }
}

@media (max-width: 575.98px) {
    .tps-compliance-tags {
        gap: 10px;
    }

    .tps-compliance-tag {
        flex: 1 1 calc(50% - 10px);
        min-width: calc(50% - 10px);
    }
}

/* AI/ML Technologies Section Styles */
.ai_ml_section {
    padding: 80px 0 50px;
    color: #fff;
}

.ai_ml_section .tools-section {
    background-color: #F4FCFF;
    padding: 20px 0;
}

.ai_ml_section .title_v2 h2 {
    color: #fff;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 28px;
    font-weight: 600;    
    text-transform: unset !important;
}

.ai_ml_section .title_v2 h2 .highlight {
    color: #FF6B35;
}

.ai_ml_section .subtitle_text {
    color: #222222;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
}

.ai_ml_section .section_intro {
    color: #b0b0b0;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
}

.ai_ml_tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.ai_ml_tabs .nav-link {
    color: #344054;
    line-height: 24px;
    font-size: 15px;
    font-weight: 400;
    background-color: #fff;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 6px;
    margin-bottom: 0px;
    border: 1px solid #F2F4F7;
}

.ai_ml_tabs .nav-link:hover {
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    color: #fff;
    border-color: var(--secondary);
    cursor: pointer;
}

.ai_ml_tabs .nav-link.active {
    background: linear-gradient(180deg, #6FC74F 0%, #238600 100%);
    color: #fff;
    border-color: var(--secondary);
    cursor: pointer;
}

.ai_ml_logos_grid {
    display: grid;
    gap: 10px;
    margin-top: 40px;
}

.ai_ml_logos_grid.cols-2 {
    grid-template-columns: repeat(2, 1fr);
}

.ai_ml_logos_grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
}

.ai_ml_logos_grid.cols-4 {
    grid-template-columns: repeat(4, 1fr);
}

.ai_ml_logos_grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
}

.ai_ml_logo_item {
    text-align: center;
    padding: 20px;
}

.ai_ml_logo_item img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 15px;
}

.ai_ml_logo_item p {
    color: #222222;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.ai_ml_logo_placeholder {
    display: none;
    width: 80px;
    height: 80px;
    margin: 0 auto 15px;
    background: #FF6B35;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
}

.ai_ml_section.software_and_tools .tab-content>.tab-pane {
    width: 60%;
    margin: auto;
}

/* Client Testimonials */
.tps-testimonials-section {
    padding: 0 0 30px 0;
    background: #fff;
}

.tps-testimonials-header {
    text-align: center;
    margin-bottom: 15px;
}

.tps-testimonials-header h2 {
    background: linear-gradient(180deg, #0163A8 19.35%, #0FA3DD 77.42%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 34px;
    font-weight: 600;
    margin: 0;
}

.tps-testimonial-slider {
    overflow: hidden;
    width: 100%;
}

.tps-testimonial-slider .swiper-slide {
    height: auto;
}

.tps-quote-icon {
    margin-bottom: 24px;
    line-height: 0;
}

.tps-quote-icon svg {
    width: 72px;
    height: 56px;
}

.tps-testimonial-content blockquote {
    margin: 0 0 28px;
    padding: 0;
    border: 0;
}

.tps-testimonial-content blockquote p {
    font-size: 16px;
    line-height: 28px;
    color: var(--body);
    margin-bottom: 20px;
}

.tps-testimonial-content blockquote p:last-child {
    margin-bottom: 0;
}

.tps-testimonial-author h4 {
    color: #0163A8;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 6px;
}

.tps-testimonial-author p {
    font-size: 15px;
    line-height: 24px;
    color: #344054;
    margin: 0;
}

.tps-testimonial-visual {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 420px;
    margin: 0 auto;
}

.tps-testimonial-orb {
    position: absolute;
    top: 46%;
    left: 54%;
    width: 360px;
    height: 360px;
    transform: translate(-50%, -50%);
    background: #DDF1FF;
    border-radius: 50%;
    z-index: 0;
}

.tps-testimonial-ring {
    position: absolute;
    top: 50%;
    left: 40%;
    border: 2px solid rgba(15, 163, 221, 0.55);
    border-radius: 50%;
    z-index: 1;
    pointer-events: none;
}

.tps-testimonial-ring-1 {
    display: none;
    width: 340px;
    height: 340px;
    transform: translate(-52%, -48%);
}

.tps-testimonial-ring-2 {
    width: 360px;
    height: 360px;
    transform: translate(-46%, -54%);
    border-color: rgba(15, 163, 221, 0.35);
}

.tps-testimonial-avatars img {
    position: absolute;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    z-index: 2;
}

.tps-testimonial-avatars .avatar-1 {
    width: 110px;
    height: 110px;
    top: 10%;
    left: 6%;
}

.tps-testimonial-avatars .avatar-2 {
    width: 120px;
    height: 120px;
    top: 6%;
    right: 16%;
}

.tps-testimonial-avatars .avatar-3 {
    width: 130px;
    height: 130px;
    bottom: 16%;
    left: 2%;
}

.tps-testimonial-avatars .avatar-4 {
    width: 100px;
    height: 100px;
    bottom: 10%;
    right: 26%;
}

.tps-testimonial-avatars .avatar-5 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 7%;
}

.tps-orbit-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #0FA3DD;
    z-index: 2;
}

.tps-orbit-dot.dot-green {
    background: #5FA845;
}

.tps-orbit-dot.dot-1 {
    top: 16%;
    left: 30%;
    width: 8px;
    height: 8px;
    background: #0163A8 !important;
}

.tps-orbit-dot.dot-2 {
    top: 56%;
    right: 9%;
}

.tps-orbit-dot.dot-3 {
    bottom: 46%;
    left: 5%;
}

.tps-orbit-dot.dot-4 {
    bottom: 40%;
    right: 46%;
    width: 8px;
    height: 8px;
}

@media (max-width: 1380px) {
    .tps-about-img-2 {
        margin-left: -100px;
    }
    .tps-about-dots {
        right: 82px;
    }
}

@media (max-width: 991.98px) {
    .tps-testimonials-section {
        padding: 64px 0;
    }

    .tps-testimonials-header {
        margin-bottom: 36px;
    }

    .tps-testimonials-header h2 {
        font-size: 28px;
    }

    .tps-testimonial-content {
        margin-bottom: 16px;
    }

    .tps-testimonial-visual {
        height: 380px;
        max-width: 420px;
    }
}

@media (max-width: 767.98px) {
    .tps-testimonials-section {
        padding: 48px 0;
    }

    .tps-testimonials-header h2 {
        font-size: 24px;
    }

    .tps-quote-icon svg {
        width: 56px;
        height: 44px;
    }

    .tps-testimonial-content blockquote p {
        font-size: 15px;
        line-height: 26px;
    }

    .tps-testimonial-author h4 {
        font-size: 20px;
    }

    .tps-testimonial-visual {
        height: 340px;
        max-width: 360px;
    }

    .tps-testimonial-orb {
        width: 240px;
        height: 240px;
    }

    .tps-testimonial-ring-1 {
        width: 290px;
        height: 290px;
    }

    .tps-testimonial-ring-2 {
        width: 330px;
        height: 330px;
    }

    .tps-testimonial-avatars .avatar-3 {
        width: 84px;
        height: 84px;
    }
}

@media (max-width: 575.98px) {
    .tps-testimonial-visual {
        height: 300px;
        max-width: 300px;
    }

    .tps-testimonial-avatars .avatar-1 {
        width: 64px;
        height: 64px;
    }

    .tps-testimonial-avatars .avatar-2 {
        width: 58px;
        height: 58px;
    }

    .tps-testimonial-avatars .avatar-3 {
        width: 72px;
        height: 72px;
    }

    .tps-testimonial-avatars .avatar-4 {
        width: 60px;
        height: 60px;
    }

    .tps-testimonial-avatars .avatar-5 {
        width: 48px;
        height: 48px;
    }

    .tps-about-img-1,
    .tps-about-img-2,
    .tps-about-img-3,
    .tps-about-img-4,
    .tps-about-img-5 {
        width: 100% !important;
        height: auto !important;
        margin: 0 !important;
        left: 0 !important;
        top: 0 !important;
    }
}

/* Transform Technical Documentation CTA */
.tps-cta-section {
    padding: 0 0 80px;
    background: #fff;
}

.tps-cta-card {
    background: linear-gradient(180deg, #FAFDF8 0%, #F0F8EB 45%, #E6F3DE 100%);
    border: 1px solid #E2E8E0;
    border-radius: 24px;
    padding: 56px 48px;
    text-align: center;
}

.tps-cta-card h2 {
    font-size: 32px;
    font-weight: 600;
    color: var(--body);
    line-height: 1.35;
    margin-bottom: 16px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.tps-cta-card > p {
    font-size: 16px;
    line-height: 26px;
    color: #344054;
    max-width: 640px;
    margin: 0 auto 28px;
}

.tps-cta-card .btn-style-two {
    padding: 12px 24px;
    font-size: 16px;
    box-shadow: 0 4px 14px rgba(35, 134, 0, 0.22);
}

@media (max-width: 991.98px) {
    .tps-cta-section {
        padding: 0 0 64px;
    }

    .tps-cta-card {
        padding: 48px 36px;
    }

    .tps-cta-card h2 {
        font-size: 28px;
    }
}

@media (max-width: 767.98px) {
    .tps-cta-section {
        padding: 0 0 48px;
    }

    .tps-cta-card {
        padding: 40px 24px;
        border-radius: 20px;
    }

    .tps-cta-card h2 {
        font-size: 24px;
    }

    .tps-cta-card > p {
        font-size: 15px;
        line-height: 24px;
        margin-bottom: 24px;
    }
}

@media (max-width: 575.98px) {
    .tps-cta-card h2 {
        font-size: 22px;
    }

    .tps-cta-card .btn-style-two {
        display: inline-block;
        width: 100%;
        max-width: 100%;
    }
}     