﻿:root {
    --tsc-green-950: #032d20;
    --tsc-green-900: #064832;
    --tsc-green-800: #08704a;
    --tsc-green-700: #119653;
    --tsc-green-500: #4eae45;
    --tsc-green-100: #e4f5e6;
    --tsc-gold: #ffc400;
    --tsc-gold-soft: #ffe275;
    --tsc-navy: #171b58;
    --tsc-ink: #111b18;
    --tsc-muted: #66756e;
    --tsc-line: #dbe8df;
    --tsc-surface: #f4f9f5;
    --tsc-white: #ffffff;
    --tsc-shadow: 0 24px 65px rgba(4, 55, 36, .13);
    --tsc-shadow-soft: 0 14px 38px rgba(4, 55, 36, .08);
    --tsc-radius-xl: 32px;
    --tsc-radius-lg: 22px;
    --tsc-transition: 280ms ease;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--tsc-white);
}

    body.tsc-menu-open {
        overflow: hidden;
    }

.tsc-page {
    overflow-x: hidden;
    color: var(--tsc-ink);
    background: var(--tsc-white);
    font-family: "DM Sans", Arial, sans-serif;
    line-height: 1.65;
}

    .tsc-page img {
        display: block;
        max-width: 100%;
    }

    .tsc-page a {
        color: inherit;
        text-decoration: none;
    }

    .tsc-page button, .tsc-page input, .tsc-page select, .tsc-page textarea {
        font: inherit;
    }

.tsc-container {
    width: min(1200px, calc(100% - 40px));
    margin-inline: auto;
}

.tsc-topbar {
    color: rgba(255,255,255,.86);
    background: var(--tsc-green-950);
    font-size: 12px;
}

.tsc-topbar-inner {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.tsc-topbar-contact {
    display: flex;
    gap: 24px;
}

.tsc-topbar a, .tsc-topbar span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.tsc-topbar i {
    color: var(--tsc-gold);
}

.tsc-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,.96);
    border-bottom: 1px solid rgba(4,72,50,.08);
    transition: box-shadow var(--tsc-transition), min-height var(--tsc-transition);
}

    .tsc-header.tsc-header-scrolled {
        box-shadow: 0 12px 35px rgba(4,55,36,.11);
    }

.tsc-navbar {
    min-height: 92px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.tsc-logo {
    width: 180px;
    flex: 0 0 auto;
}

    .tsc-logo img {
        width: 100%;
        height: 74px;
        object-fit: contain;
    }

.tsc-navigation {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 28px;
}

    .tsc-navigation a {
        position: relative;
        padding: 34px 0 30px;
        color: #34453e;
        font-family: "Manrope", sans-serif;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: .03em;
        text-transform: uppercase;
    }

        .tsc-navigation a::after {
            width: 0;
            height: 2px;
            position: absolute;
            right: 0;
            bottom: 24px;
            left: 0;
            margin: auto;
            content: "";
            background: var(--tsc-gold);
            transition: width var(--tsc-transition);
        }

        .tsc-navigation a:hover, .tsc-navigation a.tsc-nav-active {
            color: var(--tsc-green-800);
        }

            .tsc-navigation a:hover::after, .tsc-navigation a.tsc-nav-active::after {
                width: 100%;
            }

.tsc-menu-button {
    width: 46px;
    height: 42px;
    margin-left: auto;
    padding: 10px;
    display: none;
    border: 1px solid var(--tsc-line);
    border-radius: 11px;
    background: #fff;
}

    .tsc-menu-button span {
        width: 100%;
        height: 2px;
        margin: 5px 0;
        display: block;
        background: var(--tsc-green-900);
        transition: var(--tsc-transition);
    }

    .tsc-menu-button.tsc-menu-active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .tsc-menu-button.tsc-menu-active span:nth-child(2) {
        opacity: 0;
    }

    .tsc-menu-button.tsc-menu-active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

.tsc-button {
    min-height: 49px;
    padding: 12px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform var(--tsc-transition), box-shadow var(--tsc-transition), background var(--tsc-transition);
}

    .tsc-button:hover {
        transform: translateY(-3px);
    }

.tsc-button-primary {
    color: #fff !important;
    background: linear-gradient(135deg, var(--tsc-green-800), var(--tsc-green-500));
    box-shadow: 0 12px 28px rgba(17,150,83,.24);
}

.tsc-button-gold {
    color: var(--tsc-green-950) !important;
    background: linear-gradient(135deg, var(--tsc-gold), var(--tsc-gold-soft));
    box-shadow: 0 15px 35px rgba(255,196,0,.25);
}

.tsc-button-glass {
    color: #fff !important;
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.26);
    backdrop-filter: blur(12px);
}
/*=========================================================
    GENERAL HERO RESET
=========================================================*/

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: #031c17;
    font-family: "DM Sans", Arial, sans-serif;
}

.tsc-container {
    width: min(1200px, calc(100% - 40px));
    margin-right: auto;
    margin-left: auto;
}


/*=========================================================
    HERO SECTION
=========================================================*/

.tsc-hero {
    width: 100%;
    min-height: 760px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #032d20;
    isolation: isolate;
}


/*=========================================================
    HERO IMAGE
=========================================================*/

.tsc-hero-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
    display: block;
    overflow: hidden;
    background-color: #032d20;
}

    .tsc-hero-background img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: center;
        opacity: 1;
        visibility: visible;
        filter: brightness(1.28) contrast(1.03) saturate(1.25);
        animation: tscHeroImageMovement 18s ease-in-out infinite alternate;
    }


/*=========================================================
    HERO OVERLAY
=========================================================*/

.tsc-hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient( 90deg, rgba(1, 22, 18, 0.78) 0%, rgba(3, 45, 32, 0.58) 38%, rgba(3, 45, 32, 0.18) 67%, rgba(7, 25, 66, 0.02) 100% );
}


/*=========================================================
    HERO DECORATIONS
=========================================================*/

.tsc-hero-decoration {
    position: absolute;
    z-index: 2;
    border: 1px solid rgba(255, 209, 36, 0.25);
    border-radius: 50%;
    pointer-events: none;
    animation: tscRotateDecoration 20s linear infinite;
}

    .tsc-hero-decoration::after {
        width: 12px;
        height: 12px;
        position: absolute;
        top: 12%;
        left: 18%;
        content: "";
        background: #ffd124;
        border-radius: 50%;
        box-shadow: 0 0 20px #ffd124;
    }

.tsc-hero-decoration-one {
    width: 500px;
    height: 500px;
    right: -220px;
    bottom: -280px;
}

.tsc-hero-decoration-two {
    width: 310px;
    height: 310px;
    right: -110px;
    bottom: -180px;
    animation-direction: reverse;
    animation-duration: 14s;
}


/*=========================================================
    HERO LAYOUT
=========================================================*/

.tsc-hero-inner {
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 70px;
    align-items: center;
}

.tsc-hero-content {
    max-width: 720px;
    padding-top: 110px;
    padding-bottom: 120px;
}


/*=========================================================
    HERO SUBTITLE
=========================================================*/

.tsc-hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #ffdb43;
    font-family: "Manrope", sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

    .tsc-hero-subtitle::before {
        width: 38px;
        height: 2px;
        content: "";
        background: linear-gradient( 90deg, #4fdd75, #ffd124 );
    }


/*=========================================================
    HERO HEADING
=========================================================*/

.tsc-hero-title {
    max-width: 760px;
    margin-top: 20px;
    margin-bottom: 25px;
    color: #ffffff;
    font-family: "Manrope", sans-serif;
    font-size: clamp( 55px, 6vw, 85px );
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 1.02;
    text-shadow: 0 15px 40px rgba(0, 0, 0, 0.40);
}

    .tsc-hero-title span {
        display: block;
        color: #ffd124;
        background: linear-gradient( 90deg, #ffbd00, #ffe36b, #6fe27b );
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
    }


/*=========================================================
    HERO DESCRIPTION
=========================================================*/

.tsc-hero-description {
    max-width: 650px;
    margin-top: 0;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.76);
    font-size: clamp( 17px, 1.6vw, 20px );
    line-height: 1.75;
}


/*=========================================================
    HERO BUTTONS
=========================================================*/

.tsc-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

    .tsc-hero-buttons a {
        min-height: 52px;
        padding: 13px 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-radius: 50px;
        font-family: "Manrope", sans-serif;
        font-size: 12px;
        font-weight: 800;
        letter-spacing: 0.04em;
        text-decoration: none;
        text-transform: uppercase;
        transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
    }

        .tsc-hero-buttons a:hover {
            transform: translateY(-4px);
        }

.tsc-hero-primary-button {
    color: #032d20;
    background: linear-gradient( 135deg, #ffc400, #ffe36b );
    box-shadow: 0 15px 35px rgba(255, 196, 0, 0.30);
}

.tsc-hero-secondary-button {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
}


/*=========================================================
    HERO FEATURES
=========================================================*/

.tsc-hero-features {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

    .tsc-hero-features > div {
        display: flex;
        align-items: center;
        gap: 12px;
    }

.tsc-hero-feature-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: #ffd124;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
}

.tsc-hero-features p {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.tsc-hero-features strong {
    display: block;
    color: #ffffff;
    font-size: 13px;
}


/*=========================================================
    PERFORMANCE CARD
=========================================================*/

.tsc-performance-card {
    position: relative;
    padding: 30px;
    overflow: hidden;
    color: #ffffff;
    background: linear-gradient( 145deg, rgba(6, 84, 54, 0.80), rgba(8, 26, 68, 0.76) );
    border: 1px solid rgba(255, 225, 72, 0.26);
    border-radius: 27px;
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.13);
    backdrop-filter: blur(18px);
}

    .tsc-performance-card::before {
        width: 180px;
        height: 180px;
        position: absolute;
        right: -90px;
        bottom: -90px;
        content: "";
        background: rgba(71, 224, 115, 0.22);
        border-radius: 50%;
        filter: blur(25px);
    }

.tsc-performance-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .tsc-performance-top span {
        display: inline-flex;
        align-items: center;
        gap: 9px;
        font-size: 11px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

        .tsc-performance-top span i {
            color: #59e276;
            font-size: 9px;
            text-shadow: 0 0 12px #59e276;
        }

    .tsc-performance-top > i {
        color: #ffd124;
        font-size: 27px;
    }

.tsc-performance-value {
    margin-top: 32px;
    margin-bottom: 18px;
}

    .tsc-performance-value small {
        display: block;
        color: rgba(255, 255, 255, 0.55);
        font-size: 10px;
        text-transform: uppercase;
    }

    .tsc-performance-value strong {
        display: block;
        color: #ffd124;
        font-family: "Manrope", sans-serif;
        font-size: 65px;
        line-height: 1.15;
    }

    .tsc-performance-value p {
        margin: 0;
        color: rgba(255, 255, 255, 0.55);
        font-size: 10px;
        text-transform: uppercase;
    }

.tsc-performance-chart {
    height: 110px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

    .tsc-performance-chart span {
        width: 100%;
        height: var(--tsc-bar-height);
        display: block;
        background: linear-gradient( 180deg, #ffd124, rgba(255, 209, 36, 0.18) );
        border-radius: 5px 5px 0 0;
        animation: tscChartBarAnimation 1.5s ease both;
        transform-origin: bottom;
    }

.tsc-performance-bottom {
    margin-top: 18px;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: rgba(255, 255, 255, 0.60);
    font-size: 9px;
    text-transform: uppercase;
}

    .tsc-performance-bottom i {
        margin-right: 6px;
        color: #ffd124;
    }


/*=========================================================
    HERO ANIMATIONS
=========================================================*/

@keyframes tscHeroImageMovement {

    from {
        transform: scale(1.03) translate3d( 0, 0, 0 );
    }

    to {
        transform: scale(1.14) translate3d( -2%, -1%, 0 );
    }
}

@keyframes tscRotateDecoration {

    to {
        transform: rotate(360deg);
    }
}

@keyframes tscChartBarAnimation {

    from {
        transform: scaleY(0);
    }

    to {
        transform: scaleY(1);
    }
}


/*=========================================================
    TABLET RESPONSIVE
=========================================================*/

@media (max-width: 900px) {

    .tsc-hero {
        min-height: 850px;
        align-items: flex-end;
    }

    .tsc-hero-background img {
        object-position: 67% center;
    }

    .tsc-hero-overlay {
        background: linear-gradient( 180deg, rgba(2, 22, 18, 0.12) 0%, rgba(3, 45, 32, 0.45) 38%, rgba(2, 25, 21, 0.96) 66%, rgba(2, 22, 18, 1) 100% );
    }

    .tsc-hero-inner {
        grid-template-columns: 1fr;
    }

    .tsc-hero-content {
        padding-top: 400px;
        padding-bottom: 100px;
    }

    .tsc-performance-card {
        display: none;
    }
}


/*=========================================================
    MOBILE RESPONSIVE
=========================================================*/

@media (max-width: 600px) {

    .tsc-container {
        width: min( 100% - 26px, 1200px );
    }

    .tsc-hero {
        min-height: 760px;
    }

    .tsc-hero-content {
        padding-top: 310px;
        padding-bottom: 75px;
    }

    .tsc-hero-title {
        font-size: 47px;
    }

    .tsc-hero-buttons {
        flex-direction: column;
    }

        .tsc-hero-buttons a {
            width: 100%;
        }

    .tsc-hero-features {
        gap: 15px;
    }
}
.tsc-energy-card {
    position: relative;
    padding: 28px;
    overflow: hidden;
    color: #fff;
    background: rgba(3,45,32,.62);
    border: 1px solid rgba(255,255,255,.17);
    border-radius: 26px;
    box-shadow: 0 30px 80px rgba(0,0,0,.24);
    backdrop-filter: blur(18px);
    animation-delay: .45s;
}

.tsc-energy-card-glow {
    width: 180px;
    height: 180px;
    position: absolute;
    top: -100px;
    right: -80px;
    background: rgba(255,196,0,.20);
    border-radius: 50%;
    filter: blur(25px);
}

.tsc-energy-card-top {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .tsc-energy-card-top > i {
        color: var(--tsc-gold);
        font-size: 25px;
    }

.tsc-live-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

    .tsc-live-status span {
        width: 8px;
        height: 8px;
        background: #64dc78;
        border-radius: 50%;
        box-shadow: 0 0 12px #64dc78;
        animation: tscPulse 1.6s ease infinite;
    }

.tsc-energy-output {
    margin: 32px 0 18px;
}

    .tsc-energy-output > span, .tsc-energy-output small {
        display: block;
        color: rgba(255,255,255,.58);
        font-size: 11px;
        text-transform: uppercase;
    }

    .tsc-energy-output strong {
        display: block;
        color: var(--tsc-gold);
        font-family: "Manrope", sans-serif;
        font-size: 64px;
        line-height: 1.15;
    }

.tsc-energy-chart {
    height: 105px;
    padding-top: 10px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    border-bottom: 1px solid rgba(255,255,255,.15);
}

    .tsc-energy-chart span {
        width: 100%;
        height: var(--bar-height);
        display: block;
        background: linear-gradient(180deg, var(--tsc-gold), rgba(255,196,0,.18));
        border-radius: 5px 5px 0 0;
        animation: tscBars 1.4s ease both;
        transform-origin: bottom;
    }

.tsc-energy-card-bottom {
    margin-top: 18px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: rgba(255,255,255,.64);
    font-size: 9px;
    text-transform: uppercase;
}

    .tsc-energy-card-bottom i {
        margin-right: 5px;
        color: var(--tsc-gold);
    }

.tsc-scroll-cue {
    position: absolute;
    bottom: 25px;
    left: 50%;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 11px;
    color: rgba(255,255,255,.55);
    font-size: 9px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

    .tsc-scroll-cue i {
        color: var(--tsc-gold);
        animation: tscBounce 1.8s ease infinite;
    }

.tsc-achievements {
    position: relative;
    z-index: 5;
    margin-top: -30px;
}

.tsc-achievement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #fff;
    border: 1px solid var(--tsc-line);
    border-radius: 18px;
    box-shadow: var(--tsc-shadow);
}

.tsc-achievement-card {
    min-height: 105px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    border-right: 1px solid var(--tsc-line);
}

    .tsc-achievement-card:last-child {
        border-right: 0;
    }

.tsc-achievement-icon {
    width: 47px;
    height: 47px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    color: var(--tsc-green-800);
    background: var(--tsc-green-100);
    border-radius: 14px;
}

.tsc-achievement-card strong {
    display: block;
    color: var(--tsc-green-900);
    font-family: "Manrope", sans-serif;
    font-size: 24px;
    line-height: 1.1;
}

.tsc-achievement-card small {
    color: var(--tsc-muted);
    font-size: 11px;
}

.tsc-about, .tsc-services, .tsc-expertise, .tsc-coverage, .tsc-values {
    padding: 120px 0;
}

.tsc-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 85px;
    align-items: center;
}

.tsc-about-visual {
    min-height: 570px;
    position: relative;
    padding: 0 45px 45px 0;
}

.tsc-about-image {
    height: 100%;
    min-height: 525px;
    overflow: hidden;
    border-radius: 6px 80px 6px 80px;
    box-shadow: var(--tsc-shadow);
}

    .tsc-about-image img {
        width: 100%;
        height: 100%;
        min-height: 525px;
        object-fit: cover;
    }

.tsc-about-badge {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 13px;
    color: #fff;
    background: var(--tsc-green-900);
    border: 5px solid #fff;
    border-radius: 17px;
    box-shadow: var(--tsc-shadow-soft);
}

    .tsc-about-badge i {
        color: var(--tsc-gold);
        font-size: 27px;
    }

    .tsc-about-badge strong, .tsc-about-badge span {
        display: block;
    }

    .tsc-about-badge span {
        color: rgba(255,255,255,.6);
        font-size: 9px;
        text-transform: uppercase;
    }

.tsc-about-year {
    position: absolute;
    top: 35px;
    left: -30px;
    padding: 16px;
    color: var(--tsc-green-950);
    background: var(--tsc-gold);
    border-radius: 14px;
    box-shadow: var(--tsc-shadow-soft);
}

    .tsc-about-year span, .tsc-about-year strong {
        display: block;
    }

    .tsc-about-year span {
        font-size: 9px;
        text-transform: uppercase;
    }

    .tsc-about-year strong {
        font: 800 26px "Manrope",sans-serif;
    }

.tsc-section-title {
    margin: 14px 0 22px;
    color: var(--tsc-green-950);
    font-family: "Manrope", sans-serif;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 800;
    letter-spacing: -.045em;
    line-height: 1.08;
}

    .tsc-section-title span {
        display: block;
        color: var(--tsc-green-700);
    }

.tsc-about-content > p {
    color: var(--tsc-muted);
}

.tsc-about-lead {
    color: #26382f !important;
    font-size: 18px;
    font-weight: 500;
}

.tsc-about-certification {
    margin: 28px 0;
    padding: 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: var(--tsc-surface);
    border-left: 4px solid var(--tsc-gold);
    border-radius: 0 14px 14px 0;
}

    .tsc-about-certification i {
        color: var(--tsc-green-700);
        font-size: 28px;
    }

    .tsc-about-certification strong, .tsc-about-certification span {
        display: block;
    }

    .tsc-about-certification span {
        color: var(--tsc-muted);
        font-size: 11px;
    }

.tsc-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--tsc-green-800) !important;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.tsc-services {
    background: var(--tsc-surface);
}

.tsc-section-heading {
    margin-bottom: 50px;
    display: grid;
    grid-template-columns: 1fr .72fr;
    gap: 70px;
    align-items: end;
}

    .tsc-section-heading > p {
        margin: 0 0 8px;
        padding-left: 25px;
        color: var(--tsc-muted);
        border-left: 3px solid var(--tsc-gold);
    }

.tsc-service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.tsc-service-card {
    min-height: 355px;
    position: relative;
    padding: 32px 28px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tsc-line);
    border-radius: var(--tsc-radius-lg);
    box-shadow: var(--tsc-shadow-soft);
    transition: transform var(--tsc-transition), box-shadow var(--tsc-transition);
}

    .tsc-service-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--tsc-shadow);
    }

.tsc-service-featured {
    color: #fff;
    background: linear-gradient(145deg, var(--tsc-green-950), var(--tsc-green-800));
    border: 0;
}

.tsc-service-number {
    position: absolute;
    top: 18px;
    right: 20px;
    color: rgba(6,72,50,.08);
    font: 800 64px "Manrope",sans-serif;
}

.tsc-service-featured .tsc-service-number {
    color: rgba(255,255,255,.08);
}

.tsc-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 28px;
    display: grid;
    place-items: center;
    color: var(--tsc-green-800);
    background: var(--tsc-green-100);
    border-radius: 17px;
    font-size: 24px;
}

.tsc-service-featured .tsc-service-icon {
    color: var(--tsc-green-950);
    background: var(--tsc-gold);
}

.tsc-service-card h3 {
    margin: 0 0 14px;
    color: var(--tsc-green-950);
    font: 800 23px "Manrope",sans-serif;
}

.tsc-service-card p {
    margin: 0;
    color: var(--tsc-muted);
    font-size: 14px;
}

.tsc-service-featured h3 {
    color: #fff;
}

.tsc-service-featured p {
    color: rgba(255,255,255,.67);
}

.tsc-service-line {
    width: 42px;
    height: 3px;
    position: absolute;
    bottom: 28px;
    left: 28px;
    background: var(--tsc-gold);
}

.tsc-offer {
    padding: 0 0 120px;
    background: var(--tsc-surface);
}

.tsc-offer-panel {
    padding: 55px;
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 60px;
    color: #fff;
    background: linear-gradient(135deg, var(--tsc-green-950), var(--tsc-navy));
    border-radius: var(--tsc-radius-xl);
    box-shadow: var(--tsc-shadow);
}

.tsc-label-light {
    color: var(--tsc-gold-soft);
}

.tsc-offer-copy h2 {
    margin: 14px 0 18px;
    font: 800 clamp(35px,3vw,48px)/1.1 "Manrope",sans-serif;
}

.tsc-offer-copy p {
    margin: 0;
    color: rgba(255,255,255,.66);
}

.tsc-offer-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

    .tsc-offer-list > div {
        padding: 17px;
        display: flex;
        align-items: center;
        gap: 13px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.11);
        border-radius: 14px;
    }

    .tsc-offer-list i {
        width: 39px;
        height: 39px;
        display: grid;
        flex: 0 0 auto;
        place-items: center;
        color: var(--tsc-gold);
        background: rgba(255,196,0,.09);
        border-radius: 11px;
    }

    .tsc-offer-list strong, .tsc-offer-list span {
        display: block;
    }

    .tsc-offer-list span {
        color: rgba(255,255,255,.53);
        font-size: 10px;
    }

    .tsc-offer-list strong {
        color: #fff;
        font-size: 13px;
    }

.tsc-section-heading-center {
    max-width: 850px;
    margin-inline: auto;
    display: block;
    text-align: center;
}

    .tsc-section-heading-center .tsc-section-label::before {
        display: none;
    }

    .tsc-section-heading-center > p {
        max-width: 670px;
        margin: 0 auto;
        padding: 0;
        border: 0;
    }

.tsc-expertise-grid {
    min-height: 610px;
    display: grid;
    grid-template-columns: 1fr 1.18fr 1fr;
    gap: 18px;
}

.tsc-expertise-card {
    min-height: 570px;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: var(--tsc-shadow-soft);
}

.tsc-expertise-card-large {
    transform: translateY(-20px);
}

.tsc-expertise-card > img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
    transition: transform .8s ease;
}

.tsc-expertise-card:hover > img {
    transform: scale(1.08);
}

.tsc-expertise-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,45,32,.03) 25%, rgba(3,45,32,.93) 100%);
}

.tsc-expertise-index {
    position: absolute;
    top: 22px;
    right: 25px;
    color: rgba(255,255,255,.52);
    font: 800 15px "Manrope",sans-serif;
}

.tsc-expertise-content {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 34px;
    color: #fff;
}

    .tsc-expertise-content > i {
        width: 48px;
        height: 48px;
        margin-bottom: 18px;
        display: grid;
        place-items: center;
        color: var(--tsc-green-950);
        background: var(--tsc-gold);
        border-radius: 14px;
    }

    .tsc-expertise-content > span {
        color: var(--tsc-gold-soft);
        font-size: 9px;
        font-weight: 800;
        letter-spacing: .14em;
        text-transform: uppercase;
    }

    .tsc-expertise-content h3 {
        margin: 5px 0 10px;
        font: 800 35px "Manrope",sans-serif;
    }

    .tsc-expertise-content p {
        color: rgba(255,255,255,.68);
        font-size: 13px;
    }

    .tsc-expertise-content a {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--tsc-gold);
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
    }

.tsc-coverage {
    color: #fff;
    background: linear-gradient(145deg, var(--tsc-green-950), #075e3c);
}

.tsc-coverage-grid {
    display: grid;
    grid-template-columns: 1fr .85fr;
    gap: 80px;
    align-items: center;
}

.tsc-coverage .tsc-section-label {
    color: var(--tsc-gold-soft);
}

.tsc-coverage .tsc-section-title {
    color: #fff;
}

    .tsc-coverage .tsc-section-title span {
        color: var(--tsc-gold);
    }

.tsc-coverage-copy > p {
    color: rgba(255,255,255,.68);
}

.tsc-location-list {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .tsc-location-list span {
        padding: 9px 14px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 999px;
        font-size: 11px;
    }

    .tsc-location-list i {
        margin-right: 6px;
        color: var(--tsc-gold);
    }

.tsc-coverage-map {
    min-height: 430px;
    position: relative;
    display: grid;
    place-items: center;
}

.tsc-map-orbit {
    position: absolute;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 50%;
}

.tsc-map-orbit-one {
    width: 390px;
    height: 390px;
    animation: tscOrbit 24s linear infinite;
}

.tsc-map-orbit-two {
    width: 285px;
    height: 285px;
    animation: tscOrbit 17s linear infinite reverse;
}

.tsc-map-island {
    width: 210px;
    height: 285px;
    position: relative;
    z-index: 2;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(160deg, rgba(255,255,255,.18), rgba(255,255,255,.06));
    border: 1px solid rgba(255,255,255,.19);
    border-radius: 58% 42% 62% 38% / 36% 52% 48% 64%;
    box-shadow: 0 25px 60px rgba(0,0,0,.18);
    backdrop-filter: blur(14px);
    transform: rotate(6deg);
}

    .tsc-map-island > * {
        transform: rotate(-6deg);
    }

    .tsc-map-island i {
        color: var(--tsc-gold);
        font-size: 42px;
    }

    .tsc-map-island strong {
        margin-top: 12px;
        font: 800 25px "Manrope",sans-serif;
    }

    .tsc-map-island span {
        color: rgba(255,255,255,.58);
        font-size: 10px;
    }

.tsc-map-point {
    width: 11px;
    height: 11px;
    position: absolute;
    z-index: 3;
    background: var(--tsc-gold);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 18px var(--tsc-gold);
    animation: tscPulse 1.6s ease infinite;
}

.tsc-map-point-one {
    top: 18%;
    left: 32%;
}

.tsc-map-point-two {
    top: 42%;
    right: 25%;
}

.tsc-map-point-three {
    bottom: 22%;
    left: 28%;
}

.tsc-map-point-four {
    bottom: 10%;
    right: 36%;
}

.tsc-values {
    background: var(--tsc-surface);
}

.tsc-purpose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.tsc-purpose-card {
    min-height: 300px;
    position: relative;
    padding: 42px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--tsc-line);
    border-radius: 24px;
    box-shadow: var(--tsc-shadow-soft);
}

    .tsc-purpose-card > span {
        color: var(--tsc-green-700);
        font-size: 10px;
        font-weight: 800;
        letter-spacing: .15em;
        text-transform: uppercase;
    }

    .tsc-purpose-card > i {
        position: absolute;
        top: 35px;
        right: 38px;
        color: var(--tsc-green-100);
        font-size: 62px;
    }

    .tsc-purpose-card h3 {
        max-width: 420px;
        margin: 40px 0 16px;
        color: var(--tsc-green-950);
        font: 800 32px "Manrope",sans-serif;
    }

    .tsc-purpose-card p {
        max-width: 500px;
        color: var(--tsc-muted);
    }

.tsc-purpose-featured {
    color: #fff;
    background: linear-gradient(145deg, var(--tsc-green-950), var(--tsc-green-800));
    border: 0;
}

    .tsc-purpose-featured > span {
        color: var(--tsc-gold);
    }

    .tsc-purpose-featured > i {
        color: rgba(255,255,255,.08);
    }

    .tsc-purpose-featured h3 {
        color: #fff;
    }

    .tsc-purpose-featured p {
        color: rgba(255,255,255,.68);
    }

.tsc-value-bar {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #fff;
    border: 1px solid var(--tsc-line);
    border-radius: 20px;
    box-shadow: var(--tsc-shadow-soft);
}

    .tsc-value-bar > div {
        position: relative;
        padding: 30px;
        display: grid;
        justify-items: start;
        border-right: 1px solid var(--tsc-line);
    }

        .tsc-value-bar > div:last-child {
            border-right: 0;
        }

        .tsc-value-bar > div > span {
            position: absolute;
            top: 13px;
            right: 20px;
            color: rgba(6,72,50,.09);
            font: 800 35px "Manrope",sans-serif;
        }

    .tsc-value-bar i {
        margin-bottom: 16px;
        color: var(--tsc-green-700);
        font-size: 24px;
    }

    .tsc-value-bar strong {
        color: var(--tsc-green-950);
    }

    .tsc-value-bar small {
        margin-top: 5px;
        color: var(--tsc-muted);
    }

.tsc-contact {
    padding: 120px 0;
    background: #fff;
}

.tsc-contact-panel {
    padding: 60px;
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: 65px;
    color: #fff;
    background: linear-gradient(135deg, var(--tsc-green-950), var(--tsc-navy));
    border-radius: var(--tsc-radius-xl);
    box-shadow: var(--tsc-shadow);
}

.tsc-contact-content h2 {
    margin: 14px 0 20px;
    font: 800 clamp(38px,3.5vw,53px)/1.08 "Manrope",sans-serif;
    letter-spacing: -.04em;
}

.tsc-contact-content > p {
    color: rgba(255,255,255,.65);
}

.tsc-contact-links {
    margin-top: 30px;
    display: grid;
    gap: 12px;
}

    .tsc-contact-links a {
        display: flex;
        align-items: center;
        gap: 13px;
    }

    .tsc-contact-links i {
        width: 42px;
        height: 42px;
        display: grid;
        place-items: center;
        color: var(--tsc-green-950);
        background: var(--tsc-gold);
        border-radius: 12px;
    }

    .tsc-contact-links small, .tsc-contact-links span {
        display: block;
    }

    .tsc-contact-links small {
        color: rgba(255,255,255,.5);
        font-size: 9px;
        text-transform: uppercase;
    }

.tsc-contact-form {
    padding: 35px;
    color: var(--tsc-ink);
    background: #fff;
    border-radius: 22px;
}

.tsc-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.tsc-contact-form label {
    display: grid;
    gap: 6px;
}

    .tsc-contact-form label > span {
        color: #405048;
        font-size: 10px;
        font-weight: 800;
        text-transform: uppercase;
    }

.tsc-contact-form input, .tsc-contact-form select, .tsc-contact-form textarea {
    width: 100%;
    padding: 13px 14px;
    color: var(--tsc-ink);
    background: #f7faf8;
    border: 1px solid var(--tsc-line);
    border-radius: 10px;
    outline: 0;
}

    .tsc-contact-form input:focus, .tsc-contact-form select:focus, .tsc-contact-form textarea:focus {
        border-color: var(--tsc-green-700);
        box-shadow: 0 0 0 3px rgba(17,150,83,.10);
    }

.tsc-form-full {
    grid-column: 1 / -1;
}

.tsc-contact-form textarea {
    resize: vertical;
}

.tsc-form-submit {
    width: 100%;
    margin-top: 18px;
    border: 0;
}

.tsc-form-success {
    margin: 13px 0 0;
    padding: 10px;
    color: var(--tsc-green-900);
    background: var(--tsc-green-100);
    border-radius: 9px;
    text-align: center;
    font-size: 12px;
}

.tsc-footer {
    color: rgba(255,255,255,.62);
    background: #021d15;
}

.tsc-footer-grid {
    padding: 75px 0 55px;
    display: grid;
    grid-template-columns: 1.5fr .75fr .85fr 1.2fr;
    gap: 50px;
}

.tsc-footer-logo {
    width: 205px;
    padding: 9px;
    background: #fff;
    border-radius: 13px;
}

.tsc-footer-brand p {
    max-width: 350px;
}

.tsc-social-links {
    display: flex;
    gap: 9px;
}

    .tsc-social-links a {
        width: 37px;
        height: 37px;
        display: grid;
        place-items: center;
        color: #fff;
        background: rgba(255,255,255,.07);
        border-radius: 10px;
    }

        .tsc-social-links a:hover {
            color: var(--tsc-green-950);
            background: var(--tsc-gold);
        }

.tsc-footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

    .tsc-footer-column h3 {
        margin: 0 0 10px;
        color: #fff;
        font: 800 16px "Manrope",sans-serif;
    }

    .tsc-footer-column a:hover {
        color: var(--tsc-gold);
    }

.tsc-footer-contact p {
    margin: 0;
    display: flex;
    gap: 10px;
}

.tsc-footer-contact i {
    color: var(--tsc-gold);
}

.tsc-footer-bottom {
    min-height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.08);
    font-size: 10px;
}

    .tsc-footer-bottom div {
        display: flex;
        gap: 20px;
    }

.tsc-back-top {
    width: 46px;
    height: 46px;
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 900;
    display: grid;
    place-items: center;
    color: var(--tsc-green-950);
    background: var(--tsc-gold);
    border: 0;
    border-radius: 50%;
    box-shadow: var(--tsc-shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(15px);
    transition: var(--tsc-transition);
    cursor: pointer;
}

    .tsc-back-top.tsc-back-top-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

.tsc-reveal {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.tsc-js .tsc-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .75s ease, transform .75s ease;
}

    .tsc-js .tsc-reveal.tsc-reveal-visible {
        opacity: 1;
        transform: translateY(0);
    }

@keyframes tscHeroZoom {
    to {
        transform: scale(1.08);
    }
}

@keyframes tscHeroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes tscOrbit {
    to {
        transform: rotate(360deg);
    }
}

@keyframes tscPulse {
    50% {
        transform: scale(1.35);
        opacity: .65;
    }
}

@keyframes tscBars {
    from {
        transform: scaleY(0);
    }
}

@keyframes tscBounce {
    50% {
        transform: translateY(6px);
    }
}

@media (max-width: 1120px) {
    .tsc-navigation {
        gap: 17px;
    }

    .tsc-nav-cta {
        display: none;
    }

    .tsc-hero-inner {
        grid-template-columns: 1.2fr .8fr;
        gap: 35px;
    }

    .tsc-service-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tsc-footer-grid {
        grid-template-columns: 1.3fr 1fr 1fr;
    }

    .tsc-footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .tsc-topbar-inner {
        justify-content: center;
    }

        .tsc-topbar-inner > span {
            display: none;
        }

    .tsc-navbar {
        min-height: 82px;
    }

    .tsc-logo {
        width: 158px;
    }

        .tsc-logo img {
            height: 64px;
        }

    .tsc-menu-button {
        display: block;
    }

    .tsc-navigation {
        position: fixed;
        top: 120px;
        right: 20px;
        left: 20px;
        padding: 20px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border: 1px solid var(--tsc-line);
        border-radius: 18px;
        box-shadow: var(--tsc-shadow);
    }

        .tsc-navigation.tsc-navigation-open {
            display: flex;
        }

        .tsc-navigation a {
            padding: 13px 10px;
            border-bottom: 1px solid var(--tsc-line);
        }

            .tsc-navigation a::after {
                display: none;
            }

    .tsc-hero {
        min-height: 850px;
        align-items: flex-end;
    }

    .tsc-hero-background {
        background-position: 67% center;
    }

    .tsc-hero-overlay {
        background: linear-gradient(180deg, rgba(3,45,32,.24), rgba(3,45,32,.88) 44%, rgba(2,30,21,.99) 72%);
    }

    .tsc-hero-inner {
        grid-template-columns: 1fr;
    }

    .tsc-hero-content {
        padding: 400px 0 105px;
    }

    .tsc-energy-card {
        display: none;
    }

    .tsc-scroll-cue {
        display: none;
    }

    .tsc-achievement-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tsc-achievement-card:nth-child(2) {
        border-right: 0;
    }

    .tsc-achievement-card:nth-child(-n+2) {
        border-bottom: 1px solid var(--tsc-line);
    }

    .tsc-about-grid, .tsc-coverage-grid, .tsc-contact-panel {
        grid-template-columns: 1fr;
    }

    .tsc-about-grid {
        gap: 60px;
    }

    .tsc-section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
    }

        .tsc-section-heading > p {
            max-width: 700px;
        }

    .tsc-offer-panel {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .tsc-expertise-grid {
        grid-template-columns: 1fr;
    }

    .tsc-expertise-card, .tsc-expertise-card-large {
        min-height: 520px;
        transform: none;
    }

    .tsc-purpose-grid {
        grid-template-columns: 1fr;
    }

    .tsc-footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tsc-footer-contact {
        grid-column: auto;
    }
}

@media (max-width: 600px) {
    .tsc-container {
        width: min(100% - 26px, 1200px);
    }

    .tsc-topbar-contact a:nth-child(2) {
        display: none;
    }

    .tsc-hero {
        min-height: 770px;
    }

    .tsc-hero-content {
        padding-top: 330px;
    }

    .tsc-hero-title {
        font-size: 48px;
    }

    .tsc-hero-actions .tsc-button {
        width: 100%;
    }

    .tsc-hero-trust {
        gap: 15px;
    }

    .tsc-achievement-grid {
        grid-template-columns: 1fr;
    }

    .tsc-achievement-card {
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid var(--tsc-line);
    }

        .tsc-achievement-card:last-child {
            border-bottom: 0;
        }

    .tsc-about, .tsc-services, .tsc-expertise, .tsc-coverage, .tsc-values, .tsc-contact {
        padding: 85px 0;
    }

    .tsc-about-visual {
        min-height: 460px;
        padding: 0 0 45px;
    }

    .tsc-about-image, .tsc-about-image img {
        min-height: 430px;
    }

    .tsc-about-year {
        left: 12px;
    }

    .tsc-about-badge {
        right: 10px;
    }

    .tsc-section-title {
        font-size: 39px;
    }

    .tsc-service-grid, .tsc-offer-list, .tsc-value-bar, .tsc-form-grid, .tsc-footer-grid {
        grid-template-columns: 1fr;
    }

    .tsc-offer {
        padding-bottom: 85px;
    }

    .tsc-offer-panel, .tsc-contact-panel {
        padding: 35px 23px;
        border-radius: 23px;
    }

    .tsc-purpose-card {
        padding: 32px 26px;
    }

    .tsc-value-bar > div {
        border-right: 0;
        border-bottom: 1px solid var(--tsc-line);
    }

        .tsc-value-bar > div:last-child {
            border-bottom: 0;
        }

    .tsc-contact-form {
        padding: 25px 19px;
    }

    .tsc-form-full {
        grid-column: auto;
    }

    .tsc-footer-bottom {
        padding: 22px 0;
        align-items: flex-start;
        flex-direction: column;
    }

        .tsc-footer-bottom div {
            flex-direction: column;
            gap: 5px;
        }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

/*=========================================================
    TSC V2 — DARK LUXURY COLOUR SYSTEM
=========================================================*/

body {
    background: #031c17;
}

.tsc-page {
    color: #e9f5ef;
    background: radial-gradient(circle at 10% 12%, rgba(19, 183, 103, .10), transparent 27%), radial-gradient(circle at 92% 38%, rgba(44, 104, 255, .08), transparent 24%), #031c17;
}

.tsc-topbar {
    background: linear-gradient(90deg, #071947, #033b2a 52%, #176c38);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.tsc-header {
    background: rgba(3, 28, 23, .91);
    border-bottom-color: rgba(255, 255, 255, .10);
    backdrop-filter: blur(18px);
}

    .tsc-header.tsc-header-scrolled {
        background: rgba(2, 23, 19, .97);
        box-shadow: 0 16px 42px rgba(0, 0, 0, .30);
    }

.tsc-logo {
    padding: 5px 11px;
    background: rgba(255, 255, 255, .96);
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
}

.tsc-navigation a {
    color: rgba(255, 255, 255, .72);
}

    .tsc-navigation a:hover,
    .tsc-navigation a.tsc-nav-active {
        color: #ffd231;
    }

    .tsc-navigation a::after {
        background: linear-gradient(90deg, #ffd231, #67dc70);
    }

.tsc-hero {
    min-height: 760px;
    isolation: isolate;
    background: #021d17;
}

.tsc-hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #06281f;
    transform: none;
    animation: none;
}

    .tsc-hero-background img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
        object-position: 62% center;
        filter: saturate(1.28) contrast(1.08) brightness(.88);
        transform: scale(1.04);
        animation: tscV2HeroMotion 18s ease-in-out infinite alternate;
    }

.tsc-hero-overlay {
    z-index: 1;
    background: linear-gradient( 90deg, rgba(1, 22, 18, .98) 0%, rgba(3, 38, 28, .91) 35%, rgba(3, 38, 28, .48) 63%, rgba(7, 25, 66, .20) 100% ), linear-gradient( 180deg, rgba(3, 20, 17, .10), rgba(3, 20, 17, .62) );
}

.tsc-hero::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background: linear-gradient(90deg, transparent 49.8%, rgba(255, 255, 255, .035) 50%, transparent 50.2%), linear-gradient(transparent 49.8%, rgba(255, 255, 255, .035) 50%, transparent 50.2%);
    background-size: 95px 95px;
    mask-image: linear-gradient(90deg, rgba(0,0,0,.65), transparent 72%);
}

.tsc-solar-orbit {
    z-index: 2;
    border-color: rgba(255, 210, 49, .20);
}

.tsc-hero-inner {
    z-index: 3;
}

.tsc-hero-title {
    text-shadow: 0 10px 35px rgba(0, 0, 0, .38);
}

    .tsc-hero-title span {
        color: #ffca05;
        background: linear-gradient(90deg, #ffbd00, #ffe56e, #7ee784);
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.tsc-energy-card {
    background: linear-gradient(145deg, rgba(6, 74, 49, .78), rgba(8, 24, 68, .70));
    border-color: rgba(255, 226, 85, .25);
    box-shadow: 0 35px 90px rgba(0, 0, 0, .34), inset 0 1px 0 rgba(255, 255, 255, .12);
}

    .tsc-energy-card::before {
        width: 160px;
        height: 160px;
        position: absolute;
        right: -80px;
        bottom: -80px;
        content: "";
        background: rgba(55, 212, 115, .20);
        border-radius: 50%;
        filter: blur(24px);
    }

.tsc-achievements {
    background: transparent;
}

.tsc-achievement-grid {
    background: linear-gradient(115deg, rgba(9, 63, 45, .96), rgba(8, 25, 67, .96));
    border-color: rgba(255, 255, 255, .11);
    box-shadow: 0 28px 65px rgba(0, 0, 0, .28);
}

.tsc-achievement-card {
    border-color: rgba(255, 255, 255, .10);
}

.tsc-achievement-icon {
    color: #032c20;
    background: linear-gradient(145deg, #ffd025, #8bea74);
}

.tsc-achievement-card strong {
    color: #ffffff;
}

.tsc-achievement-card small {
    color: rgba(255, 255, 255, .58);
}

.tsc-about {
    position: relative;
    background: radial-gradient(circle at 8% 80%, rgba(255, 192, 0, .11), transparent 28%), linear-gradient(145deg, #041f1a, #062e26 54%, #071d3d);
}

    .tsc-about::before {
        position: absolute;
        inset: 0;
        content: "";
        pointer-events: none;
        opacity: .18;
        background-image: radial-gradient(rgba(255,255,255,.65) .8px, transparent .8px);
        background-size: 23px 23px;
    }

    .tsc-about .tsc-container {
        position: relative;
    }

.tsc-about-image {
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 35px 80px rgba(0, 0, 0, .33);
}

.tsc-section-title,
.tsc-service-card h3,
.tsc-purpose-card h3 {
    color: #ffffff;
}

    .tsc-section-title span {
        color: #6ee276;
    }

.tsc-about-content > p,
.tsc-section-heading > p {
    color: rgba(235, 246, 240, .67);
}

.tsc-about-lead {
    color: #ffffff !important;
}

.tsc-about-certification {
    background: linear-gradient(105deg, rgba(255,255,255,.10), rgba(255,196,0,.07));
    border-top: 1px solid rgba(255,255,255,.11);
    border-right: 1px solid rgba(255,255,255,.11);
    border-bottom: 1px solid rgba(255,255,255,.11);
}

    .tsc-about-certification strong {
        color: #ffffff;
    }

    .tsc-about-certification span {
        color: rgba(255,255,255,.57);
    }

    .tsc-about-certification i,
    .tsc-text-link {
        color: #ffd231 !important;
    }

.tsc-services {
    background: radial-gradient(circle at 95% 10%, rgba(73, 111, 255, .13), transparent 24%), linear-gradient(180deg, #061d38, #031d18);
}

.tsc-service-card {
    background: linear-gradient(145deg, rgba(13, 65, 49, .93), rgba(7, 37, 31, .96));
    border-color: rgba(255, 255, 255, .10);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .23);
}

    .tsc-service-card:nth-child(1) {
        border-top: 3px solid #46d86b;
    }

    .tsc-service-card:nth-child(2) {
        border-top: 3px solid #ffd128;
    }

    .tsc-service-card:nth-child(3) {
        border-top: 3px solid #4d83ff;
    }

    .tsc-service-card:nth-child(4) {
        border-top: 3px solid #27d3ce;
    }

.tsc-service-featured {
    background: radial-gradient(circle at 100% 0%, rgba(255, 213, 37, .22), transparent 36%), linear-gradient(145deg, #0a6841, #102659);
}

.tsc-service-card p {
    color: rgba(232, 246, 238, .64);
}

.tsc-service-number {
    color: rgba(255, 255, 255, .08);
}

.tsc-service-icon {
    color: #051f19;
    background: linear-gradient(145deg, #54e17c, #ffdb3f);
}

.tsc-offer {
    background: linear-gradient(180deg, #031d18, #061a32);
}

.tsc-offer-panel {
    background: radial-gradient(circle at 85% 15%, rgba(255, 201, 0, .17), transparent 24%), radial-gradient(circle at 12% 90%, rgba(56, 213, 110, .16), transparent 30%), linear-gradient(125deg, #071d4b, #064b37 55%, #10275b);
    border: 1px solid rgba(255, 255, 255, .12);
}

.tsc-offer-list > div {
    background: linear-gradient(135deg, rgba(255,255,255,.11), rgba(255,255,255,.045));
}

.tsc-expertise {
    background: radial-gradient(circle at 5% 30%, rgba(255, 196, 0, .08), transparent 26%), #041f1a;
}

.tsc-expertise-card {
    border: 1px solid rgba(255, 255, 255, .13);
    box-shadow: 0 30px 65px rgba(0,0,0,.30);
}

.tsc-expertise-overlay {
    background: linear-gradient(180deg, rgba(6, 21, 18, .04) 18%, rgba(6, 32, 25, .24) 45%, rgba(2, 22, 18, .96) 100%);
}

.tsc-expertise-card:nth-child(1) .tsc-expertise-content > i {
    background: #5ce075;
}

.tsc-expertise-card:nth-child(2) .tsc-expertise-content > i {
    background: #ffd022;
}

.tsc-expertise-card:nth-child(3) .tsc-expertise-content > i {
    color: #fff;
    background: #497cff;
}

.tsc-coverage {
    background: radial-gradient(circle at 85% 20%, rgba(75, 121, 255, .22), transparent 30%), radial-gradient(circle at 20% 90%, rgba(52, 222, 111, .17), transparent 28%), linear-gradient(135deg, #061a42, #034b37 58%, #10245a);
}

.tsc-location-list span {
    background: linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.055));
}

.tsc-map-island {
    background: radial-gradient(circle at 30% 20%, rgba(255, 219, 55, .25), transparent 30%), linear-gradient(160deg, rgba(80, 219, 113, .25), rgba(66, 98, 235, .13));
}

.tsc-values {
    background: radial-gradient(circle at 10% 10%, rgba(47, 215, 103, .11), transparent 27%), linear-gradient(180deg, #041f1a, #071a38);
}

.tsc-purpose-card {
    background: linear-gradient(145deg, rgba(12, 65, 49, .91), rgba(6, 36, 30, .95));
    border-color: rgba(255, 255, 255, .10);
}

.tsc-purpose-featured {
    background: radial-gradient(circle at 95% 5%, rgba(255, 205, 28, .22), transparent 34%), linear-gradient(145deg, #0b6842, #17275d);
}

.tsc-purpose-card p {
    color: rgba(234, 246, 240, .64);
}

.tsc-value-bar {
    background: linear-gradient(110deg, #0b4835, #0a234e);
    border-color: rgba(255, 255, 255, .10);
}

    .tsc-value-bar > div {
        border-color: rgba(255,255,255,.10);
    }

    .tsc-value-bar strong {
        color: #ffffff;
    }

    .tsc-value-bar small {
        color: rgba(255,255,255,.56);
    }

    .tsc-value-bar i {
        color: #ffd12c;
    }

.tsc-contact {
    background: radial-gradient(circle at 90% 10%, rgba(255, 194, 0, .10), transparent 24%), #031c17;
}

.tsc-contact-panel {
    background: radial-gradient(circle at 5% 100%, rgba(67, 219, 110, .19), transparent 28%), radial-gradient(circle at 100% 0%, rgba(69, 103, 255, .20), transparent 28%), linear-gradient(130deg, #064d37, #071d4c 67%, #12275d);
    border: 1px solid rgba(255, 255, 255, .12);
}

.tsc-contact-form {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 28px 70px rgba(0, 0, 0, .28);
}

.tsc-footer {
    background: radial-gradient(circle at 10% 0%, rgba(34, 186, 89, .13), transparent 27%), linear-gradient(145deg, #011713, #061733 68%, #071f24);
}

@keyframes tscV2HeroMotion {
    0% {
        transform: scale(1.04) translate3d(0, 0, 0);
    }

    100% {
        transform: scale(1.13) translate3d(-2.2%, -1.2%, 0);
    }
}

@media (max-width: 900px) {
    .tsc-navigation {
        background: rgba(3, 32, 26, .98);
        border-color: rgba(255, 255, 255, .12);
    }

        .tsc-navigation a {
            color: rgba(255,255,255,.78);
            border-color: rgba(255,255,255,.10);
        }

    .tsc-hero-background img {
        object-position: 68% center;
    }

    .tsc-hero-overlay {
        background: linear-gradient( 180deg, rgba(2, 22, 18, .12) 0%, rgba(3, 37, 28, .48) 38%, rgba(2, 25, 21, .96) 66%, rgba(2, 22, 18, 1) 100% );
    }
}
/*=========================================================
    FINAL HERO BRIGHTNESS OVERRIDE
    KEEP THIS AT THE BOTTOM OF THE CSS FILE
=========================================================*/

.tsc-hero {
    background-color: #062d22 !important;
}


    /* Hero image */

    .tsc-hero .tsc-hero-background {
        position: absolute !important;
        inset: 0 !important;
        z-index: 0 !important;
        display: block !important;
        overflow: hidden !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: transparent !important;
        transform: none !important;
    }


        /* Make the image clearly visible */

        .tsc-hero .tsc-hero-background img {
            width: 100% !important;
            height: 100% !important;
            display: block !important;
            object-fit: cover !important;
            object-position: center !important;
            opacity: 1 !important;
            visibility: visible !important;
            filter: brightness(1.35) contrast(1.02) saturate(1.35) !important;
            animation: tscHeroImageMovement 18s ease-in-out infinite alternate !important;
        }


    /* Darken only the left side behind the writing */

    .tsc-hero .tsc-hero-overlay {
        position: absolute !important;
        inset: 0 !important;
        z-index: 1 !important;
        opacity: 1 !important;
        background: linear-gradient( 90deg, rgba(1, 24, 18, 0.88) 0%, rgba(2, 35, 25, 0.72) 25%, rgba(3, 43, 30, 0.48) 42%, rgba(3, 43, 30, 0.15) 58%, rgba(3, 43, 30, 0.02) 72%, transparent 100% ) !important;
    }


    /* Keep the content above the image */

    .tsc-hero .tsc-hero-inner {
        position: relative !important;
        z-index: 3 !important;
    }


    /* Keep animated decoration above the image */

    .tsc-hero .tsc-hero-decoration,
    .tsc-hero .tsc-solar-orbit {
        z-index: 2 !important;
    }


/* Make the performance card more transparent */

.tsc-performance-card,
.tsc-energy-card {
    background: linear-gradient( 145deg, rgba(5, 77, 49, 0.62), rgba(8, 26, 68, 0.55) ) !important;
    border: 1px solid rgba(255, 255, 255, 0.30) !important;
    backdrop-filter: blur(10px) !important;
}


/*=========================================================
    MOBILE HERO
=========================================================*/

@media (max-width: 900px) {

    .tsc-hero .tsc-hero-background img {
        object-position: 65% center !important;
        filter: brightness(1.25) contrast(1.03) saturate(1.25) !important;
    }

    .tsc-hero .tsc-hero-overlay {
        background: linear-gradient( 180deg, rgba(2, 24, 18, 0.02) 0%, rgba(2, 24, 18, 0.10) 35%, rgba(2, 30, 22, 0.62) 58%, rgba(2, 24, 18, 0.97) 82%, rgba(2, 24, 18, 1) 100% ) !important;
    }
}