 
        :root {
            --tekniko-primary: #0d6efd;
            --tekniko-dark: #0f172a;
            --tekniko-text: #475569;
            --tekniko-border: #e2e8f0;
            --tekniko-bg-light: #f8fafc;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Plus Jakarta Sans", sans-serif;
            background-color: #ffffff;
            color: var(--tekniko-dark);
            overflow-x: hidden;
        }

        /* HERO SECTION */
        .tekniko-hero-section {
            position: relative;
            min-height: 52vh;
            display: flex;
            align-items: flex-end;
            padding: 120px 15px 70px;
            overflow: hidden;
            background-color: var(--tekniko-dark);
        }

        @media (max-width: 576px) {
            .tekniko-hero-section {
                min-height: 75vh;
                padding: 100px 15px 60px;
            }
        }

        .tekniko-hero-bg {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            transition: opacity 0.3s ease;
        }

        .tekniko-hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top,
                    rgba(15, 23, 42, 0.95),
                    rgba(15, 23, 42, 0.45));
        }

        .tekniko-hero-content {
            position: relative;
            z-index: 2;
            width: 100%;
        }

        .tekniko-back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #ffffff;
            background: rgba(255, 255, 255, 0.12);
            padding: 8px 18px;
            border-radius: 50px;
            font-size: 13px;
            font-weight: 600;
            text-decoration: none;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 20px;
            transition: all 0.25s ease;
        }

        .tekniko-back-btn:hover {
            background: rgba(255, 255, 255, 0.25);
            color: #ffffff;
            transform: translateX(-4px);
        }

        .tekniko-blog-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.15);
            color: #ffffff;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            margin-bottom: 16px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-transform: uppercase;
        }

        .tekniko-hero-title {
            color: #ffffff;
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.25;
            max-width: 900px;
            word-wrap: break-word;
        }

        .tekniko-hero-meta {
            margin-top: 18px;
            color: rgba(255, 255, 255, 0.85);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            font-size: 14px;
            font-weight: 500;
        }

        .tekniko-hero-meta i {
            margin-right: 6px;
            color: var(--tekniko-primary);
        }

        /* BLOG WRAPPER & MAIN CARD */
        .tekniko-blog-wrapper {
            margin-top: -50px;
            position: relative;
            z-index: 5;
            padding-bottom: 80px;
        }

        .tekniko-blog-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 45px;
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.05);
            border: 1px solid var(--tekniko-border);
        }

        .tekniko-blog-content {
            color: var(--tekniko-text);
            line-height: 1.85;
            font-size: 1.05rem;
            word-wrap: break-word;
        }

        .tekniko-blog-content p {
            margin-bottom: 24px;
        }

        .tekniko-blog-content h1,
        .tekniko-blog-content h2,
        .tekniko-blog-content h3,
        .tekniko-blog-content h4 {
            color: var(--tekniko-dark);
            margin-top: 35px;
            margin-bottom: 16px;
            font-weight: 800;
            line-height: 1.3;
        }

        .tekniko-blog-content img {
            width: 100%;
            height: auto;
            border-radius: 16px;
            margin: 25px 0;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
        }

        /* SIDEBAR STYLING */
        .tekniko-sidebar {
            position: sticky;
            top: 100px;
        }

        .tekniko-sidebar-widget {
            background: #ffffff;
            border-radius: 20px;
            padding: 30px;
            border: 1px solid var(--tekniko-border);
            box-shadow: 0 15px 35px rgba(15, 23, 42, 0.04);
            margin-bottom: 30px;
        }

        .tekniko-sidebar-title {
            font-size: 1.2rem;
            font-weight: 800;
            color: var(--tekniko-dark);
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .tekniko-sidebar-title::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            width: 40px;
            height: 3px;
            background: var(--tekniko-primary);
            border-radius: 2px;
        }

        /* FORM FIELD STYLING */
        .tekniko-form-group {
            margin-bottom: 16px;
        }

        .tekniko-form-label {
            font-size: 0.85rem;
            font-weight: 700;
            color: var(--tekniko-dark);
            margin-bottom: 6px;
            display: block;
        }

        .tekniko-form-control,
        .tekniko-form-select {
            width: 100%;
            padding: 12px 16px;
            font-size: 0.9rem;
            border-radius: 10px;
            border: 1px solid var(--tekniko-border);
            background-color: var(--tekniko-bg-light);
            color: var(--tekniko-dark);
            outline: none;
            transition:
                border-color 0.2s ease,
                box-shadow 0.2s ease;
        }

        .tekniko-form-control:focus,
        .tekniko-form-select:focus {
            border-color: var(--tekniko-primary);
            box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
            background-color: #ffffff;
        }

        .tekniko-form-control::placeholder {
            color: #94a3b8;
        }

        .tekniko-btn-primary {
            width: 100%;
            padding: 13px;
            font-size: 0.95rem;
            font-weight: 700;
            color: #ffffff;
            background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
            border: none;
            border-radius: 10px;
            cursor: pointer;
            transition:
                background-color 0.25s ease,
                transform 0.2s ease;
        }

        .tekniko-btn-primary:hover {
            background-color: #0b5ed7;
            transform: translateY(-2px);
        }

        /* RECENT POST ITEM */
        .tekniko-recent-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding-bottom: 15px;
            margin-bottom: 15px;
            border-bottom: 1px solid #f1f5f9;
            text-decoration: none;
            transition: transform 0.2s ease;
        }

        .tekniko-recent-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .tekniko-recent-item:hover {
            transform: translateX(4px);
        }

        .tekniko-recent-thumb {
            width: 75px;
            height: 75px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
            background-color: var(--tekniko-bg-light);
        }

        .tekniko-recent-info h6 {
            color: var(--tekniko-dark);
            font-weight: 700;
            font-size: 0.92rem;
            line-height: 1.35;
            margin: 0 0 6px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }

        .tekniko-recent-item:hover .tekniko-recent-info h6 {
            color: var(--tekniko-primary);
        }

        .tekniko-recent-date {
            font-size: 0.78rem;
            color: #94a3b8;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* RESPONSIVE */
        @media (max-width: 991px) {
            .tekniko-hero-title {
                font-size: 2.1rem;
            }

            .tekniko-blog-card {
                padding: 30px;
            }

            .tekniko-sidebar {
                margin-top: 40px;
            }
        }

        @media (max-width: 576px) {
            .tekniko-hero-section {
                min-height: 380px;
                padding: 100px 15px 45px;
            }

            .tekniko-hero-title {
                font-size: 1.6rem;
            }

            .tekniko-blog-card {
                padding: 20px;
            }
        }

        .tekniko-hero-meta .tekniko-back-btn {
            margin-bottom: 0;
            padding: 6px 16px;
            font-size: 13px;
            white-space: nowrap;
        }

        @media (max-width: 576px) {
            .tekniko-hero-meta .tekniko-back-btn {
                margin-left: 0 !important;
                width: 100%;
                justify-content: center;
            }
        }

        /* FLOATING ENQUIRY BUTTON FOR MOBILE */
        .tekniko-mobile-form-btn {
            display: none;
        }

        @media (max-width: 767px) {
            .tekniko-mobile-form-btn {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                position: fixed;
                bottom: 20px;
                right: 20px;
                z-index: 999;
                background: linear-gradient(135deg, #0f172a 0%, #1e40af 100%);
                color: #ffffff;
                padding: 12px 20px;
                border-radius: 50px;
                font-size: 0.9rem;
                font-weight: 700;
                border: 1px solid rgba(255, 255, 255, 0.2);
                text-decoration: none;
                cursor: pointer;
                transition: transform 0.2s ease;
            }

            .tekniko-mobile-form-btn:active {
                transform: scale(0.95);
            }
        }

        .tekniko-hero-section {
            padding-bottom: 60px !important;
            position: relative;
        }

        .tekniko-hero-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px 16px;
            margin-top: 16px;
            margin-bottom: 24px;
        }

        .tekniko-back-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding: 10px 20px;
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 50px;
            color: #ffffff !important;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            margin-top: 12px;
        }

        h1,
        h2,
        h3,
        p,
        .tekniko-blog-title {
            word-break: normal !important;
            overflow-wrap: break-word !important;
            hyphens: none !important;
        }

        .tekniko-blog-card {
            margin-top: -30px;
            position: relative;
            z-index: 2;
            background: #ffffff;
            border-radius: 24px 24px 0 0;
            padding: 24px 16px;
        }

        @media (max-width: 767px) {
            .tekniko-hero-title {
                font-size: 24px !important;
                line-height: 1.3 !important;
            }

            .tekniko-blog-card h1 {
                font-size: 22px !important;
                line-height: 1.35 !important;
            }

            .tekniko-back-btn {
                width: 100%;
                margin-top: 16px;
                display: none;
            }
        }

        table,
        tbody,
        td,
        tfoot,
        th,
        thead,
        tr {
            border-color: inherit;
            border-style: solid;
            border-width: 1px;
            padding: 1px 5px;
            border: 1px solid #aca5a5;
        }

        /* BLOG TABLE FIX */
        .tekniko-blog-content table {
            width: 100% !important;
            border-collapse: collapse !important;
            border-spacing: 0 !important;
            margin: 25px 0 !important;
            table-layout: fixed !important;
            background: #ffffff;
        }

        .tekniko-blog-content table th,
        .tekniko-blog-content table td {
            border: 1px solid #cbd5e1 !important;
            padding: 10px 12px !important;
            text-align: left !important;
            vertical-align: middle !important;
            white-space: normal !important;
            word-break: normal !important;
            overflow-wrap: break-word !important;
            line-height: 1.5 !important;
        }

        .tekniko-blog-content table th {
            font-weight: 700 !important;
            color: #0f172a !important;
            background: #f8fafc !important;
        }

        /* Mobile table */
        @media (max-width: 767px) {
            .tekniko-blog-content {
                overflow-x: hidden;
            }

            .tekniko-blog-content table {
                width: 100% !important;
                font-size: 13px !important;
            }

            .tekniko-blog-content table th,
            .tekniko-blog-content table td {
                padding: 8px 7px !important;
                font-size: 12px !important;
                line-height: 1.4 !important;
            }
        }

        /* BLOG LIST STYLING */
        .tekniko-blog-content ul {
            list-style-type: disc;
            padding-left: 30px;
            margin: 20px 0 25px;
        }

        .tekniko-blog-content ol {
            list-style-type: decimal;
            padding-left: 30px;
            margin: 20px 0 25px;
        }

        .tekniko-blog-content li {
            margin-bottom: 10px;
            padding-left: 5px;
            line-height: 1.8;
        }
  