        /* Reset and Base Styles */
        :host,
        :root {
            --spacing: .25rem;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            line-height: 1.6;
            color: #1f2937;
            background-color: #f9fafb;
        }

        /* Typography */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-weight: 700;
            line-height: 1.2;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        /* Utility Classes */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .flex {
            display: flex;
        }

        .flex-col {
            flex-direction: column;
        }

        .items-center {
            align-items: center;
        }

        .justify-between {
            justify-content: space-between;
        }

        .justify-center {
            justify-content: center;
        }

        .text-center {
            text-align: center;
        }

        .hidden {
            display: none;
        }

        .md\:flex {
            display: flex;
        }

        .md\:hidden {
            display: none;
        }

        .lg\:grid-cols-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .md\:grid-cols-2 {
            grid-template-columns: repeat(2, minmax(0, 1fr));
        }

        .sm\:grid-cols-1 {
            grid-template-columns: repeat(1, minmax(0, 1fr));
        }

        .grid {
            display: grid;
        }

        .gap-4 {
            gap: 1rem;
        }

        .gap-6 {
            gap: 1.5rem;
        }

        .gap-8 {
            gap: 2rem;
        }

        .mr-4 {
            margin-right: calc(var(--spacing) * 4);
        }

        .mb-4 {
            margin-bottom: 1rem;
        }

        .mb-6 {
            margin-bottom: 1.5rem;
        }

        .mb-8 {
            margin-bottom: 2rem;
        }

        .mb-12 {
            margin-bottom: 3rem;
        }

        .mb-16 {
            margin-bottom: 4rem;
        }

        .p-4 {
            padding: 1rem;
        }

        .p-5 {
            padding: 1.25rem;
        }

        .p-6 {
            padding: 1.5rem;
        }

        .py-3 {
            padding-top: 0.75rem;
            padding-bottom: 0.75rem;
        }

        .py-16 {
            padding-top: 4rem;
            padding-bottom: 4rem;
        }

        .py-20 {
            padding-top: 5rem;
            padding-bottom: 5rem;
        }

        .px-4 {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        .px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .px-8 {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .rounded-lg {
            border-radius: 0.5rem;
        }

        .rounded-xl {
            border-radius: 0.75rem;
        }

        .rounded-full {
            border-radius: 9999px;
        }

        .shadow-md {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .shadow-lg {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .w-full {
            width: 100%;
        }

        .h-16 {
            height: 4rem;
        }

        .h-40 {
            height: 10rem;
        }

        .h-48 {
            height: 12rem;
        }

        .h-8 {
            height: 2rem;
        }

        .w-8 {
            width: 2rem;
        }

        .w-64 {
            width: 16rem;
        }

        /* nav .space-x-6>* {
            display: inline-flex;
            align-items: center;
        } */

        .max-w-4xl {
            max-width: 56rem;
        }

        .max-w-7xl {
            max-width: 80rem;
        }

        .max-w-md {
            max-width: 28rem;
        }

        .text-sm {
            font-size: 0.875rem;
        }

        .text-xs {
            font-size: 0.75rem;
        }

        .text-lg {
            font-size: 1.125rem;
        }

        .text-xl {
            font-size: 1.25rem;
        }

        .text-2xl {
            font-size: 1.5rem;
        }

        .text-3xl {
            font-size: 1.875rem;
        }

        .text-4xl {
            font-size: 2.25rem;
        }

        .text-5xl {
            font-size: 3rem;
        }

        .font-bold {
            font-weight: 700;
        }

        .font-semibold {
            font-weight: 600;
        }

        .font-medium {
            font-weight: 500;
        }

        .text-white {
            color: #ffffff;
        }

        .text-gray-500 {
            color: #6b7280;
        }

        .text-gray-600 {
            color: #4b5563;
        }

        .text-gray-900 {
            color: #111827;
        }

        .text-blue-600 {
            color: #2563eb;
        }

        .text-blue-700 {
            color: #1d4ed8;
        }

        .bg-white {
            background-color: #ffffff;
        }

        .bg-gray-50 {
            background-color: #f9fafb;
        }

        .bg-gray-100 {
            background-color: #f3f4f6;
        }

        .bg-gray-300 {
            background-color: #d1d5db;
        }

        .bg-gray-900 {
            background-color: #111827;
        }

        .bg-blue-50 {
            background-color: #eff6ff;
        }

        .bg-blue-600 {
            background-color: #2563eb;
        }

        .bg-gradient-to-br {
            background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
        }

        .from-blue-400 {
            --tw-gradient-from: #60a5fa;
            --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(96, 165, 250, 0));
        }

        .to-purple-500 {
            --tw-gradient-to: #a855f7;
        }

        .from-blue-600 {
            --tw-gradient-from: #2563eb;
            --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(37, 99, 235, 0));
        }

        .to-purple-600 {
            --tw-gradient-to: #9333ea;
        }

        .hover\:shadow-lg:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .hover\:shadow-xl:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .hover\:bg-gray-100:hover {
            background-color: #f3f4f6;
        }

        .hover\:bg-white:hover {
            background-color: #ffffff;
        }

        .hover\:text-blue-600:hover {
            color: #2563eb;
        }

        .hover\:text-blue-700:hover {
            color: #1d4ed8;
        }

        .hover\:text-white:hover {
            color: #ffffff;
        }

        .transition-colors {
            transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }

        .transition-shadow {
            transition-property: box-shadow;
            transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
            transition-duration: 150ms;
        }

        .sticky {
            position: sticky;
        }

        .top-0 {
            top: 0px;
        }

        .z-50 {
            z-index: 50;
        }

        .space-x-4>*+* {
            margin-left: 1rem;
        }

        .space-x-6>*+* {
            margin-left: 1.5rem;
        }

        .space-y-4>*+* {
            margin-top: 1rem;
        }

        .space-y-2>*+* {
            margin-top: 0.5rem;
        }

        .line-clamp-2 {
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .line-clamp-3 {
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .border {
            border-width: 1px;
        }

        .border-gray-300 {
            border-color: #d1d5db;
        }

        .border-t {
            border-top-width: 1px;
        }

        .border-gray-800 {
            border-color: #1f2937;
        }

        .focus\:outline-none:focus {
            outline: 2px solid transparent;
            outline-offset: 2px;
        }

        .focus\:ring-2:focus {
            --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
            --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
            box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
        }

        .focus\:ring-blue-500:focus {
            --tw-ring-color: #3b82f6;
        }

        .pl-10 {
            padding-left: 2.5rem;
        }

        .pr-4 {
            padding-right: 1rem;
        }

        .relative {
            position: relative;
        }

        .absolute {
            position: absolute;
        }

        .left-3 {
            left: 0.75rem;
        }

        .top-1\/2 {
            top: 50%;
        }

        .transform {
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        }

        .-translate-y-1\/2 {
            --tw-translate-y: -50%;
            transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
        }

        .opacity-90 {
            opacity: 0.9;
        }

        .opacity-80 {
            opacity: 0.8;
        }

        .sm\:flex-row {
            flex-direction: row;
        }

        .sm\:px-6 {
            padding-left: 1.5rem;
            padding-right: 1.5rem;
        }

        .sm\:text-xl {
            font-size: 1.25rem;
        }

        .md\:flex-col {
            flex-direction: column;
        }

        .md\:grid-cols-3 {
            grid-template-columns: repeat(3, minmax(0, 1fr));
        }

        .md\:text-5xl {
            font-size: 3rem;
        }

        .lg\:px-8 {
            padding-left: 2rem;
            padding-right: 2rem;
        }

        .lg\:grid-cols-4 {
            grid-template-columns: repeat(4, minmax(0, 1fr));
        }

        /* Custom Styles */
        .lucide {
            width: 24px;
            height: 24px;
            stroke: currentColor;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            fill: none;
        }

        .logo-container {
            display: flex;
            align-items: center;
        }

        .logo-text h1 {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
        }

        .logo-text p {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .nav-link {
            display: flex;
            align-items: center;
            color: #374151;
            transition: color 0.15s ease-in-out;
        }

        .nav-link:hover {
            color: #2563eb;
        }

        .nav-link .lucide {
            margin-right: 0.25rem;
            width: 16px;
            height: 16px;
        }

        .dropdown {
            position: relative;
        }

        .dropdown-button {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 500;
            background: none;
            border: none;
            color: #374151;
            cursor: pointer;
            padding: 0;
            transition: color 0.2s ease;
            vertical-align: middle;
        }

        .dropdown-button:hover {
            color: #2563eb;
        }

        .dropdown-button .lucide {
            width: 16px;
            height: 16px;
            margin-left: 4px;
            stroke-width: 2;
            opacity: 0.8;
            position: relative;
            top: 1px;
        }

        .dropdown-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            background-color: #ffffff;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
            border-radius: 0.5rem;
            overflow: hidden;
            min-width: 180px;
            z-index: 1000;
            /* padding: 0.5rem 0; */
            animation: fadeIn 0.2s ease-in-out;
        }

        .dropdown-menu a {
            display: block;
            padding: 0.75rem 1rem;
            color: #374151;
            font-size: 0.875rem;
            transition: background-color 0.2s, color 0.2s;
        }

        .dropdown-menu a:hover {
            background-color: #f3f4f6;
            color: #2563eb;
        }

        .dropdown:hover .dropdown-menu,
        .dropdown-menu:hover {
            visibility: visible;
            opacity: 1;
            transform: translateY(0);
            pointer-events: auto;
        }

        .dropdown:hover .dropdown-menu {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-5px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .search-container {
            position: relative;
        }

        .search-icon {
            position: absolute;
            left: 0.75rem;
            top: 50%;
            transform: translateY(-50%);
            color: #9ca3af;
            width: 16px;
            height: 16px;
        }

        .search-input {
            padding-left: 2.5rem;
            padding-right: 1rem;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            width: 16rem;
        }

        .search-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px #3b82f6;
        }

        .hero-section {
            background: linear-gradient(to bottom right, #2563eb, #9333ea);
            color: white;
            padding: 5rem 1rem;
            text-align: center;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-content: center;
        }

        .btn-primary {
            padding: 0.75rem 2rem;
            background-color: white;
            color: #2563eb;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: background-color 0.15s ease-in-out;
            border: none;
            cursor: pointer;
        }

        .btn-primary:hover {
            background-color: #f3f4f6;
        }

        .btn-secondary {
            padding: 0.75rem 2rem;
            border: 2px solid white;
            color: white;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: all 0.15s ease-in-out;
            background: transparent;
            cursor: pointer;
        }

        .btn-secondary:hover {
            background-color: white;
            color: #2563eb;
        }

        .section-title {
            font-size: 1.875rem;
            font-weight: 700;
            text-align: center;
            color: #111827;
            margin-bottom: 3rem;
        }

        .article-card {
            background-color: white;
            border-radius: 0.75rem;
            overflow: hidden;
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
            transition: box-shadow 0.15s ease-in-out;
        }

        .article-card:hover {
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        .article-image {
            width: 100%;
            height: auto;
            overflow: hidden;
            border-top-left-radius: 0.75rem;
            border-top-right-radius: 0.75rem;
        }

        .article-image img {
            width: 100%;
            height: auto;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }

        .article-card:hover .article-image img {
            transform: scale(1.05);
        }

        .article-content {
            padding: 1.5rem;
        }

        .article-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 0.75rem;
        }

        .article-category {
            font-size: 0.75rem;
            font-weight: 500;
            color: #2563eb;
            background-color: #eff6ff;
            padding: 0.25rem 0.75rem;
            border-radius: 9999px;
        }

        .article-read-time {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .article-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-excerpt {
            color: #4b5563;
            margin-bottom: 1rem;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .article-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .author-info {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 2rem;
            height: 2rem;
            background-color: #d1d5db;
            border-radius: 50%;
            margin-right: 0.5rem;
        }

        .author-name {
            font-size: 0.875rem;
            font-weight: 500;
            color: #111827;
        }

        .article-date {
            font-size: 0.75rem;
            color: #6b7280;
        }

        .read-more {
            color: #2563eb;
            font-weight: 500;
            font-size: 0.875rem;
            transition: color 0.15s ease-in-out;
            background: transparent;
            border: none;
            cursor: pointer;
        }

        .read-more:hover {
            color: #1d4ed8;
        }

        .category-section {
            margin-bottom: 4rem;
        }

        .category-header {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .category-icon {
            margin-right: 1rem;
        }

        .category-title {
            font-size: 1.5rem;
            font-weight: 700;
            color: #111827;
            margin-left: 0.5rem;
        }

        .category-description {
            color: #4b5563;
        }

        .view-all-btn {
            margin-left: auto;
            color: #2563eb;
            font-weight: 500;
            transition: color 0.15s ease-in-out;
            background-color: transparent;
            border: none;
            font-size: 16px;
            cursor: pointer;
        }

        .view-all-btn:hover {
            color: #1d4ed8;
        }

        .industry-card {
            background-color: #f9fafb;
            border-radius: 0.75rem;
            padding: 1.5rem;
            transition: box-shadow 0.15s ease-in-out;
        }

        .industry-card:hover {
            box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }

        .industry-header {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .industry-icon {
            width: 2rem;
            height: 2rem;
            color: #2563eb;
            margin-right: 0.75rem;
        }

        .industry-title {
            font-size: 1.25rem;
            font-weight: 700;
            color: #111827;
        }

        .industry-description {
            color: #4b5563;
            margin-bottom: 1.5rem;
        }

        .industry-articles {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .industry-article {
            background-color: white;
            border-radius: 0.5rem;
            padding: 1rem;
            transition: box-shadow 0.15s ease-in-out;
        }

        .industry-article:hover {
            box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
        }

        .industry-article-title {
            font-size: 0.875rem;
            font-weight: 600;
            color: #111827;
            margin-bottom: 0.5rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .industry-article-excerpt {
            color: #4b5563;
            font-size: 0.75rem;
            margin-bottom: 0.75rem;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .industry-article-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 0.75rem;
        }

        .industry-article-date {
            color: #6b7280;
        }

        .industry-article-read-more {
            color: #2563eb;
            font-weight: 500;
            transition: color 0.15s ease-in-out;
        }

        .industry-article-read-more:hover {
            color: #1d4ed8;
        }

        .view-all-articles-btn {
            width: 100%;
            margin-top: 1.5rem;
            text-align: center;
            color: #2563eb;
            font-weight: 500;
            transition: color 0.15s ease-in-out;
        }

        .view-all-articles-btn:hover {
            color: #1d4ed8;
        }

        .newsletter-section {
            background: linear-gradient(to right, #2563eb, #9333ea);
            color: white;
            padding: 4rem 1rem;
            text-align: center;
        }

        .newsletter-icon {
            width: 4rem;
            height: 4rem;
            margin: 0 auto 1.5rem;
            opacity: 0.8;
        }

        .newsletter-title {
            font-size: 1.875rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .newsletter-description {
            font-size: 1.25rem;
            opacity: 0.9;
            margin-bottom: 2rem;
        }

        .newsletter-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            max-width: 28rem;
            margin: 0 auto;
        }

        .newsletter-input {
            flex: 1;
            padding: 0.75rem 1rem;
            border-radius: 0.5rem;
            color: #111827;
        }

        .newsletter-input:focus {
            outline: none;
            box-shadow: 0 0 0 2px white;
        }

        .newsletter-btn {
            padding: 0.75rem 1.5rem;
            background-color: white;
            color: #2563eb;
            border-radius: 0.5rem;
            font-weight: 600;
            transition: background-color 0.15s ease-in-out;
        }

        .newsletter-btn:hover {
            background-color: #f3f4f6;
        }

        .content-section {
            padding: 4rem 1rem;
        }

        .content-content {
            max-width: 56rem;
            margin: 0 auto;
            text-align: center;
        }

        .content-title {
            font-size: 1.875rem;
            font-weight: 700;
            color: #111827;
            margin-bottom: 1.5rem;
        }

        .content-description {
            font-size: 1.125rem;
            color: #4b5563;
            margin-bottom: 3rem;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
        }

        @media (min-width: 640px) {
            .form-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group input {
            padding: 0.75rem 1rem;
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            font-size: 1rem;
            color: #111827;
            transition: box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .form-group input:focus {
            border-color: #2563eb;
            box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
            outline: none;
        }

        .contact-btn {
            margin-top: 2rem;
            display: inline-block;
            width: auto;
            background-color: #2563eb;
            color: white;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            border: none;
            cursor: pointer;
            transition: background-color 0.2s ease;
        }

        .contact-btn:hover {
            background-color: #1d4ed8;
        }

        .footer {
            background-color: #111827;
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid #1f2937;
            padding-top: 0.5rem;
            padding-bottom: 0.5rem;
            text-align: center;
            color: #9ca3af;
        }
/* Blog Post Detail CSS Start */
.blog-post-container{
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
    margin-top: 2rem;
}
.blog-post-content{
    background-color: white;
    border-radius: 0.75rem;
    padding: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.blog-post-header {
    margin-bottom: 2rem;
}
.blog-post-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2563eb;
    background-color: #eff6ff;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    display: inline-block;
    margin-bottom: 1rem;
}
.blog-post-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.2;
}
.blog-post-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}
.blog-post-meta .lucide {
    width: 1rem;
    height: 1rem;
    margin-right: 0.5rem;
}
.blog-post-meta-item {
    display: flex;
    align-items: center;
    margin-right: 1.5rem;
}
.blog-post-image {
    width: 100%;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 2rem;
}
.blog-post-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0.75rem;
}
.blog-post-body {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #374151;
}
.blog-post-body p {
    margin-bottom: 1.5rem;
}
.blog-post-body h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-top: 2rem;
    margin-bottom: 1rem;
}
.blog-post-body h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111827;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}
.blog-post-body ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}
.blog-post-body li {
    margin-bottom: 0.5rem;
}
.blog-post-author {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
}

.blog-post-author-avatar {
    width: 4rem;
    height: 4rem;
    background-color: #d1d5db;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.blog-post-author-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.25rem;
}

.blog-post-author-info p {
    color: #6b7280;
    font-size: 0.875rem;
}
.sidebar {
    position: sticky;
    top: 6rem;
    height: fit-content;
}
.sidebar-section {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.sidebar-title .lucide {
    margin-right: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #2563eb;
}
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.tag {
    font-size: 0.75rem;
    background-color: #f3f4f6;
    color: #4b5563;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: all 0.15s ease-in-out;
}

.tag:hover {
    background-color: #eff6ff;
    color: #2563eb;
}

.tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}
.tag-cloud .tag {
    cursor: pointer;
}
.sidebar-post {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #e5e7eb;
    cursor: pointer;
}

.sidebar-post:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
}

.sidebar-post-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    transition: color 0.15s ease-in-out;
}

.sidebar-post-title:hover {
    color: #2563eb;
}

.sidebar-post-meta {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    color: #6b7280;
}

.sidebar-post-meta .lucide {
    width: 0.75rem;
    height: 0.75rem;
    margin-right: 0.25rem;
}

.sidebar-post-category {
    font-size: 0.75rem;
    font-weight: 500;
    color: #2563eb;
    background-color: #eff6ff;
    padding: 0.125rem 0.5rem;
    border-radius: 9999px;
    margin-right: 0.5rem;
}
/* Blog Post Detail CSS End */
        /* Responsive Design */
        @media (min-width: 640px) {
            .hero-buttons {
                flex-direction: row;
            }

            .sm\:flex-row {
                flex-direction: row;
            }

            .sm\:px-6 {
                padding-left: 1.5rem;
                padding-right: 1.5rem;
            }

            .sm\:text-xl {
                font-size: 1.25rem;
            }
        }

        @media (min-width: 768px) {
            .md\:flex {
                display: flex;
            }

            .md\:hidden {
                display: none;
            }

            .md\:grid-cols-1 {
                grid-template-columns: repeat(1, 1fr);
            }

            .md\:grid-cols-2 {
                grid-template-columns: repeat(2, 1fr);
            }

            .md\:grid-cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }

            .md\:text-5xl {
                font-size: 3rem;
            }

            .md\:flex-col {
                flex-direction: column;
            }
            .blog-post-title {
                font-size: 1.875rem;
            }
        }
        @media (min-width: 1024px) {
            .lg\:px-8 {
                padding-left: 2rem;
                padding-right: 2rem;
            }

            .lg\:grid-cols-3 {
                grid-template-columns: repeat(3, 1fr);
            }

            .lg\:grid-cols-4 {
                grid-template-columns: repeat(4, 1fr);
            }

            .footer-content {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media(max-width: 1024px){
            .blog-post-container {
                grid-template-columns: 1fr !important;
                margin-top: 0;
            }
            .sidebar {
                position: static;
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 1.5rem;
            }
        }
        @media (max-width: 768px) {
            .sidebar {
                grid-template-columns: 1fr;
            }
        }