@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/* ==========================================================================
   Tulasi Safety Nets — Modern UI layer
   Loaded after style.css / responsive.css. Presentation only.
   ========================================================================== */

:root {
    --ts-purple-900: #3d1060;
    --ts-purple-800: #4a148c;
    --ts-purple-700: #6a1b9a;
    --ts-purple-600: #7b2cbf;
    --ts-purple-500: #8e2fbf;
    --ts-purple-400: #a44bd6;
    --ts-grad: linear-gradient(135deg, #5b1a8f 0%, #8e2fbf 55%, #a44bd6 100%);
    --ts-grad-soft: linear-gradient(135deg, #7b2cbf 0%, #a44bd6 100%);
    --ts-ink: #16112b;
    --ts-body: #5f5a75;
    --ts-line: #ece5f5;
    --ts-soft: #faf7fd;
    --ts-green: #25d366;
    --ts-green-d: #128c7e;
    --ts-radius: 16px;
    --ts-shadow-sm: 0 4px 16px rgba(74, 20, 140, .07);
    --ts-shadow: 0 12px 34px rgba(74, 20, 140, .10);
    --ts-shadow-lg: 0 22px 55px rgba(74, 20, 140, .16);
}

html {
    overflow-x: clip;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--ts-body);
    background: #fff;
    overflow-x: clip;
}

.ts-scope h1,
.ts-scope h2,
.ts-scope h3,
.ts-scope h4,
.ts-scope h5,
.ts-scope h6,
.ts-header h1,
.ts-footer h3,
.ts-footer h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--ts-ink);
    font-weight: 700;
    line-height: 1.25;
}

.ts-scope p,
.ts-footer p {
    color: var(--ts-body);
    line-height: 1.75;
    margin-bottom: 0;
    /* style.css justifies every paragraph, which shreds narrow columns */
    text-align: left;
    font-family: inherit;
}

.ts-scope a {
    text-decoration: none;
    transition: all .25s ease;
}

.ts-scope img {
    max-width: 100%;
    height: auto;
}

.ts-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 18px;
}

.ts-section {
    padding: 72px 0;
}

.ts-section--soft {
    background: var(--ts-soft);
}

.ts-section--tight {
    padding: 56px 0;
}

/* --------------------------------------------------------- section titles */
.ts-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 42px;
}

.ts-head h2,
.ts-head h1 {
    font-size: 34px;
    letter-spacing: .3px;
    text-transform: uppercase;
    margin: 0 0 10px;
    position: relative;
    display: inline-block;
    padding: 0 62px;
}

.ts-head h2::before,
.ts-head h2::after,
.ts-head h1::before,
.ts-head h1::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 44px;
    height: 2px;
    background: var(--ts-grad-soft);
    border-radius: 2px;
}

.ts-head h2::before,
.ts-head h1::before {
    left: 0;
}

.ts-head h2::after,
.ts-head h1::after {
    right: 0;
}

.ts-head span {
    display: block;
    color: var(--ts-purple-600);
    font-size: 15px;
    font-weight: 500;
}

.ts-head--light h2,
.ts-head--light h1,
.ts-head--light h3 {
    color: #fff;
}

.ts-head--light span {
    color: rgba(255, 255, 255, .85);
}

.ts-head--light h2::before,
.ts-head--light h2::after,
.ts-head--light h3::before,
.ts-head--light h3::after {
    background: rgba(255, 255, 255, .6);
}

.ts-head h3 {
    font-size: 32px;
    text-transform: uppercase;
    margin: 0 0 10px;
    position: relative;
    display: inline-block;
    padding: 0 62px;
}

.ts-head h3::before,
.ts-head h3::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 44px;
    height: 2px;
    background: var(--ts-grad-soft);
    border-radius: 2px;
}

.ts-head h3::before {
    left: 0;
}

.ts-head h3::after {
    right: 0;
}

/* --------------------------------------------------------------- buttons */
.ts-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    line-height: 1.2;
    transition: all .28s ease;
}

.ts-btn i {
    font-size: 20px;
}

.ts-btn--primary {
    background: var(--ts-grad);
    color: #fff;
    box-shadow: 0 10px 24px rgba(123, 44, 191, .32);
}

.ts-btn--primary:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(123, 44, 191, .42);
}

.ts-btn--wa {
    background: linear-gradient(135deg, var(--ts-green-d), var(--ts-green));
    color: #fff;
    box-shadow: 0 10px 24px rgba(37, 211, 102, .32);
}

.ts-btn--wa:hover {
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 16px 32px rgba(37, 211, 102, .42);
}

.ts-btn--white {
    background: #fff;
    color: var(--ts-purple-700);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .12);
}

.ts-btn--white:hover {
    color: var(--ts-purple-800);
    transform: translateY(-3px);
}

.ts-btn--ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, .7);
}

.ts-btn--ghost:hover {
    background: #fff;
    color: var(--ts-purple-700);
}

.ts-btn small {
    display: block;
    font-size: 11px;
    font-weight: 400;
    opacity: .85;
    letter-spacing: .4px;
}

.ts-btn b {
    display: block;
    font-size: 16px;
    font-weight: 700;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.ts-topbar {
    background: var(--ts-grad);
    color: #fff;
    font-size: 13px;
    padding: 8px 0;
}

.ts-topbar .ts-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.ts-topbar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px 20px;
}

.ts-topbar a {
    color: rgba(255, 255, 255, .92);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.ts-topbar a:hover {
    color: #fff;
}

.ts-topbar i {
    font-size: 15px;
}

.ts-topbar-social {
    gap: 8px !important;
}

.ts-topbar-social a {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .16);
    justify-content: center;
    font-size: 13px;
}

.ts-topbar-social a:hover {
    background: #fff;
    color: var(--ts-purple-700);
}

.ts-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(22, 17, 43, .07);
}

.ts-header.is-stuck {
    box-shadow: 0 6px 26px rgba(22, 17, 43, .12);
}

.ts-header-inner {
    display: flex;
    align-items: center;
    gap: 18px;
    min-height: 76px;
}

.ts-logo {
    flex: 0 0 auto;
    display: block;
}

.ts-logo img {
    height: 52px;
    width: auto;
    display: block;
}

.ts-header-cta {
    margin-left: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--ts-grad);
    color: #fff;
    padding: 11px 22px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(123, 44, 191, .3);
}

.ts-header-cta:hover {
    color: #fff;
    transform: translateY(-2px);
}

.ts-header-cta i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .22);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* -------------------------------------------------------------- main menu */
.ts-nav {
    margin-left: auto;
}

.ts-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 4px;
}

.ts-menu>.ts-nav-item {
    position: relative;
}

.ts-menu>.ts-nav-item>.ts-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 27px 12px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ts-ink);
    position: relative;
    white-space: nowrap;
}

.ts-menu>.ts-nav-item>.ts-nav-link i {
    font-size: 13px;
    transition: transform .25s ease;
}

.ts-menu>.ts-nav-item>.ts-nav-link::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ts-grad-soft);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .28s ease;
}

.ts-menu>.ts-nav-item:hover>.ts-nav-link,
.ts-menu>.ts-nav-item>.ts-nav-link.active {
    color: var(--ts-purple-600);
}

.ts-menu>.ts-nav-item:hover>.ts-nav-link::after,
.ts-menu>.ts-nav-item>.ts-nav-link.active::after {
    transform: scaleX(1);
}

.ts-menu>.ts-nav-item:hover>.ts-nav-link i {
    transform: rotate(180deg);
}

/* dropdowns */
.ts-dropdown {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 262px;
    background: #fff;
    border-radius: 12px;
    border-top: 3px solid var(--ts-purple-600);
    box-shadow: var(--ts-shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .28s ease;
    z-index: 1200;
}

.ts-nav-item:hover>.ts-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ts-dropdown li {
    position: relative;
}

.ts-dropdown li a {
    display: block;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 500;
    color: #4d4763;
    text-transform: capitalize;
    border-left: 2px solid transparent;
}

.ts-dropdown li a:hover {
    background: var(--ts-soft);
    color: var(--ts-purple-600);
    border-left-color: var(--ts-purple-600);
}

/* nested levels: flyout + scroll, they hold the location pages */
.ts-dropdown .ts-dropdown {
    top: -8px;
    left: 100%;
    max-height: 420px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border-top-width: 0;
    border-left: 3px solid var(--ts-purple-400);
}

.ts-dropdown .ts-dropdown::-webkit-scrollbar {
    width: 6px;
}

.ts-dropdown .ts-dropdown::-webkit-scrollbar-thumb {
    background: #d9c9ea;
    border-radius: 6px;
}

.ts-dropdown>li.ts-has-sub>a {
    padding-right: 38px;
}

.ts-dropdown>li.ts-has-sub>a::after {
    content: "\f105";
    font-family: "Line Awesome Free";
    font-weight: 900;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    opacity: .45;
}

.ts-dropdown>li.ts-has-sub:hover>a::after {
    opacity: 1;
    color: var(--ts-purple-600);
}

/* The menus near the right edge would push their flyouts off-screen, so the
   last few open leftwards instead. */
@media (min-width: 1400px) {

    .ts-menu>.ts-nav-item:nth-last-child(-n+3)>.ts-dropdown {
        left: auto;
        right: 0;
    }

    .ts-menu>.ts-nav-item:nth-last-child(-n+3) .ts-dropdown .ts-dropdown {
        left: auto;
        right: 100%;
        border-left: none;
        border-right: 3px solid var(--ts-purple-400);
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {

    .ts-menu>.ts-nav-item:nth-last-child(-n+4)>.ts-dropdown {
        left: auto;
        right: 0;
    }

    .ts-menu>.ts-nav-item:nth-last-child(-n+4) .ts-dropdown .ts-dropdown {
        left: auto;
        right: 100%;
        border-left: none;
        border-right: 3px solid var(--ts-purple-400);
    }
}

.ts-burger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--ts-line);
    background: #fff;
    padding: 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.ts-burger span {
    display: block;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--ts-purple-700);
    transition: all .25s ease;
}

.ts-nav-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(22, 17, 43, .5);
    opacity: 0;
    visibility: hidden;
    transition: all .3s ease;
    z-index: 1400;
}

body.ts-nav-open .ts-nav-backdrop {
    opacity: 1;
    visibility: visible;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.ts-hero {
    position: relative;
    min-height: 588px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ts-soft);
}

.ts-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.ts-hero-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.ts-hero-veil {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(90deg, rgba(252, 250, 254, .985) 0%, rgba(252, 250, 254, .97) 38%, rgba(252, 250, 254, .82) 52%, rgba(252, 250, 254, .3) 70%, rgba(252, 250, 254, 0) 88%);
    pointer-events: none;
}

.ts-hero-inner {
    position: relative;
    z-index: 3;
    padding: 60px 18px;
}

.ts-hero-copy {
    max-width: 620px;
}

.ts-hero-copy h1 {
    font-size: 30px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 6px;
    color: var(--ts-ink);
}

.ts-hero-copy h1 b {
    display: block;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    background: var(--ts-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--ts-purple-700);
}

.ts-hero-services {
    font-size: 17px;
    font-weight: 500;
    color: #453f5c;
    margin: 14px 0 18px;
    line-height: 1.6;
}

.ts-hero-services span {
    color: #cbb7de;
    margin: 0 4px;
}

.ts-hero-tag {
    display: inline-block;
    border-left: 4px solid var(--ts-purple-600);
    padding-left: 14px;
    font-size: 19px;
    font-weight: 600;
    color: var(--ts-ink);
    line-height: 1.5;
    margin-bottom: 26px;
}

.ts-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

/* ==========================================================================
   BANNER SLIDER
   ========================================================================== */
.ts-banner {
    padding: 54px 0 0;
}

.ts-banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ts-shadow-lg);
    background: var(--ts-soft);
}

.ts-banner-card .carousel-item img {
    width: 100%;
    height: auto;
    display: block;
}

.ts-banner-card .carousel-control-prev,
.ts-banner-card .carousel-control-next {
    width: 60px;
    opacity: 0;
    transition: opacity .3s ease;
}

.ts-banner-card:hover .carousel-control-prev,
.ts-banner-card:hover .carousel-control-next {
    opacity: 1;
}

.ts-banner-card .carousel-control-prev-icon,
.ts-banner-card .carousel-control-next-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, .92);
    background-size: 15px;
    box-shadow: var(--ts-shadow);
}

.ts-banner-card .carousel-indicators {
    margin: 0 0 14px;
    bottom: 0;
    align-items: center;
}

.ts-banner-card .carousel-indicators li {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(22, 17, 43, .28);
    border: none;
    text-indent: -9999px;
    overflow: hidden;
    opacity: 1;
    margin: 0 4px;
    transition: all .3s ease;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, .55);
}

.ts-banner-card .carousel-indicators li.active {
    width: 26px;
    border-radius: 6px;
    background: var(--ts-purple-600);
}

/* ==========================================================================
   SERVICE CARDS
   ========================================================================== */
.ts-grid {
    display: grid;
    gap: 26px;
}

.ts-grid--4 {
    grid-template-columns: repeat(4, 1fr);
}

.ts-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

.ts-grid--2 {
    grid-template-columns: repeat(2, 1fr);
}

.ts-card {
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: var(--ts-radius);
    overflow: hidden;
    transition: all .32s ease;
    display: flex;
    flex-direction: column;
}

.ts-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--ts-shadow-lg);
    border-color: transparent;
}

.ts-card-media {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: var(--ts-soft);
}

.ts-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.ts-card:hover .ts-card-media img {
    transform: scale(1.08);
}

.ts-card-icon {
    position: absolute;
    left: 16px;
    top: 0;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ts-grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 21px;
    box-shadow: 0 8px 18px rgba(123, 44, 191, .38);
    border: 3px solid #fff;
    z-index: 2;
}

.ts-card-body {
    padding: 34px 18px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.ts-card-body h3 {
    font-size: 17px;
    margin: 0 0 8px;
    font-weight: 600;
}

.ts-card-body h3 a {
    color: var(--ts-ink);
}

.ts-card-body h3 a:hover {
    color: var(--ts-purple-600);
}

.ts-card-link {
    margin-top: auto;
    font-size: 13px;
    font-weight: 600;
    color: var(--ts-purple-600);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ts-card-link i {
    transition: transform .25s ease;
}

.ts-card:hover .ts-card-link i {
    transform: translateX(4px);
}

/* ==========================================================================
   WHY CHOOSE US
   ========================================================================== */
.ts-choose {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
    align-items: center;
}

.ts-choose-media {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--ts-shadow-lg);
}

.ts-choose-media img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    display: block;
}

.ts-choose-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(255, 255, 255, .95);
    border-radius: 12px;
    padding: 12px 18px;
    font-weight: 700;
    color: var(--ts-purple-700);
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    box-shadow: var(--ts-shadow);
}

.ts-choose-badge i {
    font-size: 20px;
}

.ts-choose-list {
    display: grid;
    gap: 18px;
}

.ts-choose-item {
    display: flex;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: 14px;
    padding: 20px;
    transition: all .3s ease;
}

.ts-choose-item:hover {
    box-shadow: var(--ts-shadow);
    border-color: transparent;
    transform: translateX(5px);
}

.ts-choose-item .icon {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--ts-grad);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    box-shadow: 0 8px 18px rgba(123, 44, 191, .28);
}

.ts-choose-item h3 {
    font-size: 17px;
    margin: 0 0 5px;
    font-weight: 600;
}

.ts-choose-item p {
    font-size: 14px;
    line-height: 1.65;
}

/* ==========================================================================
   SERVICE AREAS
   ========================================================================== */
.ts-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ts-areas a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: #4d4763;
    text-transform: capitalize;
}

.ts-areas a i {
    color: var(--ts-purple-500);
    font-size: 14px;
}

.ts-areas a:hover {
    background: var(--ts-grad);
    color: #fff;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(123, 44, 191, .28);
}

.ts-areas a:hover i {
    color: #fff;
}

/* ==========================================================================
   PRODUCT / PRICING TABS
   ========================================================================== */
.ts-tabs-nav {
    list-style: none;
    margin: 0 0 34px;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.ts-tabs-nav a {
    display: block;
    padding: 10px 20px;
    border-radius: 50px;
    background: #fff;
    border: 1px solid var(--ts-line);
    font-size: 14px;
    font-weight: 500;
    color: #4d4763;
}

.ts-tabs-nav a:hover {
    color: var(--ts-purple-600);
    border-color: var(--ts-purple-400);
}

.ts-tabs-nav a.active {
    background: var(--ts-grad);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 10px 22px rgba(123, 44, 191, .3);
}

.ts-tab-panel {
    display: none;
}

.ts-tab-panel.active {
    display: block;
    animation: tsFade .45s ease;
}

@keyframes tsFade {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.ts-product {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--ts-shadow-sm);
}

.ts-product-media {
    border-radius: 14px;
    overflow: hidden;
    max-height: 600px;
    min-height: 320px;
}

.ts-product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ts-product h3 {
    font-size: 24px;
    margin: 0 0 10px;
}

.ts-product .ts-price {
    font-size: 30px;
    font-weight: 700;
    color: var(--ts-purple-600);
    margin: 0 0 18px;
    line-height: 1.3;
}

.ts-product .ts-price sup {
    font-size: 17px;
    top: -.6em;
}

.ts-product .ts-price sub {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--ts-body);
    bottom: 0;
}

.ts-product h5 {
    font-size: 15px;
    font-weight: 600;
    color: var(--ts-ink);
    margin: 22px 0 12px;
    text-transform: uppercase;
    letter-spacing: .4px;
}

.ts-spec {
    width: 100%;
    border-collapse: collapse;
}

.ts-spec th,
.ts-spec td {
    padding: 11px 14px;
    font-size: 14px;
    text-align: left;
    vertical-align: top;
    border-bottom: 1px solid var(--ts-line);
    line-height: 1.6;
}

.ts-spec th {
    font-weight: 600;
    color: var(--ts-ink);
    width: 38%;
    background: var(--ts-soft);
}

.ts-spec td {
    color: var(--ts-body);
    font-weight: 400;
}

.ts-spec tr:last-child th,
.ts-spec tr:last-child td {
    border-bottom: none;
}

/* ==========================================================================
   ENQUIRY BAND
   ========================================================================== */
.ts-enquiry {
    background: var(--ts-grad);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.ts-enquiry::before,
.ts-enquiry::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, .07);
}

.ts-enquiry::before {
    width: 380px;
    height: 380px;
    top: -160px;
    right: -90px;
}

.ts-enquiry::after {
    width: 260px;
    height: 260px;
    bottom: -130px;
    left: -70px;
}

.ts-enquiry .ts-container {
    position: relative;
    z-index: 2;
}

.ts-enquiry-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 50px;
    align-items: center;
}

.ts-enquiry-copy h2 {
    color: #fff;
    font-size: 34px;
    text-transform: uppercase;
    margin: 0 0 12px;
}

.ts-enquiry-copy p {
    color: rgba(255, 255, 255, .9);
    font-size: 16px;
    margin-bottom: 24px;
}

.ts-enquiry-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.ts-form-card {
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 26px 60px rgba(30, 8, 55, .28);
}

.ts-form-card h3 {
    font-size: 21px;
    margin: 0 0 4px;
    text-align: center;
}

.ts-form-card>p {
    text-align: center;
    font-size: 13px;
    margin-bottom: 20px;
}

.ts-field {
    margin-bottom: 14px;
}

.ts-field input,
.ts-field select {
    width: 100%;
    height: 52px;
    border-radius: 12px;
    border: 1px solid var(--ts-line);
    background: var(--ts-soft);
    padding: 0 16px;
    font-size: 15px;
    color: var(--ts-ink);
    font-family: inherit;
    outline: none;
    transition: all .25s ease;
    -webkit-appearance: none;
    appearance: none;
}

.ts-field select {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237b2cbf' stroke-width='2.5' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 17px;
    padding-right: 42px;
}

.ts-field input:focus,
.ts-field select:focus {
    border-color: var(--ts-purple-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(164, 75, 214, .12);
}

.ts-field input::placeholder {
    color: #9a93ad;
}

.ts-submit {
    width: 100%;
    justify-content: center;
    height: 52px;
}

.ts-alert {
    background: #e8f7ee;
    border: 1px solid #b6e5c8;
    color: #1c7a45;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    margin-bottom: 16px;
    position: relative;
}

.ts-alert .close {
    position: absolute;
    right: 12px;
    top: 8px;
    color: inherit;
    opacity: .6;
    font-size: 20px;
    line-height: 1;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.ts-quote {
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: var(--ts-radius);
    padding: 26px 24px;
    position: relative;
    height: 100%;
    transition: all .3s ease;
}

.ts-quote:hover {
    box-shadow: var(--ts-shadow);
    border-color: transparent;
}

.ts-quote-mark {
    font-size: 30px;
    color: var(--ts-purple-400);
    opacity: .3;
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.ts-quote p {
    font-size: 14.5px;
    line-height: 1.75;
    margin-bottom: 20px;
}

.ts-quote-by {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--ts-line);
    padding-top: 16px;
}

/* owl forces `.owl-item img { width:100% }`, which flattens the avatars */
.ts-quote-by img,
.owl-carousel .owl-item .ts-quote-by img {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--ts-purple-400);
}

/* equal-height cards across the slider */
.ts-testimonial-slider .owl-stage {
    display: flex;
}

.ts-testimonial-slider .owl-item {
    display: flex;
}

.ts-testimonial-slider .owl-item .ts-quote {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.ts-testimonial-slider .owl-item .ts-quote p {
    flex: 1;
}

.ts-quote-by h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}

.ts-quote-by span {
    font-size: 12px;
    color: var(--ts-purple-500);
}

.ts-testimonial-slider.owl-theme .owl-nav {
    margin: 0;
}

.ts-testimonial-slider.owl-theme .owl-nav [class*='owl-'] {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    color: var(--ts-purple-600);
    border: 1px solid var(--ts-line);
    box-shadow: var(--ts-shadow);
    font-size: 20px;
    line-height: 42px;
    padding: 0;
    margin: 0;
}

.ts-testimonial-slider.owl-theme .owl-nav [class*='owl-']:hover {
    background: var(--ts-grad);
    color: #fff;
}

.ts-testimonial-slider.owl-theme .owl-nav .owl-prev {
    left: -18px;
}

.ts-testimonial-slider.owl-theme .owl-nav .owl-next {
    right: -18px;
}

.ts-testimonial-slider.owl-theme .owl-dots {
    margin-top: 26px;
}

.ts-testimonial-slider.owl-theme .owl-dots .owl-dot span {
    width: 9px;
    height: 9px;
    background: #d9cbe8;
    margin: 0 4px;
}

.ts-testimonial-slider.owl-theme .owl-dots .owl-dot.active span,
.ts-testimonial-slider.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--ts-purple-600);
    width: 26px;
    border-radius: 6px;
}

/* -------------------------------------------------------------- clients */
.ts-clients {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ts-client {
    background: #fff;
    border: 1px solid var(--ts-line);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    overflow: hidden;
}

.ts-client img {
    width: 100%;
    border-radius: 8px;
    display: block;
    filter: grayscale(1);
    opacity: .85;
    transition: all .35s ease;
}

.ts-client:hover {
    box-shadow: var(--ts-shadow);
    border-color: transparent;
    transform: translateY(-5px);
}

.ts-client:hover img {
    filter: none;
    opacity: 1;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.ts-footer {
    background: #1a1130;
    color: rgba(255, 255, 255, .68);
    padding: 68px 0 0;
    position: relative;
}

.ts-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ts-grad);
}

.ts-footer-grid {
    display: grid;
    grid-template-columns: 1.15fr 1.4fr 1.05fr 1.15fr;
    gap: 34px;
}

.ts-footer h3,
.ts-footer h4 {
    color: #fff;
    font-size: 17px;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}

.ts-footer h3::after,
.ts-footer h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--ts-grad-soft);
    border-radius: 2px;
}

.ts-footer p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, .62);
}

/* the logo carries dark type, so it needs a light plate on the dark footer */
.ts-footer-logo {
    display: inline-block;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 18px;
}

.ts-footer-logo img {
    height: 56px;
    width: auto;
    display: block;
}

.ts-footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ts-footer-links {
    columns: 2;
    column-gap: 18px;
}

.ts-footer-links li {
    margin-bottom: 10px;
    break-inside: avoid;
}

.ts-footer-links a {
    color: rgba(255, 255, 255, .68);
    font-size: 13.5px;
    display: inline-flex;
    align-items: flex-start;
    gap: 7px;
    line-height: 1.5;
}

.ts-footer-links a i {
    color: var(--ts-purple-400);
    font-size: 12px;
    margin-top: 4px;
}

.ts-footer-links a:hover {
    color: #fff;
    transform: translateX(3px);
}

.ts-footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13.5px;
    line-height: 1.6;
}

.ts-footer-contact li>i {
    flex: 0 0 auto;
    width: 32px;
    height: 32px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .07);
    color: var(--ts-purple-400);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
}

.ts-footer-contact span {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 2px;
}

.ts-footer-contact a {
    color: rgba(255, 255, 255, .68);
}

.ts-footer-contact a:hover {
    color: var(--ts-purple-400);
}

.ts-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.ts-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.ts-social a:hover {
    background: var(--ts-grad);
    transform: translateY(-3px);
}

.ts-branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 46px;
    padding-top: 34px;
    border-top: 1px solid rgba(255, 255, 255, .09);
}

.ts-branch {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 14px;
    padding: 18px 20px;
}

.ts-branch h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin: 0 0 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ts-branch h5 i {
    color: var(--ts-purple-400);
}

.ts-branch p {
    font-size: 13px;
    margin: 0;
}

.ts-copyright {
    margin-top: 44px;
    border-top: 1px solid rgba(255, 255, 255, .09);
    padding: 22px 0;
    text-align: center;
}

.ts-copyright p {
    font-size: 13.5px;
    margin: 0;
    color: rgba(255, 255, 255, .55);
}

.ts-copyright a {
    color: var(--ts-purple-400);
}

/* ==========================================================================
   FLOATING ACTIONS + BACK TO TOP
   ========================================================================== */
#mybutton {
    position: fixed;
    right: 18px;
    bottom: 90px;
    z-index: 990;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#mybutton a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .22);
    transition: transform .25s ease;
}

#mybutton a:hover {
    transform: scale(1.08);
}

#mybutton a i {
    line-height: 1;
}

#mybutton .ts-fab-wa {
    background: linear-gradient(135deg, var(--ts-green-d), var(--ts-green));
}

#mybutton .ts-fab-call {
    background: var(--ts-grad);
}

#mybutton .ts-fab-mail {
    background: #ef5350;
    font-size: 19px;
}

.go-top {
    position: fixed;
    right: 18px;
    bottom: 22px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--ts-grad);
    color: #fff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 990;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition: all .3s ease;
    box-shadow: 0 10px 24px rgba(123, 44, 191, .35);
    top: auto;
}

.go-top.ts-show {
    opacity: 1;
    visibility: visible;
    transform: none;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
/* Keep the seven top-level items on a single row on narrower desktops. */
@media (min-width: 1200px) and (max-width: 1399px) {
    .ts-menu>.ts-nav-item>.ts-nav-link {
        font-size: 13.5px;
        padding: 27px 8px;
    }

    .ts-menu>.ts-nav-item>.ts-nav-link::after {
        left: 8px;
        right: 8px;
    }

    .ts-header-cta {
        padding: 10px 16px;
        font-size: 14px;
    }

    .ts-logo img {
        height: 46px;
    }
}

@media (max-width: 1199px) {
    .ts-menu {
        display: none;
    }

    .ts-burger {
        display: flex;
        order: 3;
    }

    .ts-header-cta {
        margin-left: auto;
    }

    /* Off-canvas drawer. It is display:none while closed rather than parked
       off-screen: a translated fixed panel widens the document and gives the
       page a horizontal scrollbar on phones. */
    .ts-nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 320px;
        max-width: 86vw;
        height: 100%;
        background: #fff;
        z-index: 1500;
        display: none;
        flex-direction: column;
        margin: 0;
        box-shadow: -10px 0 40px rgba(22, 17, 43, .18);
    }

    body.ts-nav-open .ts-nav {
        display: flex;
        animation: tsDrawerIn .3s cubic-bezier(.4, 0, .2, 1);
    }

    @keyframes tsDrawerIn {
        from {
            transform: translateX(100%);
        }

        to {
            transform: none;
        }
    }

    .ts-nav-head {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        padding: 16px 18px;
        border-bottom: 1px solid var(--ts-line);
        background: var(--ts-grad);
    }

    .ts-nav-head span {
        color: #fff;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: .4px;
    }

    .ts-nav-close {
        width: 34px;
        height: 34px;
        border-radius: 50%;
        border: none;
        background: rgba(255, 255, 255, .2);
        color: #fff;
        font-size: 20px;
        line-height: 1;
        cursor: pointer;
    }

    .ts-menu {
        display: block;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        flex: 1;
        padding: 8px 0 40px;
    }

    .ts-menu>.ts-nav-item {
        border-bottom: 1px solid var(--ts-line);
    }

    .ts-menu>.ts-nav-item>.ts-nav-link {
        padding: 14px 18px;
        display: flex;
        justify-content: space-between;
        width: 100%;
        font-weight: 600;
    }

    .ts-menu>.ts-nav-item>.ts-nav-link::after {
        display: none;
    }

    /* the accordion button supplies the chevron here, so drop the inline ones */
    .ts-menu>.ts-nav-item>.ts-nav-link>i,
    .ts-dropdown>li.ts-has-sub>a::after {
        display: none;
    }

    .ts-menu>.ts-nav-item:hover>.ts-nav-link i {
        transform: none;
    }

    .ts-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        min-width: 0;
        padding: 0;
        display: none;
        background: var(--ts-soft);
    }

    .ts-nav-item:hover>.ts-dropdown {
        display: none;
    }

    .ts-nav-item.ts-open>.ts-dropdown {
        display: block;
    }

    .ts-dropdown .ts-dropdown {
        max-height: 260px;
        overflow-y: auto;
        border-left: 2px solid var(--ts-purple-400);
        margin-left: 14px;
        background: #fff;
    }

    .ts-dropdown li a {
        padding: 11px 18px;
        font-size: 13.5px;
    }

    .ts-toggle {
        position: absolute;
        right: 6px;
        top: 3px;
        width: 34px;
        height: 34px;
        border: none;
        background: transparent;
        color: var(--ts-purple-600);
        font-size: 18px;
        line-height: 1;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: transform .25s ease;
    }

    .ts-nav-item.ts-open>.ts-toggle {
        transform: rotate(180deg);
    }

    .ts-menu>.ts-nav-item>.ts-toggle {
        top: 7px;
        right: 10px;
    }

    .ts-dropdown>li>a {
        padding-right: 46px;
    }
}

@media (min-width: 1200px) {

    .ts-nav-head,
    .ts-toggle {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .ts-hero-copy h1 b {
        font-size: 42px;
    }

    .ts-grid--4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .ts-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

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

    .ts-head h2,
    .ts-head h1,
    .ts-head h3 {
        font-size: 27px;
        padding: 0 46px;
    }

    .ts-head h2::before,
    .ts-head h2::after,
    .ts-head h1::before,
    .ts-head h1::after,
    .ts-head h3::before,
    .ts-head h3::after {
        width: 32px;
    }

    .ts-hero {
        min-height: 520px;
    }

    .ts-hero-veil {
        background: linear-gradient(180deg, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .92) 55%, rgba(255, 255, 255, .82) 100%);
    }

    .ts-hero-copy {
        max-width: 100%;
        text-align: center;
    }

    .ts-hero-copy h1 {
        font-size: 24px;
    }

    .ts-hero-copy h1 b {
        font-size: 36px;
    }

    .ts-hero-tag {
        text-align: left;
    }

    .ts-hero-actions {
        justify-content: center;
    }

    .ts-choose,
    .ts-product,
    .ts-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .ts-product-media {
        min-height: 0;
        max-height: none;
        aspect-ratio: 16 / 10;
    }

    .ts-grid--4,
    .ts-grid--3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .ts-enquiry-copy {
        text-align: center;
    }

    .ts-enquiry-copy h2 {
        font-size: 27px;
    }

    .ts-enquiry-actions {
        justify-content: center;
    }

    .ts-branches {
        grid-template-columns: 1fr;
    }

    .ts-testimonial-slider.owl-theme .owl-nav .owl-prev {
        left: -6px;
    }

    .ts-testimonial-slider.owl-theme .owl-nav .owl-next {
        right: -6px;
    }
}

@media (max-width: 767px) {
    .ts-topbar {
        font-size: 12px;
    }

    .ts-topbar .ts-container {
        justify-content: center;
    }

    .ts-topbar ul {
        justify-content: center;
        gap: 5px 14px;
    }

    .ts-header-inner {
        min-height: 66px;
        gap: 10px;
    }

    .ts-logo img {
        height: 42px;
    }

    .ts-header-cta {
        padding: 9px 14px;
        font-size: 13px;
    }

    .ts-header-cta i {
        width: 22px;
        height: 22px;
        font-size: 12px;
    }

    .ts-hero {
        min-height: 0;
        padding: 0;
    }

    .ts-hero-inner {
        padding: 46px 18px;
    }

    .ts-hero-copy h1 {
        font-size: 20px;
    }

    .ts-hero-copy h1 b {
        font-size: 30px;
    }

    .ts-hero-services {
        font-size: 15px;
    }

    .ts-hero-tag {
        font-size: 16px;
    }

    .ts-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .ts-grid {
        gap: 18px;
    }

    .ts-card-body {
        padding: 30px 14px 16px;
    }

    .ts-card-body h3 {
        font-size: 15px;
    }

    .ts-product {
        padding: 16px;
    }

    .ts-product h3 {
        font-size: 20px;
    }

    .ts-product .ts-price {
        font-size: 25px;
    }

    .ts-spec th,
    .ts-spec td {
        padding: 9px 10px;
        font-size: 13px;
    }

    .ts-form-card {
        padding: 22px 18px;
    }

    .ts-footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .ts-clients {
        grid-template-columns: repeat(2, 1fr);
    }

    #mybutton a {
        width: 44px;
        height: 44px;
        font-size: 21px;
    }
}

@media (max-width: 479px) {
    .ts-head h2,
    .ts-head h1,
    .ts-head h3 {
        font-size: 22px;
        padding: 0;
    }

    /* the flanking rules strand themselves at the screen edges down here */
    .ts-head h2::before,
    .ts-head h2::after,
    .ts-head h1::before,
    .ts-head h1::after,
    .ts-head h3::before,
    .ts-head h3::after {
        display: none;
    }

    .ts-areas {
        gap: 8px;
    }

    .ts-areas a {
        padding: 7px 12px;
        font-size: 12px;
    }

    .ts-hero-actions .ts-btn {
        width: 100%;
        justify-content: center;
    }

    .ts-tabs-nav a {
        padding: 8px 14px;
        font-size: 13px;
    }
}
