a {
    text-decoration: none;
}

/* This wrapper contains the background image, font, and the gradient overlay */
.page-wrapper {
    font-family: 'Montserrat', sans-serif;
    /* Moved font here since body CSS is removed */
    position: relative;
    /* Replace with your actual building image */
    background-image: url('../img/banner.png');
    background-size: cover;
    background-position: right center;
    background-attachment: fixed;
    /* Helps the blur effect look better when scrolling */
    min-height: 500px;
    /* Added extra height to demonstrate the sticky scrolling effect */
    width: 100%;
    overflow: hidden;
}

/* The exact soft green-to-transparent gradient mask */
.gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            #e8fae3 0%,
            #e8fae3 35%,
            rgba(232, 250, 227, 0.85) 50%,
            rgba(255, 255, 255, 0) 80%);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    /* Ensures content sits above the overlay */
}

/* ==========================================
   STICKY & GLASS NAVBAR
========================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;

    padding: 1rem 4%;

    /* Glass Effect */
    background: #f8f9fa;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(255, 255, 255, 0.3);

    transition: all 0.3s ease-in-out;
}

/* Navbar on Scroll */

.navbar.scrolled {
    padding: 0.75rem 4%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ==========================================
   LOGO
========================================== */

.logo-container {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 8px;
}

.logo-container img {
    height: 55px;
    transition: all 0.3s ease;
}

.navbar.scrolled .logo-container img {
    height: 48px;
}

.logo-text-true {
    color: #245873;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo-text-clime {
    color: #67a652;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* ==========================================
   NAVIGATION
========================================== */

.navbar-nav {
    align-items: center;
}

.nav-link {
    position: relative;
    color: #245873 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 0.5rem;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #67a652 !important;
}

.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #67a652;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* ==========================================
   BUTTON
========================================== */

.btn-gradient {
    background: linear-gradient(90deg, #245873 0%, #67a652 100%);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    padding: 0.6rem 1.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-gradient:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(36, 88, 115, 0.3);
}

/* ==========================================
   MOBILE MENU
========================================== */

.navbar-toggler {
    border: none;
    box-shadow: none !important;
}

.navbar-toggler:focus {
    box-shadow: none !important;
}

@media (max-width: 991.98px) {

    .navbar-collapse {
        margin-top: 15px;
        padding: 20px;
        border-radius: 15px;

        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
    }

    .navbar-nav {
        align-items: flex-start;
    }

    .nav-link {
        margin: 10px 0;
    }

    .btn-gradient {
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }
}

/* about */

/* --- BANNER / HERO STYLES --- */
.hero-section {
    padding: 4rem 4% 6rem 4%;
    margin-top: 70px;
}

.hero-title {
    color: #245873;
    /* Hardcoded Primary Blue */
    font-weight: 800;
    font-size: 4rem;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    color: #111111;
    font-weight: 400;
    font-size: 1.15rem;
    line-height: 1.6;
    max-width: 90%;
    margin-bottom: 2.5rem;
}

.btn-schedule {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 2rem;
    font-size: 1.05rem;
    margin-bottom: 4rem;
}

.btn-schedule svg {
    margin-left: 10px;
}

/* Features/Icons Area */
.features-container {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 100px;
}

.feature-icon-wrapper {
    width: 75px;
    height: 75px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    margin-bottom: 1rem;
}

.feature-text {
    color: #111111;
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .page-wrapper {
        background-position: center;
    }

    .gradient-overlay {
        background: linear-gradient(to right, #e8fae3 0%, rgba(232, 250, 227, 0.95) 70%, rgba(255, 255, 255, 0.5) 100%);
    }

    .features-container {
        flex-wrap: wrap;
        gap: 4rem;
        margin: 0 auto;
        justify-content: center;
    }

    .btn-schedule {
        width: 100%;
        justify-content: center;
    }

    /* Adjust mobile navbar background to be more solid when opened */
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.9);
        padding: 1rem;
        border-radius: 10px;
        margin-top: 10px;
    }
}


/* about */
/* Scoped Wrapper to replace body styling */
.tc-analytics-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FAFCFD;
    color: #334155;
    -webkit-font-smoothing: antialiased;
    padding: 80px 20px;
    position: relative;
    background-image: url('../img/air-flow.webp');
    /* background-image:
        linear-gradient(to right, #F2F6F9 1px, transparent 1px),
        linear-gradient(to bottom, #F2F6F9 1px, transparent 1px); */
    /* background-size: 50px 50px; */
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center top;
    min-height: 100vh;
    box-sizing: border-box;
}

.tc-analytics-wrapper * {
    box-sizing: border-box;
}

/* .tc-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
} */

/* Header Styles */
.tc-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.tc-section-title {
    color: #316581;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.tc-section-subtitle {
    color: #64748B;
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    padding: 0 40px;
}

/* Bento Box Layout */
.tc-bento-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tc-bento-row {
    display: flex;
    gap: 24px;
}

@media (max-width: 991px) {
    .tc-bento-row {
        flex-direction: column;
    }
}

/* Base Card Styling */
.tc-bento-card {
    background-color: #FFFFFF;
    border: 1px solid #E0E7ED;
    border-radius: 40px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

/* Top Row Cards */
.tc-card-image-large {
    flex: 1.4;
    padding: 12px;
}

.tc-card-image-large img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.tc-card-what-we-do {
    flex: 1;
}

/* Bottom Row Cards */
.tc-card-impact {
    flex: 0.8;
}

.tc-card-differentiators {
    flex: 1.4;
}

.tc-card-image-small {
    flex: 1.1;
    padding: 12px;
    background-color: #EBF4F9;
    border-color: #D3E5F1;
}

.tc-card-image-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Card Headers */
.tc-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    font-size: 1.25rem;
    font-weight: 700;
    color: #316581;
}

.tc-card-header svg {
    width: 24px;
    height: 24px;
    margin-right: 12px;
    color: #316581;
}

/* What TrueClime Does List */
.tc-feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.tc-feature-item {
    display: flex;
    align-items: flex-start;
}

.tc-feature-icon-wrapper {
    margin-right: 16px;
    color: #316581;
    flex-shrink: 0;
    padding-top: 2px;
}

.tc-feature-icon-wrapper svg {
    width: 22px;
    height: 22px;
}

.tc-feature-text-block h4 {
    margin: 0 0 6px 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #334155;
}

.tc-feature-text-block p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
}

/* Impact Areas Pills */
.tc-impact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tc-impact-pill {
    background-color: #EAF3F8;
    border: 1px solid #D1E1EC;
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    color: #316581;
    font-weight: 600;
    font-size: 0.95rem;
}

.tc-impact-pill svg {
    width: 18px;
    height: 18px;
    margin-right: 12px;
    stroke-width: 2;
}

/* Key Differentiators Grid */
.tc-diff-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    height: 100%;
}

.tc-diff-box {
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.tc-diff-box-green {
    background-color: #F4FAF1;
    border: 1px solid #DCEFCD;
}

.tc-diff-box-blue {
    background-color: #F0F6FB;
    border: 1px solid #CFE0EF;
}

.tc-diff-box svg {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
}

.tc-diff-box-green svg {
    color: #5BA85E;
}

.tc-diff-box-blue svg {
    color: #538CB5;
}

.tc-diff-box-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #334155;
    margin: 0;
    line-height: 1.3;
}

/* Systems Grid */
/* Scoped Wrapper to prevent conflicts */
.tc-systems-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0B111E;
    /* Deep dark navy background */
    background-image: radial-gradient(circle at 50% 0%, #152336 0%, #0B111E 70%);
    color: #E2E8F0;
    padding: 100px 20px;
    min-height: 100vh;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tc-systems-wrapper * {
    box-sizing: border-box;
}

.tc-systems-container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header Styles */
.tc-systems-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.tc-systems-tag {
    display: inline-block;
    background-color: rgba(62, 114, 73, 0.15);
    border: 1px solid rgba(91, 168, 94, 0.4);
    color: #5BA85E;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.tc-systems-title {
    color: #FFFFFF;
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;

    background: linear-gradient(0deg, #FFFFFF 0%, #AEE59C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.tc-systems-subtitle {
    color: #94A3B8;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Grid Layout */
.tc-systems-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Individual Pill Cards */
.tc-system-pill {
    /* Width calculation for 4 columns with 16px gaps */
    width: calc(25% - 12px);
    background: linear-gradient(180deg, #161F32 0%, #111827 100%);
    border: 1px solid #233045;
    border-radius: 14px;
    padding: 24px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 85px;

    /* Green Top Inner Shadow Applied Here */
    box-shadow:
        inset 0 1px 0 rgba(91, 168, 94, 0.8),
        /* Sharp top green rim */
        inset 0 15px 20px -10px rgba(91, 168, 94, 0.3),
        /* Soft top green glow/blur */
        0 10px 15px -3px rgba(0, 0, 0, 0.3);
    /* Standard outer drop shadow */

    transition: all 0.3s ease;
    text-decoration: none;
}

.tc-system-pill span {
    color: #F8FAFC;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    transition: color 0.3s ease;
}

/* Hover Interaction */
.tc-system-pill:hover {
    border-color: rgba(91, 168, 94, 0.5);
    background: linear-gradient(180deg, #1A253A 0%, #141C2D 100%);
    transform: translateY(-2px);

    /* Intensified Green Top Inner Shadow on Hover */
    box-shadow:
        inset 0 2px 0 rgba(91, 168, 94, 1),
        /* Brighter top rim */
        inset 0 20px 25px -10px rgba(91, 168, 94, 0.5),
        /* Deeper green glow */
        0 15px 25px -5px rgba(0, 0, 0, 0.4);
    /* Larger outer shadow */
}

.tc-system-pill:hover span {
    color: #5BA85E;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .tc-system-pill {
        width: calc(33.333% - 11px);
        /* 3 columns */
    }

    .tc-systems-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .tc-system-pill {
        width: calc(50% - 8px);
        /* 2 columns */
    }

    .tc-systems-title {
        font-size: 2.4rem;
    }
}

@media (max-width: 480px) {
    .tc-system-pill {
        width: 100%;
        /* 1 column */
    }

    .tc-systems-wrapper {
        padding: 60px 16px;
    }
}

/* who we do */
/* This dark background is just so you can see the rounded edges of the section clearly */

/* Scoped Wrapper with the Rounded Edge Gradient */
.tc-who-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;

    /* The Multi-Point Soft Mesh Gradient */
    background-color: #FFFFFF;
    background-image:
        radial-gradient(circle at 0% 0%, #DFF0FA 0%, transparent 40%),
        /* Top Left Blue Glow */
        radial-gradient(circle at 100% 0%, #DCF4E4 0%, transparent 40%),
        /* Top Right Green Glow */
        radial-gradient(circle at 0% 100%, #DCF4E4 0%, transparent 40%);
    /* Bottom Left Green Glow */

    /* The Rounded Edges */

    overflow: hidden;
    /* Keeps the gradient contained within the curve */

    margin: 0 auto;
    padding: 100px 20px;
    box-sizing: border-box;
}

.tc-who-wrapper * {
    box-sizing: border-box;
}

.tc-who-container {
    max-width: 1140px;
    margin: 0 auto;
}

.tc-who-title {
    color: #316581;
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 60px 0;
    letter-spacing: -0.02em;
}

.tc-who-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.tc-who-card {
    width: calc(33.333% - 16px);
    height: 280px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.tc-who-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

/* Hover Interactions */
.tc-who-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tc-who-card:hover img {
    transform: scale(1.05);
}

/* Frosted Glass Label */
.tc-who-label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    text-align: center;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 16px 20px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.05rem;
    color: #316581;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: background 0.3s ease;
}

/* Highlight specific labels with green */
.tc-who-label.txt-green {
    color: #5BA85E;
}

.tc-who-card:hover .tc-who-label {
    background: rgba(255, 255, 255, 0.85);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .tc-who-card {
        width: calc(50% - 12px);
        height: 260px;
    }

    .tc-who-title {
        font-size: 2.8rem;
    }

    .tc-who-wrapper {
        border-radius: 24px;
        /* Slightly smaller curve on mobile */
    }
}

@media (max-width: 600px) {
    .tc-who-card {
        width: 100%;
        height: 240px;
    }

    .tc-who-title {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }

    .tc-who-wrapper {
        padding: 60px 16px;
    }
}

/* footer */
.tc-footer-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 60px 20px 40px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    color: #111827;
}

.tc-footer-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CONTAINER & GRID LAYOUT
           ========================================================================== */
.tc-footer-container {
    max-width: 1140px;
    margin: 0 auto;
}

.tc-footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

/* ==========================================================================
           COLUMN 1: BRAND
           ========================================================================== */
.tc-footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tc-footer-logo {
    height: 48px;
    /* Adjust based on actual logo asset */
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.tc-footer-tagline {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.6;
    margin: 0 0 24px 0;
    max-width: 280px;
}

/* Social Icons */
.tc-footer-socials {
    display: flex;
    gap: 12px;
}

.tc-footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    /* Exact gradient matching the design */
    background: linear-gradient(135deg, #60A56A 0%, #386681 100%);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-footer-socials a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.tc-footer-socials svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* ==========================================================================
           COLUMNS 2, 3, 4: NAVIGATION & INFO
           ========================================================================== */
.tc-footer-nav {
    text-align: center;
    /* Matches the centered aesthetic in the image */
}

.tc-footer-nav h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111827;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

.tc-footer-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tc-footer-nav li,
.tc-footer-nav a {
    font-size: 0.95rem;
    color: #475569;
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.tc-footer-nav a:hover {
    color: #60A56A;
    /* TrueClime Green */
}

/* ==========================================================================
           BOTTOM SECTION: LEGAL & COPYRIGHT
           ========================================================================== */
.tc-footer-bottom {
    border-top: 1px solid #E2E8F0;
    padding-top: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tc-footer-legal-links {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.tc-footer-legal-links a {
    font-size: 0.9rem;
    color: #94A3B8;
    /* Muted gray matching design */
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tc-footer-legal-links a:hover {
    color: #475569;
}

.tc-footer-copyright {
    margin: 0;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .tc-footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .tc-footer-tagline {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .tc-footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .tc-footer-legal-links {
        gap: 16px;
    }
}

/* Text without link styling (for Contact col) */
.tc-footer-text {
    color: #111827;
    font-size: 1.05rem;
    font-weight: 400;
}

/* Bottom Section: Copyright */
.tc-footer-bottom {
    border-top: 1px solid #E5E7EB;
    padding-top: 32px;
    text-align: center;
    font-size: 1rem;
    color: #111827;
    font-weight: 400;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .tc-footer-links-container {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .tc-footer-top {
        flex-direction: column;
        gap: 40px;
    }

    .tc-footer-brand {
        max-width: 100%;
    }

    .tc-footer-links-container {
        justify-content: flex-start;
        gap: 50px;
    }
}

@media (max-width: 480px) {
    .tc-footer-col {
        min-width: 100%;
    }

    .tc-footer-wrapper {
        padding: 60px 16px 30px;
    }
}

/* common banner */
.tc-page-banner {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0A1017;
    background-image: radial-gradient(circle at 15% 30%, rgba(93, 168, 92, 0.18) 0%, transparent 45%);
    padding: 50px 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    box-sizing: border-box;
    width: 100%;
    padding-top: 100px;
}

.tc-page-banner * {
    box-sizing: border-box;
}

/* Left Side: Edge-Lit Text Panel */
.tc-banner-text-panel {
    flex: 1;
    height: 200px;
    /* Forced 300px height as requested */
    background: #1C232B;
    /* Exact panel color from image */
    border-radius: 30px;
    /* Large rounded corners */
    padding: 0 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;

    /* Recreating the specific green top/right edge lighting */
    border: 1px solid #2A3645;
    border-top: 3px solid #68AD4A;
    /* border-right: 1px solid rgba(93, 168, 92, 0.4);
    border-left: 1px solid rgba(93, 168, 92, 0.1); */

    box-shadow:
        inset 0 10px 30px -10px rgba(93, 168, 92, 0.1),
        0 20px 40px rgba(0, 0, 0, 0.3);
}

.tc-banner-breadcrumb {
    color: #FFFFFF;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 16px 0;
    display: block;
}

.tc-banner-breadcrumb .current-page {
    opacity: 0.6;
    /* Fades the current page name slightly for hierarchy */
}

.tc-banner-title {
    color: #5DA85C;
    /* Exact TrueClime Green */
    font-size: 56px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
}

/* Right Side: Single Image Wrapper */
.tc-banner-image-wrapper {
    flex: 1.3;
    height: 300px;
    /* Forced 300px height to match text panel */
    border-radius: 30px;
    /* Large rounded corners matching left panel */
    overflow: hidden;
    /* Clips the image to the rounded corners */
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
}

.tc-banner-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the image fills the 300px height perfectly */
    transition: transform 0.5s ease;
}

.tc-banner-image-wrapper img:hover {
    transform: scale(1.05);
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .tc-page-banner {
        flex-direction: column;
        gap: 30px;
    }

    .tc-banner-text-panel {
        padding: 15px 30px;
        height: 250px;
        /* Slightly shorter on tablets */
    }

    .tc-banner-image-wrapper {
        height: 300px;
    }

    .tc-banner-title {
        font-size: 29px;
    }
}

@media (max-width: 576px) {
    .tc-banner-text-panel {
        height: 200px;
    }

    .tc-banner-image-wrapper {
        height: 250px;
    }
}


/* why us page  */
/* why trueclime */
.tc-ind-design-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    /* Solid white top */
    padding: 80px 20px 100px 20px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    color: #334155;
    -webkit-font-smoothing: antialiased;
}

/* The Solid but Slightly Transparent Bottom Background */
.tc-ind-design-wrapper::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    /* Covers the bottom half */
    background-color: rgba(144, 218, 155, 0.15);
    /* Solid green with slight transparency */
    z-index: 0;
}

.tc-ind-design-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           BACKGROUND DASHED LINES
           ========================================================================== */
.tc-ind-bg-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Sits above the bottom solid color, below content */
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.tc-ind-bg-lines svg {
    width: 100%;
    height: 100%;
    min-width: 1440px;
    opacity: 0.5;
}

.tc-ind-dash-path {
    fill: none;
    stroke: #6B8B9B;
    stroke-width: 1;
    stroke-dasharray: 12 18;
}

/* ==========================================================================
           INNER CONTAINER & HEADER
           ========================================================================== */
.tc-ind-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Keeps content above the background graphics */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tc-ind-pill {
    background-color: #DCF0DF;
    border: 1px solid #9CD2A8;
    color: #4E9C60;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 12px 32px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.tc-ind-intro {
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.6;
    color: #334155;
    max-width: 800px;
    margin: 0 0 50px 0;
    font-weight: 400;
}

/* ==========================================================================
           HERO SPLIT CARD
           ========================================================================== */
.tc-ind-hero-card {
    display: flex;
    width: 100%;
    background: #f1fbffb5;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tc-ind-hero-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.tc-ind-hero-title {
    color: #497E9C;
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;
}

.tc-ind-hero-desc {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #475569;
    margin: 0;
}

.tc-ind-hero-image {
    flex: 1.2;
    min-height: 350px;
}

.tc-ind-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0 24px 24px 0;
    display: block;
}

/* ==========================================================================
           BOTTOM 3-COLUMN FEATURE CARDS
           ========================================================================== */
.tc-ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}

.tc-ind-feature-box {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tc-ind-feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.tc-ind-icon-container {
    width: 54px;
    height: 54px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tc-ind-icon-container svg {
    width: 26px;
    height: 26px;
    color: #FFFFFF;
}

.tc-color-green {
    background-color: #62AC62;
}

.tc-color-blue {
    background-color: #497E9C;
}

.tc-text-green {
    color: #62AC62;
}

.tc-text-blue {
    color: #497E9C;
}

.tc-ind-feature-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.tc-ind-feature-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #64748B;
    margin: 0;
}

/* ==========================================================================
           RESPONSIVE ADJUSTMENTS
           ========================================================================== */
@media (max-width: 991px) {
    .tc-ind-hero-card {
        flex-direction: column-reverse;
    }

    .tc-ind-hero-image {
        min-height: 250px;
    }

    .tc-ind-hero-image img {
        border-radius: 24px 24px 0 0;
    }

    .tc-ind-hero-content {
        padding: 40px 30px;
    }

    .tc-ind-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .tc-ind-intro {
        font-size: 1.05rem;
        margin-bottom: 30px;
    }

    .tc-ind-hero-title {
        font-size: 1.8rem;
    }

    .tc-ind-design-wrapper {
        padding: 60px 16px;
    }
}

/* no manufacture allicated */
.tc-perf-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F4F9F9;
    /* Exact soft cyan/icy background */
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    /* Contains the background SVG circles */
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.tc-perf-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           BACKGROUND INTERSECTING CIRCLES (Wireframe)
           ========================================================================== */
.tc-perf-bg-circles {
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 900px;
    height: 900px;
    z-index: 1;
    pointer-events: none;
}

.tc-perf-bg-circles svg {
    width: 100%;
    height: 100%;
}

.tc-perf-circle-path {
    fill: none;
    stroke: #C2D6D9;
    /* Faint blue-grey stroke */
    stroke-width: 1px;
}

/* ==========================================================================
           LAYOUT CONTAINER
           ========================================================================== */
.tc-perf-container {
    max-width: 1140px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Sits above the background circles */
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ==========================================================================
           LEFT COLUMN: TEXT CONTENT
           ========================================================================== */
.tc-perf-content {
    flex: 1;
    max-width: 580px;
}

.tc-perf-badge {
    display: inline-flex;
    align-items: center;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 0.95rem;
    color: #285973;
    /* Dark blue text */
    gap: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    margin-bottom: 24px;
}

.tc-perf-badge svg {
    width: 18px;
    height: 18px;
    color: #529B65;
    /* Green icon */
}

/* Gradient Title Text */
.tc-perf-title-gradient {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.02em;

    /* The Gradient */
    background: linear-gradient(90deg, #529B65 0%, #285973 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.tc-perf-desc {
    font-size: 1.05rem;
    color: #5F7381;
    line-height: 1.6;
    margin: 0 0 32px 0;
    font-weight: 400;
}

/* Bordered Callout Box */
.tc-perf-callout {
    border: none;
    border-top: 2px solid #529B65;
    border-bottom: 2px solid #529B65;
    border-radius: 20px;
    padding: 24px;
    background-color: #FFFFFF;
    /* Added a subtle shadow here to elevate it from the background */
    box-shadow: 0 10px 30px rgba(82, 155, 101, 0.05);
}

.tc-perf-callout-header {
    display: flex;
    align-items: center;
    color: #529B65;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 12px;
    gap: 8px;
}

.tc-perf-callout-header svg {
    width: 22px;
    height: 22px;
    stroke-width: 2.5;
}

.tc-perf-callout-text {
    font-size: 0.95rem;
    color: #111827;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
           RIGHT COLUMN: CARD
           ========================================================================== */
.tc-perf-card-wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.tc-perf-card {
    background: #FFFFFF;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    max-width: 480px;

    /* Prominent Soft Green Box Shadow */
    box-shadow: 24px 28px 11px #b0f1933b;

    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Subtle rim light */
}

.tc-perf-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0 0 24px 0;
}

.tc-perf-card-title svg {
    width: 24px;
    height: 24px;
}

.tc-perf-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tc-perf-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid #E5E7EB;
}

.tc-perf-list-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.tc-perf-check-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #D8F1DC;
    /* Light green circle */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tc-perf-check-circle svg {
    width: 16px;
    height: 16px;
    color: #529B65;
    stroke-width: 2.5;
}

.tc-perf-item-text {
    font-size: 1.05rem;
    color: #4B5563;
    font-weight: 500;
    line-height: 1.4;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-perf-container {
        flex-direction: column;
        gap: 50px;
    }

    .tc-perf-card-wrapper {
        justify-content: center;
        width: 100%;
    }

    .tc-perf-card {
        max-width: 100%;
    }

    .tc-perf-bg-circles {
        right: 50%;
        transform: translate(50%, -50%);
        opacity: 0.5;
    }
}

@media (max-width: 576px) {
    .tc-perf-wrapper {
        padding: 60px 16px;
    }

    .tc-perf-card {
        padding: 30px 20px;
    }
}

/* standerd condition */
.tc-section {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    padding: 5rem 2%;
    background-color: #ffffff;
    overflow: hidden;
}

/* ----- BACKGROUND IMAGE CLASS ----- */
.bg-wavy-pattern {
    /* ADD YOUR WAVEY BACKGROUND IMAGE URL HERE */
    background-image: url('../img/air.png');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

.tc-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* --- HEADER --- */
.tc-header-title {
    background: linear-gradient(90deg, #6ba3bc 0%, #205c7c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
}

.tc-header-desc {
    color: #666666;
    font-size: 0.85rem;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 2.5rem auto;
    font-weight: 500;
    line-height: 1.6;
}

/* --- PILLS --- */
.tc-pill-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tc-pill-top {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #7cb36a;
    border-radius: 50px;
    padding: 0.5rem 1.2rem 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #111111;
    box-shadow: 0 4px 15px rgba(124, 179, 106, 0.15);
}

.tc-pill-bottom {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid #c2e6ba;
    border-radius: 50px;
    padding: 0.8rem 2.5rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #111111;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    margin-top: -1.5rem;
    /* Pull up slightly over the card shadow */
    position: relative;
    z-index: 5;
}

/* --- MAIN CARD --- */
.tc-main-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    padding: 3.5rem 2.5rem;
    margin-bottom: 3rem;
}

.tc-flex-layout {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 10px;
}

.tc-col-left {
    width: 42%;
}

.tc-col-right {
    width: 42%;
}

.tc-col-mid {
    width: 12%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 2rem;
}

/* --- COLUMN HEADERS --- */
.tc-sub-query {
    font-size: 0.7rem;
    color: #888888;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 500;
}

.tc-title-blue {
    color: #296582;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

.tc-title-green {
    color: #5a9c54;
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}

/* --- FLEXBOX GRIDS (Replaced CSS Grid) --- */
.tc-flex-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    /* Spacing between boxes */
}

.tc-flex-grid>.tc-box {
    /* 50% width minus half the 15px gap to fit exactly 2 per row */
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
}

.tc-flex-grid>.tc-box-1 {
    /* 50% width minus half the 15px gap to fit exactly 2 per row */
    flex: 0 0 calc(50% - 7.5px);
    max-width: calc(50% - 7.5px);
    height: 215px;
}

/* --- METRIC BOXES --- */
.tc-box-1 {
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    /* Ensure child flex contents center properly */
    box-sizing: border-box;
}

.tc-box {
    border-radius: 12px;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 120px;
    /* Ensure child flex contents center properly */
    box-sizing: border-box;
}

.tc-box-blue {
    background-color: #f0f7fb;
    border: 1px solid #bdd8e6;
}

.tc-box-green {
    background-color: #f2fcee;
    border: 1px solid #cae6c2;
}

/* --- ICON CONTAINERS (Ready for Images or FA) --- */
.tc-icon-bg {
    border-radius: 6px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #ffffff;
    font-size: 16px;
}

/* Rule if you decide to swap Font Awesome <i> tags with <img> tags later */
.tc-icon-bg img {
    max-width: 20px;
    max-height: 20px;
    object-fit: contain;
}

.tc-icon-blue {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #60A56A 0%, #285973 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tc-icon-green {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #60A56A 0%, #285973 100%);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.tc-box-text {
    font-size: 0.75rem;
    font-weight: 700;
    color: #111111;
    line-height: 1.3;
}

/* --- CENTER CONNECTOR --- */
.tc-connector-bubble {
    background: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 30px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #333333;
    padding: 0.4rem 1.8rem;
    text-align: center;
    line-height: 1.2;
    z-index: 2;
}

.tc-arrow-icon {
    color: #5a9c54;
    font-size: 1.8rem;
    display: block;
}

/* --- FOOTER --- */
.tc-footer-divider {
    border-top: 1px solid #999999;
    width: 80%;
    max-width: 800px;
    margin: 0 auto 2.5rem auto;
}

.tc-footer-black {
    color: #000000;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.tc-footer-green {
    color: #5a9c54;
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    background: linear-gradient(180deg,
            #64A84E 6%,
            #366C8B 100%);

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .tc-flex-layout {
        flex-direction: column;
        align-items: center;
    }

    .tc-col-left,
    .tc-col-right {
        width: 100%;
        max-width: 500px;
    }

    .tc-col-mid {
        flex-direction: row;
        width: 100%;
        padding: 2rem 0;
    }

    .tc-col-mid img {
        rotate: 90deg;
        height: 15px
    }

    .tc-arrow-icon {
        transform: rotate(90deg);
    }
}

/* strictly read only */
.tc-ro-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    position: relative;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    /* Contains the background effects */
}

.tc-ro-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           BACKGROUND STYLING (Grid & Glow)
           ========================================================================== */
/* Light graph-paper grid */
.tc-ro-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(to right, rgba(203, 213, 225, 0.4) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(203, 213, 225, 0.4) 1px, transparent 1px);
    background-size: 60px 60px;
    /* Size of grid squares */
    z-index: 0;
    pointer-events: none;
}

/* Subtle green radial glow on the right */
.tc-ro-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle at center, rgba(167, 243, 208, 0.3) 0%, rgba(255, 255, 255, 0) 70%);
    transform: translateY(-50%);
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
           MAIN CONTAINER
           ========================================================================== */
.tc-ro-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
}

/* ==========================================================================
           LEFT COLUMN: BADGE & IMAGE
           ========================================================================== */
.tc-ro-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.tc-ro-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #DFE8EE;
    /* Light grey-blue */
    color: #285973;
    /* Dark slate blue */
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
}

.tc-ro-badge svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.tc-ro-image-wrap {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tc-ro-image-wrap img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ==========================================================================
           RIGHT COLUMN: STACKED CARDS
           ========================================================================== */
.tc-ro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 500px;
}

/* Card Setup */
.tc-ro-card {
    position: relative;
    background-color: #F1F4EE;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 2;
    border-left: solid 3px #2B6384;
}

/* The Offset Blue Outline Effect */
/* .tc-ro-card::before {
    content: '';
    position: absolute;
    top: 6px;
    left: -6px;
    width: 100%;
    height: 100%;
    border: 1.5px solid #285973;
    border-radius: 20px;
    z-index: -1;
    
} */

/* Card Inner Elements */
.tc-ro-icon-box {
    width: 48px;
    height: 48px;
    background-color: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    color: #285973;
}

.tc-ro-icon-box svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.5;
}

.tc-ro-text-content {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.tc-ro-text-content h3 {
    margin: 0 0 6px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.tc-ro-text-content p {
    margin: 0;
    font-size: 0.9rem;
    color: #64748B;
    line-height: 1.5;
    font-weight: 500;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-ro-container {
        flex-direction: column;
        gap: 50px;
    }

    .tc-ro-left {
        align-items: center;
    }

    .tc-ro-image-wrap {
        max-width: 600px;
    }

    .tc-ro-right {
        max-width: 600px;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .tc-ro-wrapper {
        padding: 60px 16px;
    }

    .tc-ro-card {
        padding: 20px;
        gap: 16px;
        flex-direction: column;
        text-align: center;
    }
}


/* experience */
.tc-experience-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    background-color: #FFFFFF;
    /* Placeholder architectural/technical background to mimic the rendering */
    background-image: url('../img/wt-3.png');
    background-size: cover;
    background-position: center right;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
}

.tc-experience-wrapper * {
    box-sizing: border-box;
}

/* The white gradient overlay that fades from left to right */
.tc-experience-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 40%, rgba(255, 255, 255, 0.8) 55%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

/* ==========================================================================
           CONTAINER
           ========================================================================== */
.tc-experience-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    /* Sits above the gradient */
    display: flex;
    align-items: center;
}

/* ==========================================================================
           TEXT CONTENT
           ========================================================================== */
.tc-experience-content {
    max-width: 600px;
    /* Constrains text to the white section of the gradient */
}

.tc-experience-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #42677E;
    /* Muted steel blue from design */
    margin-bottom: 16px;
}

/* The small horizontal line before the eyebrow text */
.tc-experience-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #42677E;
}

.tc-experience-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #000000;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.tc-experience-body {
    font-size: 1.1rem;
    color: #334155;
    line-height: 1.6;
    margin: 0;
    padding-left: 20px;
    border-left: 3px solid #629D64;
    /* Muted green border matching design */
    font-weight: 400;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-experience-wrapper::before {
        /* Extend the white area slightly on tablets for better contrast */
        background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 55%, rgba(255, 255, 255, 0.5) 80%, rgba(255, 255, 255, 0) 100%);
    }

    .tc-experience-content {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .tc-experience-wrapper {
        padding: 80px 16px;
        background-position: 70% center;
        /* Shift background for mobile */
    }

    .tc-experience-wrapper::before {
        /* Push white further right to ensure text is perfectly legible on smaller screens */
        background: linear-gradient(90deg, #FFFFFF 0%, #FFFFFF 70%, rgba(255, 255, 255, 0.7) 100%);
    }

    .tc-experience-content {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .tc-experience-wrapper::before {
        /* Almost solid white background on mobile so text doesn't clash with image */
        background: rgba(255, 255, 255, 0.92);
    }

    .tc-experience-heading {
        font-size: 2rem;
    }

    .tc-experience-body {
        font-size: 1.05rem;
    }
}

/* no one size fits all */
/* ==========================================================
   TRUECLIME - EVERY BUILDING IS UNIQUE
========================================================== */

.tc-unique-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #FFFFFF;
    padding: 90px 20px;
    -webkit-font-smoothing: antialiased;
}

.tc-unique-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================
   CONTAINER
========================================================== */

.tc-unique-container {
    max-width: 900px;
    margin: 0 auto;
}

/* ==========================================================
   HEADER
========================================================== */

.tc-unique-header {
    text-align: center;
    margin-bottom: 60px;
}

.tc-unique-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: #386681;
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.tc-unique-eyebrow::before,
.tc-unique-eyebrow::after {
    content: "";
    width: 30px;
    height: 2px;
    background: #386681;
}

.tc-unique-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0;
}

/* ==========================================================
   LIST
========================================================== */

.tc-unique-list {
    width: 100%;
    border-top: 1px solid #E5E7EB;
}

.tc-unique-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    padding: 28px 20px;
    border-bottom: 1px solid #E5E7EB;
    text-align: center;
    transition: all .35s ease;
}

.tc-unique-row:hover {
    background: #F8FAFC;
}

.tc-unique-label {
    flex: 0 0 170px;
    text-align: start;
    color: #386681;
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.5;
}

.tc-unique-desc {
    flex: 0 0 370px;
    text-align: start;
    color: #111827;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.7;
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 991px) {

    .tc-unique-wrapper {
        padding: 70px 20px;
    }

    .tc-unique-header {
        margin-bottom: 50px;
    }

    .tc-unique-row {
        gap: 30px;
        padding: 24px 15px;
    }

    .tc-unique-label {
        flex: 0 0 200px;
        font-size: 1.05rem;
    }

    .tc-unique-desc {
        flex: 1;
        font-size: 1rem;
    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .tc-unique-wrapper {
        padding: 60px 18px;
    }

    .tc-unique-header {
        margin-bottom: 40px;
    }

    .tc-unique-eyebrow {
        font-size: 13px;
    }

    .tc-unique-title {
        font-size: 2rem;
    }

    .tc-unique-row {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 10px;
        padding: 22px 0;
        text-align: center;
    }

    .tc-unique-label,
    .tc-unique-desc {
        flex: none;
        width: 100%;
        text-align: center;
    }

    .tc-unique-label {
        font-size: 1rem;
    }

    .tc-unique-desc {
        font-size: .95rem;
        line-height: 1.7;
    }

}

/* about true */
/* section 1 */
.tc-about-exact-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    /* Page background */
    padding: 80px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
}

.tc-about-exact-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           MAIN CARD CONTAINER
           ========================================================================== */
.tc-about-card {
    max-width: 1100px;
    width: 100%;
    display: flex;
    background-color: #0B131C;
    /* Deep navy background matching image */
    border-radius: 24px;
    overflow: hidden;
    /* Clips the image and corners perfectly */
    box-shadow: 0 20px 40px rgba(11, 19, 28, 0.15);
    position: relative;
}

/* ==========================================================================
           LEFT SIDE: TEXT CONTENT
           ========================================================================== */
.tc-about-content {
    flex: 1.1;
    /* Takes slightly more space to match proportions */
    padding: 80px 60px 80px 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* Subtle green radial glow in the bottom left corner */
.tc-about-content::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 0% 100%, rgba(93, 168, 92, 0.15) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
}

.tc-about-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    color: #5DA85C;
    /* TrueClime Green */
    margin-bottom: 16px;
}

/* The green horizontal line */
.tc-about-eyebrow::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background-color: #5DA85C;
}

.tc-about-heading {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 24px 0;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.tc-about-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: #FFFFFF;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.tc-about-body {
    font-size: 1.05rem;
    color: #94A3B8;
    /* Muted slate matching the design */
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
    max-width: 95%;
    /* Prevents text from running entirely to the edge */
}

/* ==========================================================================
           RIGHT SIDE: IMAGE WITH FADE
           ========================================================================== */
.tc-about-image-side {
    flex: 1;
    position: relative;
    background-image: url('../img/at-1.webp');
    /* High-tech architectural placeholder */
    background-size: cover;
    background-position: center left;
    min-height: 450px;
}

/* The seamless gradient fade from dark navy into the image */
.tc-about-image-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 150px;
    /* Width of the fade transition */
    height: 100%;
    background: linear-gradient(90deg, #0B131C 0%, rgba(11, 19, 28, 0.8) 30%, rgba(11, 19, 28, 0) 100%);
    z-index: 1;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-about-card {
        flex-direction: column-reverse;
        /* Put image on top for tablets/mobile */
    }

    .tc-about-content {
        padding: 50px 40px;
    }

    .tc-about-image-side {
        min-height: 350px;
        background-position: center;
    }

    /* Adjust the fade to go top-to-bottom instead of left-to-right on mobile stack */
    .tc-about-image-side::before {
        width: 100%;
        height: 150px;
        top: auto;
        bottom: 0;
        background: linear-gradient(180deg, rgba(11, 19, 28, 0) 0%, rgba(11, 19, 28, 0.8) 70%, #0B131C 100%);
    }
}

@media (max-width: 576px) {
    .tc-about-exact-wrapper {
        padding: 40px 16px;
    }

    .tc-about-content {
        padding: 40px 24px;
    }

    .tc-about-image-side {
        min-height: 250px;
    }

    .tc-about-lead {
        font-size: 1.05rem;
    }

    .tc-about-body {
        font-size: 0.95rem;
    }
}


/* founder */
.tcs-bento-exact-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    /* Surrounding page color */
    padding: 60px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
}

.tcs-bento-exact-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.tcs-bento-container {
    max-width: 1200px;
    width: 100%;
    display: flex;
    gap: 20px;
}

/* ==========================================================================
           LEFT: HERO CARD
           ========================================================================== */
.tcs-bento-hero {
    flex: 0 0 320px;
    /* Fixed width for the portrait card */
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 480px;
}

/* Placeholder image - Replace with actual photo */
.tcs-bento-hero-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* Dark gradient overlay to make text readable */
.tcs-bento-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 70%;
    background: linear-gradient(180deg, rgba(10, 14, 23, 0) 0%, rgba(10, 14, 23, 0.6) 40%, #0A0E17 100%);
    z-index: 2;
}

.tcs-bento-hero-content {
    position: relative;
    z-index: 3;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
}

.tc-hero-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.tc-hero-title {
    font-size: 0.95rem;
    font-weight: 500;
    color: #94A3B8;
    /* Muted gray text */
    margin: 0 0 20px 0;
}

/* Green Pill Badge */
.tc-hero-badge {
    align-self: flex-start;
    /* Keeps the badge tight to the text width */
    background-color: rgba(36, 56, 40, 0.8);
    /* Dark green tint */
    border: 1px solid rgba(93, 168, 92, 0.4);
    color: #5DA85C;
    /* TrueClime Green */
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ==========================================================================
           RIGHT: GRID CARDS
           ========================================================================== */
.tcs-bento-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 20px;
}

/* General Card Styles */
.tcs-bento-card {
    background-color: #111723;
    /* Deep navy/slate background matching image */
    border-radius: 24px;
    padding: 32px 32px 40px 32px;
}

.tc-cards-span-2 {
    grid-column: 1 / 3;
}

/* Card Header */
.tc-cards-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.tc-cards-icon {
    width: 40px;
    height: 40px;
    background-color: #1A2230;
    /* Slightly lighter box behind icon */
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5DA85C;
    /* TrueClime Green */
}

.tc-cards-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.5;
}

.tc-cards-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin: 0;
}

/* Lists */
.tc-cards-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tc-cards-list-item {
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: #94A3B8;
    /* Slate gray text */
    line-height: 1.6;
    font-weight: 400;
}

/* Custom Green Bullet Point */
.tc-cards-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    /* Aligns dot vertically with the first line of text */
    width: 6px;
    height: 6px;
    background-color: #5DA85C;
    border-radius: 50%;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tcs-bento-container {
        flex-direction: column;
    }

    .tcs-bento-hero {
        flex: none;
        width: 100%;
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .tcs-bento-grid {
        grid-template-columns: 1fr;
        /* Stack all cards on smaller screens */
    }

    .tc-cards-span-2 {
        grid-column: 1 / 2;
    }

    .tcs-bento-exact-wrapper {
        padding: 40px 16px;
    }

    .tcs-bento-card {
        padding: 24px;
    }
}


/* build a team */
.custom-team-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F6FAF7;
    /* Very pale, cool mint/off-white */
    position: relative;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.custom-team-wrapper * {
    box-sizing: border-box;
}

/* Abstract Dotted Wave Background */
.custom-team-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%23285973' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.15' d='M-100,150 C300,50 600,450 1540,150' /%3E%3Cpath fill='none' stroke='%23285973' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.12' d='M-100,170 C320,70 620,470 1540,170' /%3E%3Cpath fill='none' stroke='%23285973' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.1' d='M-100,190 C340,90 640,490 1540,190' /%3E%3Cpath fill='none' stroke='%23285973' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.08' d='M-100,210 C360,110 660,510 1540,210' /%3E%3Cpath fill='none' stroke='%235DA85C' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.12' d='M-100,230 C380,130 680,530 1540,230' /%3E%3Cpath fill='none' stroke='%235DA85C' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.08' d='M-100,250 C400,150 700,550 1540,250' /%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.custom-team-container {
    max-width: 1040px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 1;
    /* Sits above the background waves */
}

/* ==========================================================================
           LEFT: OVAL IMAGE
           ========================================================================== */
.custom-team-image-col {
    flex: 0 0 380px;
    display: flex;
    justify-content: center;
}

.custom-team-image-col img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 500px;
    display: block;
    box-shadow: 0 20px 40px rgba(40, 89, 115, 0.08);
}

/* ==========================================================================
           RIGHT: TEXT CONTENT
           ========================================================================== */
.custom-team-text-col {
    flex: 1;
    padding: 20px 0;
}

.custom-team-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;

    /* Gradient Text Effect */
    background: linear-gradient(90deg, #285973 0%, #5DA85C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.custom-team-body {
    font-size: 1.05rem;
    color: #64748B;
    /* Slate gray */
    line-height: 1.7;
    font-weight: 500;
    margin: 0;
    max-width: 95%;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .custom-team-container {
        flex-direction: column;
        text-align: center;
        gap: 50px;
    }

    .custom-team-image-col {
        flex: none;
        width: 100%;
        max-width: 400px;
    }

    .custom-team-body {
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .custom-team-wrapper {
        padding: 60px 16px;
    }

    .custom-team-image-col img {
        height: 400px;
    }

    .custom-team-heading {
        font-size: 2rem;
    }

    .custom-team-body {
        font-size: 1rem;
    }
}


/* solutions */
/* section 1 */
.tc-perf-scroll-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #F0F7FB;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

.tc-perf-scroll-wrapper * {
    box-sizing: border-box;
}

.tc-perf-scroll-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    position: relative;
}

/* ==========================================================================
           LEFT: STICKY COLUMN
           ========================================================================== */
.tc-perf-scroll-sticky-left {
    flex: 1;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}

.tc-perf-scroll-eyebrow {
    font-size: 0.9rem;
    font-weight: 700;
    color: #386681;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.tc-perf-scroll-heading {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #285973;
    margin: 0 0 40px 0;
    line-height: 1.1;
}

/* Comparison Image Block */
.tc-perf-scroll-comp-box {
    /* display: flex; */
    align-items: center;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.tc-perf-scroll-comp-img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.tc-perf-scroll-comp-vs {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #111827;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #F0F7FB;
}

/* ==========================================================================
           RIGHT: SCROLLING TIMELINE
           ========================================================================== */
.tc-perf-scroll-right {
    flex: 1;
    position: relative;
    padding-left: 40px;
}

/* The vertical gray line */
.tc-perf-scroll-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background-color: #CBD5E1;
}

.tc-perf-scroll-item {
    margin-bottom: 80px;
    position: relative;
}

/* The Green Dot */
.tc-perf-scroll-item::before {
    content: '';
    position: absolute;
    left: -48px;
    top: 0;
    width: 18px;
    height: 18px;
    background-color: #5DA85C;
    border-radius: 50%;
    border: 4px solid #F0F7FB;
}

.tc-perf-scroll-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #285973;
    margin: 0 0 16px 0;
}

.tc-perf-scroll-text {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
           RESPONSIVE
           ========================================================================== */
@media (max-width: 991px) {
    .tc-perf-scroll-container {
        flex-direction: column;
        gap: 40px;
    }

    .tc-perf-scroll-sticky-left {
        position: static;
    }

    .tc-perf-scroll-right {
        padding-left: 20px;
    }

    .tc-perf-scroll-item::before {
        left: -28px;
    }
}


/* real world data review */
.tc-rw-data-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #0B131C;
    /* Deep Navy Background */
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    position: relative;
    overflow: hidden;
}

.tc-rw-data-wrapper * {
    box-sizing: border-box;
}

/* Subtle green radial glow in the bottom-left */
.tc-rw-data-wrapper::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(93, 168, 92, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.tc-rw-data-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.tc-rw-data-main-title {
    text-align: center;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: #5DA85C;
    /* TrueClime Green */
    margin: 0 0 60px 0;
    letter-spacing: -0.01em;
}

.tc-rw-data-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* ==========================================================================
           CARD STYLING
           ========================================================================== */
.tc-rw-data-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.tc-rw-data-card-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.tc-rw-data-divider {
    width: 100%;
    max-width: 250px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin-bottom: 24px;
}

.tc-rw-data-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #5DA85C;
    /* Green heading */
    margin: 0 0 16px 0;
}

.tc-rw-data-card-text {
    font-size: 1rem;
    color: #E2E8F0;
    /* Light gray body text */
    line-height: 1.6;
    margin: 0;
    max-width: 90%;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-rw-data-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .tc-rw-data-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .tc-rw-data-wrapper {
        padding: 60px 16px;
    }

    .tc-rw-data-card-img {
        height: 180px;
    }
}

/* retro fit */
.sl-retrofit-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
}

.sl-retrofit-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.sl-retrofit-container {
    max-width: 1140px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 80px;
}

/* ==========================================================================
           LEFT COLUMN
           ========================================================================== */
.sl-retrofit-left {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.sl-retrofit-heading {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: #0F172A;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.01em;
}

.sl-retrofit-desc {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 40px 0;
    max-width: 95%;
}

.sl-retrofit-img-box {
    width: 100%;
    height: 220px;
    border-radius: 120px;
    /* Creates the distinct pill shape */
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sl-retrofit-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================================================
           RIGHT COLUMN (2x2 Grid)
           ========================================================================== */
.sl-retrofit-right {
    flex: 1.1;
    background-color: #F8FAFB;
    /* Very subtle off-white/blue tint */
    border-radius: 24px;
    /* Using grid to create the internal borders seamlessly */
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.sl-retrofit-card {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
}

/* Internal Border Logic (The "Cross") */
.sl-retrofit-card:nth-child(1) {
    border-right: 1px solid #D2DFE6;
    border-bottom: 1px solid #D2DFE6;
}

.sl-retrofit-card:nth-child(2) {
    border-bottom: 1px solid #D2DFE6;
}

.sl-retrofit-card:nth-child(3) {
    border-right: 1px solid #D2DFE6;
}

/* Card Content Styling */
.sl-retrofit-icon {
    color: #5DA85C;
    /* TrueClime Green */
    margin-bottom: 16px;
}

.sl-retrofit-icon svg {
    width: 32px;
    height: 32px;
    stroke-width: 2;
}

.sl-retrofit-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #5DA85C;
    /* Matching green title */
    margin: 0 0 12px 0;
}

.sl-retrofit-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .sl-retrofit-container {
        flex-direction: column;
        gap: 50px;
    }

    .sl-retrofit-left {
        text-align: center;
        align-items: center;
    }

    .sl-retrofit-desc {
        text-align: center;
    }

    .sl-retrofit-img-box {
        max-width: 500px;
    }
}

@media (max-width: 576px) {
    .sl-retrofit-wrapper {
        padding: 60px 16px;
    }

    .sl-retrofit-img-box {
        height: 180px;
        border-radius: 80px;
        /* Adjust pill shape for smaller screens */
    }

    /* Stack the grid into a single column on mobile */
    .sl-retrofit-right {
        grid-template-columns: 1fr;
    }

    /* Reset internal borders for mobile stacking */
    .sl-retrofit-card:nth-child(1),
    .sl-retrofit-card:nth-child(2),
    .sl-retrofit-card:nth-child(3) {
        border-right: none;
        border-bottom: 1px solid #D2DFE6;
    }

    .sl-retrofit-card {
        padding: 32px 24px;
    }
}


/* predictive */
.sl-predictive-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.sl-predictive-wrapper * {
    box-sizing: border-box;
}

/* Abstract Dotted Wave Background */
.sl-predictive-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 120%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='none' stroke='%23285973' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.15' d='M-100,150 C300,50 600,450 1540,150' /%3E%3Cpath fill='none' stroke='%23285973' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.12' d='M-100,170 C320,70 620,470 1540,170' /%3E%3Cpath fill='none' stroke='%235DA85C' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.15' d='M-100,190 C340,90 640,490 1540,190' /%3E%3Cpath fill='none' stroke='%235DA85C' stroke-width='2' stroke-dasharray='2 10' stroke-linecap='round' stroke-opacity='0.10' d='M-100,210 C360,110 660,510 1540,210' /%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    z-index: 0;
    pointer-events: none;
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.sl-predictive-container {
    max-width: 1180px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 1;
    /* Sits above the background waves */
}

/* ==========================================================================
           LEFT COLUMN (Text & Image)
           ========================================================================== */
.sl-predictive-left {
    display: flex;
    flex-direction: column;
    padding-right: 20px;
}

.sl-predictive-eyebrow {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 12px 0;
    background: linear-gradient(90deg, #285973 0%, #5DA85C 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.sl-predictive-eyebrow .sl-green-text {
    color: #539156;
}

.sl-predictive-heading {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;

    /* Gradient Text Effect using requested colors */
    background: linear-gradient(90deg, #2C6280 0%, #09141A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.sl-predictive-desc {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 32px 0;
    font-weight: 400;
}

.sl-predictive-img-box {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.sl-predictive-img-box img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ==========================================================================
           RIGHT COLUMN (Stacked Cards)
           ========================================================================== */
.sl-predictive-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sl-predictive-card {
    background-color: #FFFFFF;
    border: 1px solid #D0E3D3;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.sl-predictive-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.sl-predictive-icon {
    width: 44px;
    height: 44px;
    background-color: #B6CFB9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Custom SVG Line Art Icons */
.sl-predictive-icon svg {
    width: 22px;
    height: 22px;
    stroke: #1D2A20;
    stroke-width: 1.8;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.sl-predictive-card-content {
    display: flex;
    flex-direction: column;
}

.sl-predictive-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 8px 0;
}

.sl-predictive-card-text {
    font-size: 0.95rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .sl-predictive-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .sl-predictive-left {
        padding-right: 0;
    }
}

@media (max-width: 576px) {
    .sl-predictive-wrapper {
        padding: 60px 16px;
    }

    .sl-predictive-card {
        padding: 20px;
        flex-direction: column;
        gap: 16px;
    }
}



/* esg */
.custom-esg-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    position: relative;
    padding: 120px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    /* Placeholder background image - replace with your actual futuristic city asset */
    background-image: url('../img/sl-7.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.custom-esg-wrapper * {
    box-sizing: border-box;
}

/* Dark overlay to ensure text readability, matching the image */
.custom-esg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.65);
    /* Deep slate/black overlay */
    z-index: 1;
}

/* ==========================================================================
           CONTAINER & HEADER LAYOUT
           ========================================================================== */
.custom-esg-container {
    max-width: 1200px;
    width: 100%;
    position: relative;
    z-index: 2;
    /* Sits above the overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.custom-esg-eyebrow {
    font-size: 1.05rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.custom-esg-heading {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.2;
    margin: 0 0 20px 0;
    letter-spacing: -0.01em;
}

/* The exact muted sage green used in "Sustainability Goals" */
.custom-esg-heading .custom-esg-green-text {
    color: #89B585;
}

.custom-esg-desc {
    font-size: 1.1rem;
    color: #E2E8F0;
    /* Off-white for readability */
    line-height: 1.6;
    margin: 0 0 60px 0;
    max-width: 700px;
    font-weight: 400;
}

/* ==========================================================================
           FOUR COLUMN CARD GRID
           ========================================================================== */
.custom-esg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

.custom-esg-card {
    background-color: #FFFFFF;
    border-radius: 24px;
    padding: 40px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.custom-esg-card:hover {
    transform: translateY(-4px);
}

.custom-esg-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FontAwesome styling */
.custom-esg-icon i {
    font-size: 32px;
    color: #5DA85C;
    /* TrueClime green */
    line-height: 1;
}

.custom-esg-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0F172A;
    /* Deep Slate/Black */
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.custom-esg-card-text {
    font-size: 0.95rem;
    color: #475569;
    /* Slate gray */
    line-height: 1.6;
    margin: 0;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 1024px) {
    .custom-esg-grid {
        grid-template-columns: repeat(2, 1fr);
        /* 2x2 grid on tablets */
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .custom-esg-wrapper {
        padding: 80px 16px;
    }

    .custom-esg-grid {
        grid-template-columns: 1fr;
        /* Stacked on mobile */
    }

    .custom-esg-card {
        padding: 32px 24px;
    }

    .custom-esg-desc {
        font-size: 1rem;
    }
}

/* strategy */
.custom-cap-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    overflow: hidden;
    /* Prevents horizontal scroll during animations */
}

.custom-cap-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CONTAINER & HEADER
           ========================================================================== */
.custom-cap-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.custom-cap-header {
    text-align: center;
    margin-bottom: 100px;
    /* Prevents flash of unstyled content before GSAP loads */
    visibility: hidden;
}

.custom-cap-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.custom-cap-heading {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;
}

.custom-cap-blue {
    color: #2C6280;
    /* Dark slate blue */
}

.custom-cap-green {
    color: #5DA85C;
    /* TrueClime green */
}

/* ==========================================================================
           TIMELINE LAYOUT
           ========================================================================== */
.custom-cap-timeline {
    display: flex;
    align-items: center;
    position: relative;
    height: 200px;
    /* Fixed height to allow absolute positioning above/below */
    visibility: hidden;
    /* Prevents FOUC */
}

/* The main horizontal line */
.custom-cap-line {
    position: absolute;
    top: 50%;
    left: 2%;
    right: 2%;
    height: 2px;
    background-color: #CBD5E1;
    transform: translateY(-50%);
    z-index: 1;
}

.custom-cap-node {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    height: 100%;
}

/* The green indicator dot */
.custom-cap-dot {
    width: 16px;
    height: 16px;
    background-color: #6DBB6A;
    /* Bright inner green */
    border: 2px solid #336F32;
    /* Dark outer green stroke */
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

/* Content block holding text and numbers */
.custom-cap-content {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    z-index: 2;
}

/* Positioning Top Nodes (01, 03) */
.custom-cap-top .custom-cap-content {
    bottom: calc(50% + 24px);
    /* Pushes content above the line */
}

.custom-cap-top .custom-cap-content::after {
    content: '';
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background-color: #CBD5E1;
    z-index: -1;
}

/* Positioning Bottom Nodes (02, 04) */
.custom-cap-bottom .custom-cap-content {
    top: calc(50% + 24px);
    /* Pushes content below the line */
}

.custom-cap-bottom .custom-cap-content::before {
    content: '';
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background-color: #CBD5E1;
    z-index: -1;
}

/* ==========================================================================
           NODE TYPOGRAPHY
           ========================================================================== */
.custom-cap-num {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 5rem;
    font-weight: 800;
    color: #F1F5F9;
    /* Very faint gray background number */
    z-index: 0;
    line-height: 1;
    pointer-events: none;
}

.custom-cap-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    position: relative;
    z-index: 2;
    /* Sits above the background number */
    background: linear-gradient(90deg, #245571 0%, #488DAF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.custom-cap-desc {
    font-size: 0.95rem;
    color: #64748B;
    margin: 0;
    position: relative;
    z-index: 2;
    /* Sits above the background number */
    font-weight: 500;
}

/* ==========================================================================
           RESPONSIVE DESIGN (MOBILE VERTICAL TIMELINE)
           ========================================================================== */
@media (max-width: 768px) {
    .custom-cap-header {
        margin-bottom: 60px;
    }

    .custom-cap-timeline {
        flex-direction: column;
        height: auto;
        align-items: flex-start;
        padding-left: 20px;
    }

    .custom-cap-line {
        top: 0;
        bottom: 0;
        left: 27px;
        /* Align with dots */
        width: 2px;
        height: 100%;
        transform: none;
    }

    .custom-cap-node {
        width: 100%;
        height: auto;
        flex-direction: row;
        justify-content: flex-start;
        padding-left: 50px;
        margin-bottom: 50px;
    }

    .custom-cap-node:last-child {
        margin-bottom: 0;
    }

    .custom-cap-dot {
        top: 15px;
        /* Align with text visually */
        left: -8px;
        /* Position perfectly on the vertical line */
        transform: none;
    }

    .custom-cap-content,
    .custom-cap-top .custom-cap-content,
    .custom-cap-bottom .custom-cap-content {
        position: relative;
        top: auto;
        bottom: auto;
        align-items: flex-start;
        text-align: left;
    }

    /* Hide the small vertical connector lines on mobile */
    .custom-cap-top .custom-cap-content::after,
    .custom-cap-bottom .custom-cap-content::before {
        display: none;
    }

    .custom-cap-num {
        left: -10px;
        transform: translateY(-50%);
        font-size: 4rem;
    }
}


/* build for real hvac */
.custom-hvac-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Prevents animation scrollbars */
}

.custom-hvac-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CSS KEYFRAME ANIMATIONS (NO JS)
           ========================================================================== */
@keyframes customHvacFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes customHvacFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.custom-hvac-container {
    max-width: 1240px;
    width: 100%;
    display: flex;
    align-items: flex-start;
    gap: 80px;
}

/* ==========================================================================
           LEFT COLUMN
           ========================================================================== */
.custom-hvac-left {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
}

/* Badge */
.custom-hvac-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #DDECDD;
    /* Light green background */
    color: #5DA85C;
    /* TrueClime Green */
    padding: 8px 20px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 24px;
    align-self: flex-start;
    transition: transform 0.3s ease, background-color 0.3s ease;

    /* Entry Animation */
    opacity: 0;
    animation: customHvacFadeInUp 0.8s ease-out 0.1s forwards;
}

.custom-hvac-badge:hover {
    transform: translateY(-2px);
    background-color: #D1E5D1;
}

.custom-hvac-badge svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Heading */
.custom-hvac-heading {
    font-size: clamp(2.2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;

    /* Gradient Text Effect */
    background: linear-gradient(135deg, #5DA85C 0%, #2C6280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */

    /* Entry Animation */
    opacity: 0;
    animation: customHvacFadeInUp 0.8s ease-out 0.2s forwards;
}

/* Description */
.custom-hvac-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-weight: 500;

    /* Entry Animation */
    opacity: 0;
    animation: customHvacFadeInUp 0.8s ease-out 0.3s forwards;
}

/* Image Pill */
.custom-hvac-img-wrap {
    width: 100%;
    height: 240px;
    border-radius: 120px;
    /* Stadium/Pill shape */
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    position: relative;

    /* Entry Animation */
    opacity: 0;
    animation: customHvacFadeInUp 0.8s ease-out 0.4s forwards;
}

.custom-hvac-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.custom-hvac-img-wrap:hover img {
    transform: scale(1.08);
    /* Zoom interaction */
}

/* Subtext */
.custom-hvac-subtext {
    font-size: 0.95rem;
    color: #0F172A;
    line-height: 1.6;
    font-weight: 700;
    margin: 0;

    /* Entry Animation */
    opacity: 0;
    animation: customHvacFadeInUp 0.8s ease-out 0.5s forwards;
}

/* ==========================================================================
           RIGHT COLUMN (List)
           ========================================================================== */
.custom-hvac-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}

.custom-hvac-right-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 32px 0;
    text-align: center;

    /* Entry Animation */
    opacity: 0;
    animation: customHvacFadeInUp 0.8s ease-out 0.3s forwards;
}

.custom-hvac-right-title .custom-hvac-green {
    color: #5DA85C;
}

.custom-hvac-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 40px;
    row-gap: 24px;
}

.custom-hvac-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #334155;
    cursor: default;
    transition: transform 0.3s ease, color 0.3s ease;

    /* Entry Animation Base */
    opacity: 0;
    animation: customHvacFadeInLeft 0.6s ease-out forwards;
}

/* Interaction Hover Effect */
.custom-hvac-item:hover {
    transform: translateX(6px);
    color: #0F172A;
}

.custom-hvac-plus {
    color: #5DA85C;
    font-size: 1.2rem;
    line-height: 1;
    font-weight: 700;
    transition: transform 0.4s ease;
}

/* Plus icon spins on hover */
.custom-hvac-item:hover .custom-hvac-plus {
    transform: rotate(90deg);
}

/* Staggering the list items purely with CSS */
.custom-hvac-grid> :nth-child(1) {
    animation-delay: 0.40s;
}

.custom-hvac-grid> :nth-child(2) {
    animation-delay: 0.45s;
}

.custom-hvac-grid> :nth-child(3) {
    animation-delay: 0.50s;
}

.custom-hvac-grid> :nth-child(4) {
    animation-delay: 0.55s;
}

.custom-hvac-grid> :nth-child(5) {
    animation-delay: 0.60s;
}

.custom-hvac-grid> :nth-child(6) {
    animation-delay: 0.65s;
}

.custom-hvac-grid> :nth-child(7) {
    animation-delay: 0.70s;
}

.custom-hvac-grid> :nth-child(8) {
    animation-delay: 0.75s;
}

.custom-hvac-grid> :nth-child(9) {
    animation-delay: 0.80s;
}

.custom-hvac-grid> :nth-child(10) {
    animation-delay: 0.85s;
}

.custom-hvac-grid> :nth-child(11) {
    animation-delay: 0.90s;
}

.custom-hvac-grid> :nth-child(12) {
    animation-delay: 0.95s;
}

.custom-hvac-grid> :nth-child(13) {
    animation-delay: 1.00s;
}

.custom-hvac-grid> :nth-child(14) {
    animation-delay: 1.05s;
}

.custom-hvac-grid> :nth-child(15) {
    animation-delay: 1.10s;
}

.custom-hvac-grid> :nth-child(16) {
    animation-delay: 1.15s;
}

.custom-hvac-grid> :nth-child(n+17) {
    animation-delay: 1.20s;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .custom-hvac-container {
        flex-direction: column;
        gap: 60px;
    }

    .custom-hvac-left {
        flex: auto;
        text-align: center;
        align-items: center;
    }

    .custom-hvac-right-title {
        text-align: left;
    }

    .custom-hvac-img-wrap {
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .custom-hvac-grid {
        grid-template-columns: 1fr;
        row-gap: 16px;
    }

    .custom-hvac-img-wrap {
        height: 180px;
        border-radius: 80px;
    }
}


/* use cases */
.tc-usecase-grid-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Prevents scrollbars during entry animations */
}

.tc-usecase-grid-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CSS ENTRY ANIMATIONS
           ========================================================================== */
@keyframes tcUsecaseFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
           CONTAINER & HEADER
           ========================================================================== */
.tc-usecase-grid-container {
    max-width: 1200px;
    width: 100%;
}

.tc-usecase-grid-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.tc-usecase-grid-header-left {
    flex: 1;
    /* Animation */
    opacity: 0;
    animation: tcUsecaseFadeInUp 0.8s ease-out 0.1s forwards;
}

.tc-usecase-grid-header-right {
    flex: 0 0 45%;
    padding-top: 35px;
    /* Aligns visually with the heading */
    /* Animation */
    opacity: 0;
    animation: tcUsecaseFadeInUp 0.8s ease-out 0.3s forwards;
}

.tc-usecase-grid-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #2C6280;
    /* Blue */
    margin-bottom: 20px;
}

.tc-usecase-grid-line {
    width: 24px;
    height: 2px;
    background-color: #2C6280;
}

.tc-usecase-grid-heading {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.15;
    margin: 0;
    letter-spacing: -0.01em;

    /* Continuous Gradient Text Effect */
    background: linear-gradient(135deg, #5DA85C 0%, #2C6280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */
}

.tc-usecase-grid-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
}

/* ==========================================================================
           GRID & CARDS
           ========================================================================== */
.tc-usecase-grid-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tc-usecase-grid-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 280px;
    text-decoration: none;
    display: block;
    background-color: #F1F5F9;
    /* Animation Base */
    opacity: 0;
    animation: tcUsecaseFadeInUp 0.8s ease-out forwards;
}

/* Staggered Grid Animations */
.tc-usecase-grid-card:nth-child(1) {
    animation-delay: 0.4s;
}

.tc-usecase-grid-card:nth-child(2) {
    animation-delay: 0.5s;
}

.tc-usecase-grid-card:nth-child(3) {
    animation-delay: 0.6s;
}

.tc-usecase-grid-card:nth-child(4) {
    animation-delay: 0.7s;
}

.tc-usecase-grid-card:nth-child(5) {
    animation-delay: 0.8s;
}

.tc-usecase-grid-card:nth-child(6) {
    animation-delay: 0.9s;
}

.tc-usecase-grid-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Deep dark overlay from the bottom up */
.tc-usecase-grid-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 40%, rgba(15, 23, 42, 0) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.tc-usecase-grid-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 24px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tc-usecase-grid-card-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tc-usecase-grid-card-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.25;
}

/* Hover Interactions */
.tc-usecase-grid-card:hover img {
    transform: scale(1.06);
}

.tc-usecase-grid-card:hover .tc-usecase-grid-card-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.5) 40%, rgba(15, 23, 42, 0.1) 100%);
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tc-usecase-grid-header {
        flex-direction: column;
        gap: 30px;
    }

    .tc-usecase-grid-header-right {
        padding-top: 0;
        flex: 1;
    }

    .tc-usecase-grid-layout {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .tc-usecase-grid-wrapper {
        padding: 60px 16px;
    }

    .tc-usecase-grid-layout {
        grid-template-columns: 1fr;
    }

    .tc-usecase-grid-card {
        height: 260px;
    }
}


/* insights */
.wbx-article-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FFFFFF;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    overflow: hidden;
    /* Prevents scrollbars during entry animations */
}

.wbx-article-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CSS ENTRY ANIMATIONS (NO JS)
           ========================================================================== */
@keyframes wbxArticleFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
           CONTAINER & HEADER
           ========================================================================== */
.wbx-article-container {
    max-width: 1200px;
    width: 100%;
}

.wbx-article-header {
    text-align: center;
    margin-bottom: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wbx-article-title {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;

    /* Continuous Gradient Text Effect */
    background: linear-gradient(135deg, #5DA85C 0%, #2C6280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */

    /* Animation */
    opacity: 0;
    animation: wbxArticleFadeInUp 0.8s ease-out 0.1s forwards;
}

.wbx-article-desc {
    font-size: 1.05rem;
    color: #64748B;
    line-height: 1.7;
    margin: 0;
    font-weight: 500;
    max-width: 760px;

    /* Animation */
    opacity: 0;
    animation: wbxArticleFadeInUp 0.8s ease-out 0.2s forwards;
}

/* ==========================================================================
           GRID & CARDS
           ========================================================================== */
.wbx-article-layout {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns */
    gap: 32px;
}

.wbx-article-card {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    height: 420px;
    text-decoration: none;
    display: block;
    background-color: #1E293B;

    /* Animation Base */
    opacity: 0;
    animation: wbxArticleFadeInUp 0.8s ease-out forwards;
}

/* Staggered Grid Animations */
.wbx-article-card:nth-child(1) {
    animation-delay: 0.3s;
}

.wbx-article-card:nth-child(2) {
    animation-delay: 0.4s;
}

.wbx-article-card:nth-child(3) {
    animation-delay: 0.5s;
}

.wbx-article-card:nth-child(4) {
    animation-delay: 0.6s;
}

.wbx-article-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 1;
}

/* Deep dark overlay from the bottom up to make text readable */
.wbx-article-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(10, 15, 25, 0.95) 0%, rgba(10, 15, 25, 0.6) 50%, rgba(10, 15, 25, 0.1) 100%);
    z-index: 2;
    transition: opacity 0.4s ease;
}

.wbx-article-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wbx-article-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.3;
    max-width: 90%;
}

.wbx-article-card-desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0 0 8px 0;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-width: 90%;
}

.wbx-article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 0.95rem;
    transition: gap 0.3s ease, color 0.3s ease;
}

.wbx-article-link svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

/* Hover Interactions */
.wbx-article-card:hover img {
    transform: scale(1.05);
}

.wbx-article-card:hover .wbx-article-overlay {
    background: linear-gradient(to top, rgba(10, 15, 25, 0.98) 0%, rgba(10, 15, 25, 0.7) 50%, rgba(10, 15, 25, 0.2) 100%);
}

.wbx-article-card:hover .wbx-article-link {
    gap: 12px;
    color: #89B585;
    /* Sage Green hover color */
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .wbx-article-layout {
        gap: 24px;
    }

    .wbx-article-card {
        height: 380px;
    }

    .wbx-article-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .wbx-article-wrapper {
        padding: 80px 16px;
    }

    .wbx-article-layout {
        grid-template-columns: 1fr;
    }

    .wbx-article-card {
        height: 340px;
    }

    .wbx-article-card-title {
        max-width: 100%;
    }

    .wbx-article-card-desc {
        max-width: 100%;
    }
}


/* contact */
.zen-contact-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding: 100px 20px;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;

    /* Background image with gradient fade on the left to ensure text readability */
    background:
        linear-gradient(90deg, rgba(244, 248, 251, 1) 0%, rgba(244, 248, 251, 0.9) 45%, rgba(244, 248, 251, 0.2) 100%),
        url('../img/contact.webp') center/cover no-repeat;
}

.zen-contact-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CSS ENTRY ANIMATIONS (NO JS)
           ========================================================================== */
@keyframes zenContactFadeInUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes zenContactFadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-40px);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================================================
           CONTAINER & LAYOUT
           ========================================================================== */
.zen-contact-container {
    max-width: 1240px;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
           LEFT COLUMN (Text Content)
           ========================================================================== */
.zen-contact-left {
    flex: 1;
    padding-right: 20px;
}

.zen-contact-eyebrow {
    font-size: 1rem;
    font-weight: 700;
    color: #5DA85C;
    /* TrueClime Green */
    margin: 0 0 16px 0;
    opacity: 0;
    animation: zenContactFadeInLeft 0.8s ease-out 0.1s forwards;
}

.zen-contact-heading {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;

    /* Continuous Gradient Text Effect */
    background: linear-gradient(135deg, #5DA85C 0%, #2C6280 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    /* Fallback */

    opacity: 0;
    animation: zenContactFadeInLeft 0.8s ease-out 0.2s forwards;
}

.zen-contact-desc {
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.7;
    margin: 0 0 40px 0;
    font-weight: 500;
    max-width: 540px;

    opacity: 0;
    animation: zenContactFadeInLeft 0.8s ease-out 0.3s forwards;
}

/* Contact Details Row */
.zen-contact-info-block {
    opacity: 0;
    animation: zenContactFadeInLeft 0.8s ease-out 0.4s forwards;
}

.zen-contact-info-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 16px 0;
}

.zen-contact-details {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.zen-contact-detail-item {
    font-size: 1rem;
    color: #1E293B;
    font-weight: 500;
}

/* ==========================================================================
           RIGHT COLUMN (Glassmorphism Form)
           ========================================================================== */
.zen-contact-right {
    flex: 0 0 500px;

    opacity: 0;
    animation: zenContactFadeInUp 0.8s ease-out 0.5s forwards;
}

.zen-contact-glass-card {
    background: rgba(220, 230, 238, 0.4);
    /* Light translucent blue/gray */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.zen-contact-glass-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.12);
}

.zen-form-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 24px 0;
}

.zen-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Input Styles */
.zen-form-group {
    display: flex;
    flex-direction: column;
}

.zen-form-group.zen-full-width {
    grid-column: 1 / -1;
}

.zen-form-input,
.zen-form-textarea {
    width: 100%;
    background-color: #FFFFFF;
    border: 2px solid transparent;
    color: #334155;
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

/* Pill shape for single-line inputs */
.zen-form-input {
    height: 48px;
    border-radius: 50px;
    padding: 0 20px;
}

/* Rounded rectangle for textarea */
.zen-form-textarea {
    border-radius: 20px;
    padding: 16px 20px;
    resize: vertical;
    min-height: 120px;
}

.zen-form-input::placeholder,
.zen-form-textarea::placeholder {
    color: #94A3B8;
}

/* Input Interactions */
.zen-form-input:focus,
.zen-form-textarea:focus {
    outline: none;
    border-color: #5DA85C;
    box-shadow: 0 0 0 4px rgba(93, 168, 92, 0.15);
}

/* Submit Button */
.zen-form-submit {
    grid-column: 1 / -1;
    background: linear-gradient(90deg, #5DA85C 0%, #2C6280 100%);
    color: #FFFFFF;
    border: none;
    height: 52px;
    border-radius: 50px;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

.zen-form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(44, 98, 128, 0.25);
    filter: brightness(1.05);
}

.zen-form-submit:active {
    transform: translateY(0);
}

.form-p {
    grid-column: 1 / -1;
    font-size: 12px;
    margin: 0;
    font-weight: 500;
    font-style: italic;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 1024px) {
    .zen-contact-container {
        flex-direction: column;
        gap: 50px;
    }

    .zen-contact-left {
        padding-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .zen-contact-desc {
        max-width: 700px;
    }

    .zen-contact-details {
        justify-content: center;
    }

    .zen-contact-right {
        width: 100%;
        max-width: 600px;
        flex: auto;
    }

    /* Adjust background for stacked layout */
    .zen-contact-wrapper {
        background:
            linear-gradient(180deg, rgba(244, 248, 251, 1) 0%, rgba(244, 248, 251, 0.95) 40%, rgba(244, 248, 251, 0.4) 100%),
            url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    }
}

@media (max-width: 576px) {
    .zen-contact-wrapper {
        padding: 60px 16px;
    }

    .zen-contact-glass-card {
        padding: 30px 20px;
    }

    .zen-form-grid {
        grid-template-columns: 1fr;
    }

    .zen-contact-details {
        flex-direction: column;
        gap: 16px;
    }
}



/* artical page */
.tsc-article-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FAFCFC;
    /* Very light slate/cyan tint */
    padding: 80px 20px;
    box-sizing: border-box;
    color: #334155;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}

.tsc-article-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           LAYOUT CONTAINERS
           ========================================================================== */
.tsc-article-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #F1F5F9;
    overflow: hidden;
}

/* ==========================================================================
           ARTICLE HEADER
           ========================================================================== */
.tsc-article-header {
    padding: 60px 60px 40px 60px;
    border-bottom: 1px solid #F1F5F9;
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
}

/* Decorative top green line */
.tsc-article-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #529B65 0%, #285973 100%);
}

.tsc-category-pill {
    display: inline-flex;
    background-color: #DEF4E5;
    color: #4E9C60;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.tsc-article-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.2;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.tsc-article-excerpt {
    font-size: 1.2rem;
    color: #475569;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
    border-left: 4px solid #529B65;
    padding-left: 20px;
}

/* ==========================================================================
           ARTICLE BODY (PROSE & IMAGES)
           ========================================================================== */
.tsc-article-body {
    padding: 50px 60px;
}

.tsc-article-body p {
    font-size: 1.1rem;
    color: #334155;
    margin: 0 0 24px 0;
}

.tsc-article-body h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #285973;
    margin: 48px 0 20px 0;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.tsc-article-body h2:first-child {
    margin-top: 0;
}

/* Inline Article Images */
.tsc-article-figure {
    margin: 48px 0;
    width: 100%;
}

.tsc-article-figure img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #E2E8F0;
    display: block;
}

.tsc-article-figcaption {
    font-size: 0.95rem;
    color: #64748B;
    text-align: center;
    margin-top: 16px;
    font-style: italic;
    line-height: 1.5;
}

/* Emphasized Text / Callout Statements */
.tsc-statement-box {
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 30px;
    margin: 40px 0;
    text-align: center;
}

.tsc-statement-box p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    color: #0F172A;
}

.tsc-statement-box .tsc-highlight {
    color: #529B65;
}

.tsc-statement-box .tsc-vs {
    display: block;
    font-size: 0.9rem;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 16px 0;
    font-weight: 700;
}

/* Lists */
.tsc-article-body ul {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.tsc-article-body li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    font-size: 1.1rem;
    color: #475569;
}

.tsc-article-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23529B65' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ==========================================================================
           ARTICLE FOOTER / ABOUT TRUECLIME
           ========================================================================== */
.tsc-article-footer {
    background-color: #0A111A;
    color: #FFFFFF;
    padding: 50px 60px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    position: relative;
    overflow: hidden;
}

/* Subtle glow in footer */
.tsc-article-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(82, 155, 101, 0.15) 0%, transparent 70%);
    transform: translate(30%, -30%);
}

.tsc-footer-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #FFFFFF;
    margin: 0 0 16px 0;
    position: relative;
    z-index: 2;
}

.tsc-footer-text {
    font-size: 1.05rem;
    color: #CBD5E1;
    margin: 0 0 24px 0;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.tsc-footer-tagline {
    font-size: 1.2rem;
    font-weight: 700;
    color: #529B65;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 768px) {
    .tsc-article-header {
        padding: 40px 30px;
    }

    .tsc-article-body {
        padding: 40px 30px;
    }

    .tsc-article-footer {
        padding: 40px 30px;
    }

    .tsc-article-figure {
        margin: 32px 0;
    }
}

@media (max-width: 480px) {
    .tsc-article-wrapper {
        padding: 40px 16px;
    }

    .tsc-article-header {
        padding: 30px 20px;
    }

    .tsc-article-body {
        padding: 30px 20px;
    }

    .tsc-article-footer {
        padding: 30px 20px;
    }

    .tsc-statement-box {
        padding: 20px 16px;
    }
}


/* private policy */
.tsi-privacy-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #FAFCFC;
    padding: 80px 20px;
    box-sizing: border-box;
    color: #334155;
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
}

.tsi-privacy-wrapper * {
    box-sizing: border-box;
}

/* ==========================================================================
           CONTAINER & LAYOUT SHAPE
           ========================================================================== */
.tsi-privacy-container {
    max-width: 1140px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #E2E8F0;
    display: flex;
    position: relative;
}

/* ==========================================================================
           LEFT: STICKY NAVIGATION OUTLINE
           ========================================================================== */
.tsi-privacy-nav {
    flex: 0 0 300px;
    padding: 60px 40px;
    border-right: 1px solid #F1F5F9;
    background-color: #FAFCFC;
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
}

.tsi-privacy-nav-sticky {
    position: sticky;
    top: 40px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding-right: 15px;
    /* Added for scrollbar */
}

/* Custom scrollbar for long navigation list */
.tsi-privacy-nav-sticky::-webkit-scrollbar {
    width: 4px;
}

.tsi-privacy-nav-sticky::-webkit-scrollbar-thumb {
    background-color: #CBD5E1;
    border-radius: 4px;
}

.tsi-privacy-nav-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.tsi-privacy-nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tsi-privacy-nav a {
    color: #475569;
    text-decoration: none;
    font-size: 0.90rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tsi-privacy-nav a:hover {
    color: #529B65;
}

/* ==========================================================================
           RIGHT: CONTENT PROSE
           ========================================================================== */
.tsi-privacy-content {
    flex: 1;
    padding: 60px 80px;
}

.tsi-privacy-header {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #F1F5F9;
}

.tsi-privacy-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    font-weight: 800;
    color: #0F172A;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.tsi-privacy-meta {
    font-size: 0.95rem;
    color: #64748B;
    font-weight: 500;
    line-height: 1.5;
}

/* Headings & Text */
.tsi-privacy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #285973;
    margin: 40px 0 16px 0;
    letter-spacing: -0.01em;
    scroll-margin-top: 80px;
    /* Accounts for sticky nav when anchored */
}

.tsi-privacy-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #334155;
    margin: 32px 0 16px 0;
}

.tsi-privacy-content p {
    font-size: 1.05rem;
    color: #334155;
    margin: 0 0 20px 0;
}

/* Lists */
.tsi-privacy-content ul {
    padding-left: 24px;
    margin: 0 0 24px 0;
}

.tsi-privacy-content li {
    font-size: 1.05rem;
    color: #475569;
    margin-bottom: 10px;
}

/* ==========================================================================
           RESPONSIVE DESIGN
           ========================================================================== */
@media (max-width: 991px) {
    .tsi-privacy-container {
        flex-direction: column;
    }

    .tsi-privacy-nav {
        flex: none;
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #F1F5F9;
        padding: 30px 24px;
        border-bottom-left-radius: 0;
        border-top-right-radius: 24px;
    }

    .tsi-privacy-nav-sticky {
        position: static;
        max-height: none;
        overflow-y: visible;
    }

    .tsi-privacy-nav ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 16px;
    }

    .tsi-privacy-content {
        padding: 40px 30px;
    }
}

@media (max-width: 576px) {
    .tsi-privacy-wrapper {
        padding: 40px 12px;
    }

    .tsi-privacy-content {
        padding: 30px 20px;
    }

    .tsi-privacy-nav ul {
        flex-direction: column;
        gap: 8px;
    }
}

/* fan spin */
.fan-spin {
    display: inline-block;
    animation: fanSpin 1.5s linear infinite;
    transform-origin: center;
}

@keyframes fanSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.animation-non {
    opacity: 1;
    transform: translateY(0px) !important;
    transition: opacity 0.5s, transform 0.9s;
}

@media (max-width: 991px) {
    .animation-non {
        opacity: 1;
        transform: translateY(0px) !important;
        transition: opacity 0.5s, transform 0.9s;
    }
}