﻿/*body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}*/

/* Main Content Container */
/*.main-content {
    flex: 1 0 auto;*/ /* Takes available space, pushes footer down */
    /*padding: 0;
    width: 100%;
    height: calc(100vh - 100px - 30px);
}*/

/* Full-Screen Image Styling */
/*.full-screen-image {
    width: 100%;
    height: calc(100vh - 100px - 30px);*/ /* Adjust based on header (60px) and footer (30px) heights */
    /*position: relative;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;*/ /* Center the image horizontally */
/*}

.full-image {
    width: 100%;
    height: 100%;
    object-fit: cover;*/ /* Ensures image covers the area without distortion */
    /*object-position: center;*/ /* Centers the image */
    /*display: block;
}*/

/* Single Image Container */
/*.single-image {
    width: 90%;*/ /* 90% width leaves 5% space on left and 5% on right */
    /*height: calc(100vh - 100px - 30px);
    overflow: hidden;*/ /* Prevents image overflow */
    /*max-width: 1200px;*/ /* Cap the maximum width */
    /*max-height: 800px;*/ /* Cap the maximum height */
/*}

    .single-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* Maintains aspect ratio and covers the container */
        /*object-position: center;
    }

@media (min-width: 769px) and (max-width: 992px) {*/ /* Tablets/Laptops */
    /*.full-screen-image {
        width: 100%;
        height: calc(100vh - 100px - 30px);*/ /* Adjust based on header (60px) and footer (30px) heights */
        /*position: relative;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .single-image {
        width: 90%;*/ /* 90% width leaves 5% space on left and 5% on right */
        /*height: calc(100vh - 100px - 30px);
        overflow: hidden;*/ /* Prevents image overflow */
        /*max-width: 1200px;*/ /* Cap the maximum width */
        /*max-height: 800px;*/ /* Cap the maximum height */
    /*}
    .single-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* Maintains aspect ratio and covers the container */
        /*object-position: center;
    }
}

@media (min-width: 993px) and (max-width: 1200px) {*/ /* Medium laptops */
    /*.full-screen-image {
        width: 100%;
        height: calc(100vh - 100px - 30px);*/ /* Adjust based on header (60px) and footer (30px) heights */
        /*position: relative;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .single-image {
        width: 90%;*/ /* 90% width leaves 5% space on left and 5% on right */
        /*height: calc(100vh - 100px - 30px);
        overflow: hidden;*/ /* Prevents image overflow */
        /*max-width: 1200px;*/ /* Cap the maximum width */
        /*max-height: 800px;*/ /* Cap the maximum height */
    /*}
    .single-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* Maintains aspect ratio and covers the container */
        /*object-position: center;
    }
}

@media (min-width: 1201px) {*/ /* Large laptops/desktops */
    /*.full-screen-image {
        width: 100%;
        height: calc(100vh - 100px - 30px);*/ /* Adjust based on header (60px) and footer (30px) heights */
        /*position: relative;
        margin: 0;
        padding: 0;
        display: flex;
        justify-content: center;
    }
    .single-image {
        width: 90%;*/ /* 90% width leaves 5% space on left and 5% on right */
        /*height: calc(100vh - 100px - 30px);
        overflow: hidden;*/ /* Prevents image overflow */
        /*max-width: 1200px;*/ /* Cap the maximum width */
        /*max-height: 800px;*/ /* Cap the maximum height */
    /*}
    .single-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;*/ /* Maintains aspect ratio and covers the container */
        /*object-position: center;
    }
}*/

/* Ensure footer and header don't interfere */
/*.footer {
    flex-shrink: 0;
    height: 30px;
    min-height: 30px;
}*/

/*.navbar {
    flex-shrink: 0;
    height: 90px;*/ /* Fixed height for consistency */
/*}*/



/*.responsive-image-wrapper {
    width: 90%;*/ /* 5% left + 5% right space */
    /*max-width: 1200px;*/ /* prevents image from becoming too large */
    /*overflow: hidden;
}

.responsive-image {
    width: 100%;
    height: auto;*/ /* keeps aspect ratio */
    /*object-fit: cover;*/ /* fills width nicely */
/*}*/

/* Scrollable content between header & footer */
.page-content {
    flex: 1 1 auto;
    margin-top: 74px; /* adjust based on header height */
    margin-bottom: 40px; /* adjust based on footer height */
/*    overflow-y: hidden;
    overflow-x: hidden;*/
    height: calc(100vh - 112px); /* total space between header & footer */
}

/*.home-carousel-inner {
    max-width: 1200px;
    width: 100%;
    margin: auto;
    border-radius: 12px;
    overflow: hidden;*/ /* IMPORTANT */
/*}

.home-carousel-img {
    height: 520px;*/ /* same height for all */
    /*width: 100%;
    object-fit: cover;*/ /* IMPORTANT: crops to look same banner */
    /*object-position: center;*/ /* keep center focus */
/*}*/


/* ═══════════════════════════════════════════════════
   TechRise GST — Overview Page Styles
═══════════════════════════════════════════════════ */
    :root {
        --tr-navy: #0B1C3D;
        --tr-deep: #071226;
        --tr-teal: #00C9A7;
        --tr-teal2: #00A88C;
        --tr-gold: #F5A623;
        --tr-muted: #8A9BB5;
        --tr-card: #0F2244;
        --tr-border: rgba(0,201,167,.15);
        --tr-white: #F8FAFF;
    }
    /* ── Page wrapper ── */
    .tr-page {
        background: var(--tr-deep);
        color: var(--tr-white);
        font-family: 'Segoe UI', system-ui, sans-serif;
        min-height: 100vh;
    }
    /* ── Hero Banner ── */
    .tr-hero {
        position: relative;
        background: linear-gradient(135deg, #071226 0%, #0B1C3D 55%, #071226 100%);
        padding: 2rem 2rem 2rem;
        overflow: hidden;
        text-align: center;
    }

    .tr-hero-grid {
        position: absolute;
        inset: 0;
        background-image: linear-gradient(rgba(0,201,167,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,201,167,.04) 1px, transparent 1px);
        background-size: 55px 55px;
        pointer-events: none;
    }

    .tr-hero-glow {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(0,201,167,.10), transparent 70%);
        top: -150px;
        left: 50%;
        transform: translateX(-50%);
        pointer-events: none;
    }

    .tr-badge {
        display: inline-flex;
        align-items: center;
        gap: .45rem;
        background: rgba(0,201,167,.1);
        border: 1px solid rgba(0,201,167,.3);
        color: var(--tr-teal);
        font-size: .75rem;
        font-weight: 600;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        padding: .38rem 1rem;
        border-radius: 100px;
        margin-bottom: 1.4rem;
    }

    .tr-badge-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--tr-teal);
        animation: trPulse 2s infinite;
    }

    @@keyframes trPulse {
        0%, 100% {
            opacity: 1;
            transform: scale(1);
        }

        50% {
            opacity: .35;
            transform: scale(.65);
        }
    }

    .tr-hero h1 {
        font-size: clamp(2rem, 4.5vw, 3.2rem);
        font-weight: 800;
        line-height: 1.15;
        letter-spacing: -.5px;
        margin-bottom: 1rem;
    }

        .tr-hero h3 span {
            color: var(--tr-teal);
        }

    .tr-hero-sub {
        font-size: 1.05rem;
        font-weight: 300;
        color: rgba(248,250,255,.7);
        max-width: 640px;
        margin: 0 auto 2.2rem;
        line-height: 1.8;
    }

    .tr-hero-actions {
        display: flex;
        justify-content: center;
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 3.5rem;
    }

    .tr-btn-primary {
        background: linear-gradient(135deg, var(--tr-teal), var(--tr-teal2));
        color: var(--tr-deep);
        font-weight: 700;
        font-size: .88rem;
        padding: .75rem 1.8rem;
        border-radius: 8px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 0 28px rgba(0,201,167,.3);
        transition: transform .2s, box-shadow .2s;
    }

        .tr-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 36px rgba(0,201,167,.4);
            color: var(--tr-deep);
        }

    .tr-btn-outline {
        background: transparent;
        color: var(--tr-white);
        border: 1px solid rgba(248,250,255,.22);
        font-weight: 600;
        font-size: .88rem;
        padding: .75rem 1.8rem;
        border-radius: 8px;
        text-decoration: none;
        transition: border-color .2s, background .2s;
    }

        .tr-btn-outline:hover {
            border-color: var(--tr-teal);
            background: rgba(0,201,167,.07);
            color: var(--tr-white);
        }
    /* ── Stats bar ── */
    .tr-stats {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3rem;
    }

    .tr-stat-num {
        font-size: 2rem;
        font-weight: 800;
        background: linear-gradient(90deg, var(--tr-teal), var(--tr-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        line-height: 1;
    }

    .tr-stat-lbl {
        font-size: .75rem;
        color: var(--tr-muted);
        margin-top: .25rem;
        letter-spacing: .4px;
    }
    /* ── Section base ── */
    .tr-section {
        padding: 5rem 2rem;
    }

    .tr-section-dark {
        background: var(--tr-navy);
    }

    .tr-tag {
        display: inline-block;
        font-size: .7rem;
        font-weight: 700;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--tr-teal);
        margin-bottom: .7rem;
    }

    .tr-section h2 {
        font-size: clamp(1.7rem, 3vw, 2.4rem);
        font-weight: 800;
        line-height: 1.2;
        letter-spacing: -.4px;
        margin-bottom: .8rem;
    }

    .tr-section-desc {
        font-size: .97rem;
        color: rgba(248,250,255,.65);
        line-height: 1.8;
        max-width: 600px;
    }
    /* ── Challenge cards ── */
    .tr-grid-4 {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
        gap: 1.3rem;
        margin-top: 2.8rem;
    }

    .tr-card {
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 14px;
        padding: 1.8rem;
        position: relative;
        overflow: hidden;
        transition: transform .25s, border-color .25s;
    }

        .tr-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,201,167,.4);
        }

        .tr-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 100%;
            background: linear-gradient(180deg, var(--tr-teal), transparent);
        }

    .tr-card-icon {
        font-size: 1.9rem;
        margin-bottom: .9rem;
    }

    .tr-card h3 {
        font-size: .95rem;
        font-weight: 700;
        margin-bottom: .55rem;
        color: var(--tr-white);
    }

    .tr-card p {
        font-size: .85rem;
        color: var(--tr-muted);
        line-height: 1.7;
    }
    /* ── Solution split ── */
    .tr-split {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .tr-solution-items {
        margin-top: 1.8rem;
        display: flex;
        flex-direction: column;
        gap: .9rem;
    }

    .tr-sol-item {
        display: flex;
        align-items: flex-start;
        gap: .9rem;
        padding: .9rem 1rem;
        border-radius: 10px;
        background: rgba(255,255,255,.03);
        border: 1px solid rgba(255,255,255,.05);
        transition: background .2s;
    }

        .tr-sol-item:hover {
            background: rgba(0,201,167,.06);
        }

    .tr-check {
        width: 22px;
        height: 22px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--tr-teal), var(--tr-teal2));
        color: var(--tr-deep);
        font-size: .6rem;
        font-weight: 900;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

    .tr-sol-text {
        font-size: .87rem;
        color: rgba(248,250,255,.85);
        line-height: 1.5;
    }

        .tr-sol-text strong {
            color: var(--tr-white);
            font-weight: 600;
            display: block;
            margin-bottom: .1rem;
        }
    /* Dashboard mockup */
    .tr-mockup {
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 16px;
        padding: 1.5rem;
        position: relative;
        overflow: hidden;
    }

        .tr-mockup::after {
            content: '';
            position: absolute;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(0,201,167,.15), transparent 70%);
            top: -50px;
            right: -50px;
            pointer-events: none;
        }

    .tr-dots {
        display: flex;
        gap: .4rem;
        margin-bottom: 1.1rem;
    }

    .tr-dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

    .tr-metric-row {
        display: flex;
        gap: .9rem;
        margin-bottom: .9rem;
    }

    .tr-metric {
        flex: 1;
        background: rgba(0,201,167,.08);
        border: 1px solid rgba(0,201,167,.2);
        border-radius: 10px;
        padding: .9rem;
    }

    .tr-metric-val {
        font-size: 1.35rem;
        font-weight: 800;
        color: var(--tr-teal);
        font-family: monospace;
    }

    .tr-metric-lbl {
        font-size: .68rem;
        color: var(--tr-muted);
        margin-top: .2rem;
    }

    .tr-bar-row {
        display: flex;
        align-items: center;
        gap: .6rem;
        margin-bottom: .45rem;
    }

    .tr-bar-lbl {
        font-size: .66rem;
        color: var(--tr-muted);
        width: 55px;
        flex-shrink: 0;
    }

    .tr-bar-track {
        flex: 1;
        height: 6px;
        background: rgba(255,255,255,.07);
        border-radius: 3px;
        overflow: hidden;
    }

    .tr-bar-fill {
        height: 100%;
        border-radius: 3px;
        background: linear-gradient(90deg,var(--tr-teal),var(--tr-gold));
    }

    .tr-bar-pct {
        font-size: .66rem;
        color: var(--tr-teal);
        font-weight: 600;
        width: 30px;
        text-align: right;
    }

    .tr-alert {
        margin-top: 1rem;
        padding: .85rem;
        border-radius: 8px;
        background: rgba(0,201,167,.07);
        border: 1px solid rgba(0,201,167,.2);
        font-size: .76rem;
        color: rgba(248,250,255,.75);
    }

    .tr-alert-title {
        font-size: .68rem;
        color: var(--tr-teal);
        font-weight: 700;
        margin-bottom: .25rem;
    }
    /* ── Capability cards ── */
    .tr-grid-4c {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(190px,1fr));
        gap: 1.1rem;
        margin-top: 2.8rem;
    }

    .tr-cap-card {
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 14px;
        padding: 1.6rem 1.3rem;
        text-align: center;
        transition: transform .2s, border-color .2s, box-shadow .2s;
    }

        .tr-cap-card:hover {
            transform: translateY(-4px);
            border-color: rgba(0,201,167,.5);
            box-shadow: 0 10px 36px rgba(0,201,167,.1);
        }

    .tr-cap-icon {
        font-size: 1.9rem;
        margin-bottom: .7rem;
    }

    .tr-cap-card h3 {
        font-size: .87rem;
        font-weight: 700;
        color: var(--tr-white);
        line-height: 1.4;
    }
    /* ── Value cards ── */
    .tr-value-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
        gap: 1.3rem;
        margin-top: 2.5rem;
    }

    .tr-value-card {
        background: linear-gradient(135deg,rgba(0,201,167,.1),rgba(0,201,167,.03));
        border: 1px solid rgba(0,201,167,.25);
        border-radius: 16px;
        padding: 2.2rem;
    }

    .tr-value-num {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1;
        background: linear-gradient(90deg,var(--tr-teal),var(--tr-gold));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: .5rem;
    }

    .tr-value-card h3 {
        font-size: .95rem;
        font-weight: 700;
        color: var(--tr-white);
        margin-bottom: .45rem;
    }

    .tr-value-card p {
        font-size: .83rem;
        color: var(--tr-muted);
        line-height: 1.65;
    }
    /* ── Advantage grid ── */
    .tr-adv-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
        margin-top: 2.5rem;
    }

    .tr-adv-item {
        display: flex;
        gap: 1rem;
        align-items: flex-start;
        padding: 1.4rem;
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 12px;
        transition: border-color .2s;
    }

        .tr-adv-item:hover {
            border-color: rgba(0,201,167,.35);
        }

    .tr-adv-icon {
        width: 42px;
        height: 42px;
        border-radius: 10px;
        flex-shrink: 0;
        background: rgba(0,201,167,.1);
        border: 1px solid rgba(0,201,167,.2);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.2rem;
    }

    .tr-adv-item h3 {
        font-size: .9rem;
        font-weight: 700;
        color: var(--tr-white);
        margin-bottom: .3rem;
    }

    .tr-adv-item p {
        font-size: .81rem;
        color: var(--tr-muted);
        line-height: 1.65;
    }
    /* ── Team section ── */
    .tr-team-card {
        display: flex;
        gap: 1.8rem;
        align-items: flex-start;
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 16px;
        padding: 2rem;
        margin-bottom: 1.3rem;
        transition: transform .2s, border-color .2s;
    }

        .tr-team-card:hover {
            transform: translateY(-3px);
            border-color: rgba(0,201,167,.4);
        }

    .tr-team-photo {
        width: 96px;
        height: 96px;
        border-radius: 12px;
        object-fit: cover;
        flex-shrink: 0;
        border: 2px solid rgba(0,201,167,.3);
    }

    .tr-team-name {
        font-size: 1.05rem;
        font-weight: 700;
        color: var(--tr-white);
        margin-bottom: .5rem;
    }

    .tr-team-bio {
        font-size: .84rem;
        color: var(--tr-muted);
        line-height: 1.7;
    }

    .tr-exp-bar {
        display: inline-flex;
        align-items: center;
        gap: 1rem;
        margin-top: 1.5rem;
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 12px;
        padding: 1.1rem 1.8rem;
    }

    .tr-exp-num {
        font-size: 2.2rem;
        font-weight: 800;
        background: linear-gradient(90deg,var(--tr-gold),var(--tr-teal));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .tr-exp-lbl {
        font-size: .8rem;
        color: var(--tr-muted);
        line-height: 1.4;
    }

    .tr-tags {
        display: flex;
        flex-wrap: wrap;
        gap: .6rem;
        margin-top: 1.5rem;
    }

    .tr-tag-pill {
        padding: .38rem .9rem;
        border-radius: 100px;
        font-size: .78rem;
        background: rgba(0,201,167,.08);
        border: 1px solid rgba(0,201,167,.2);
        color: var(--tr-teal);
    }
    /* ── CTA section ── */
    .tr-cta {
        position: relative;
        overflow: hidden;
        background: linear-gradient(135deg,#0B1C3D 0%,#061020 100%);
        padding: 6rem 2rem;
        text-align: center;
    }

        .tr-cta::before {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse 70% 60% at 50% 50%,rgba(0,201,167,.12),transparent 70%);
        }

        .tr-cta > * {
            position: relative;
            z-index: 1;
        }

        .tr-cta h2 {
            font-size: clamp(1.8rem,3.5vw,2.7rem);
            max-width: 650px;
            margin: 0 auto 1rem;
        }

    .tr-cta-sub {
        font-size: .97rem;
        color: rgba(248,250,255,.65);
        max-width: 480px;
        margin: 0 auto 2rem;
    }

    .tr-contact-cards {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        margin-top: 2.5rem;
        flex-direction: column;
        align-items: center;
    }

    .tr-contact-row {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }

    .tr-contact-card {
        background: var(--tr-card);
        border: 1px solid var(--tr-border);
        border-radius: 12px;
        padding: 1.1rem 1.6rem;
        display: flex;
        align-items: center;
        gap: .8rem;
        text-decoration: none;
        transition: border-color .2s, transform .2s;
    }

        .tr-contact-card:hover {
            border-color: rgba(0,201,167,.5);
            transform: translateY(-3px);
        }

    .tr-contact-icon {
        font-size: 1.25rem;
    }

    .tr-contact-lbl {
        font-size: .68rem;
        color: var(--tr-muted);
        letter-spacing: .4px;
        display: block;
        margin-bottom: .1rem;
    }

    .tr-contact-val {
        font-size: .85rem;
        color: var(--tr-white);
        font-weight: 500;
    }

.tr-contact-card > div {
    display: flex;
    flex-direction: column;
    gap: .3rem;
}

.tr-contact-link {
    text-decoration: none;
    color: var(--tr-white);
    font-size: .85rem;
    font-weight: 500;
    transition: color .2s;
}

    .tr-contact-link:hover {
        color: #00C9A7;
    }

    /* ── Scroll reveal ── */
    .tr-reveal {
        opacity: 0;
        transform: translateY(26px);
        transition: opacity .65s ease, transform .65s ease;
    }

        .tr-reveal.tr-visible {
            opacity: 1;
            transform: none;
        }
    /* ── Responsive ── */
    @@media (max-width:768px) {
        .tr-split {
            grid-template-columns: 1fr;
            gap: 2rem;
        }

        .tr-adv-grid {
            grid-template-columns: 1fr;
        }

        .tr-team-card {
            flex-direction: column;
        }
    }
