
        /* =========================================
           1. CORE VARIABLES & RESET
           ========================================= */
        :root {
            --zoho-blue: #0052cc;
            --zoho-cyan: #00b4d8;
            --google-blue: #4285F4;
            --google-red: #EA4335;
            --google-yellow: #FBBC04;
            --google-green: #34A853;
            --gemini-purple: #8A2BE2;
            --gemini-pink: #FF69B4;
            --text-dark: #1e293b;
            --text-light: #64748b;
            --bg-color: #f8fafc;
            --glass-bg: rgba(255, 255, 255, 0.6);
            --glass-border: rgba(255, 255, 255, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .material-symbols-rounded {
            font-family: 'Material Symbols Rounded' !important;
            font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            font-weight: normal;
            font-style: normal;
            font-size: 24px;
            display: inline-block;
            line-height: 1;
            text-transform: none;
            letter-spacing: normal;
            word-wrap: normal;
            white-space: nowrap;
            direction: ltr;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-color);
            color: var(--text-dark);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, h4, h5, h6, .outfit-font {
            font-family: 'Outfit', sans-serif;
        }

        /* =========================================
           2. ANIMATED MESH GRADIENT BACKGROUND
           ========================================= */
        .mesh-bg {
            position: fixed;
            top: 0; left: 0;
            width: 100vw; height: 100vh;
            z-index: -1;
            background: 
                radial-gradient(circle at 15% 50%, rgba(66, 133, 244, 0.15), transparent 25%),
                radial-gradient(circle at 85% 30%, rgba(0, 82, 204, 0.12), transparent 25%),
                radial-gradient(circle at 50% 80%, rgba(138, 43, 226, 0.1), transparent 30%),
                radial-gradient(circle at 20% 90%, rgba(52, 168, 83, 0.1), transparent 25%),
                radial-gradient(circle at 80% 90%, rgba(234, 67, 53, 0.08), transparent 25%);
            filter: blur(60px);
            animation: meshFloat 20s infinite alternate linear;
        }

        @keyframes meshFloat {
            0% { transform: scale(1) translate(0, 0); }
            50% { transform: scale(1.1) translate(2%, 3%); }
            100% { transform: scale(0.95) translate(-2%, -2%); }
        }

        /* =========================================
           3. GLASSMORPHISM UTILITIES
           ========================================= */
        .glass-panel {
            background: var(--glass-bg);
            backdrop-filter: blur(24px);
            -webkit-backdrop-filter: blur(24px);
            border: 1px solid var(--glass-border);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
            border-radius: 24px;
        }
        
        .glass-nav {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
        }

        /* =========================================
           4. HEADER
           ========================================= */
        header {
            position: fixed;
            top: 0; left: 0; width: 100%;
            height: 100px;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 5%;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
        }

        .logo-container img {
            height: 80px; transform: scale(1.1); transform-origin: left center;
        }

        .logo-text {
            display: none; /* Removed to prioritize the cloudpartners.png logo */
        }

        .nav-links {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 500;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--google-blue);
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--google-blue), var(--zoho-blue));
            color: white !important;
            padding: 10px 24px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
        }

        /* =========================================
           5. HERO SECTION
           ========================================= */
        .hero-section {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 120px 5% 60px;
            text-align: center;
            position: relative;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            background: rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(66, 133, 244, 0.2);
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--google-blue);
            margin-bottom: 24px;
            backdrop-filter: blur(10px);
            animation: slideDown 0.6s ease-out;
        }

        .hero-title {
            font-size: clamp(48px, 6vw, 72px);
            line-height: 1.1;
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 24px;
            max-width: 900px;
            animation: slideUp 0.8s ease-out;
        }

        .text-gradient {
            background: linear-gradient(90deg, var(--zoho-blue), var(--zoho-cyan), var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientShift 6s linear infinite;
        }

        .hero-subtitle {
            font-size: 18px;
            color: var(--text-light);
            max-width: 600px;
            line-height: 1.6;
            margin-bottom: 40px;
            animation: slideUp 1s ease-out;
        }

        .hero-portals {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            justify-content: center;
            animation: slideUp 1.2s ease-out;
        }

        .portal-card {
            width: 320px;
            padding: 32px;
            text-align: left;
            text-decoration: none;
            color: inherit;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .portal-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; width: 100%; height: 4px;
            transition: height 0.4s ease;
            z-index: -1;
        }

        .portal-card.zoho::before { background: linear-gradient(90deg, var(--zoho-blue), var(--zoho-cyan)); }
        .portal-card.google::before { background: linear-gradient(90deg, var(--google-blue), var(--google-green)); }

        .portal-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.08);
            border-color: rgba(255,255,255,0.8);
        }

        .portal-card:hover::before { height: 100%; opacity: 0.05; }

        .portal-icon {
            font-size: 40px;
        }

        .zoho-icon { color: var(--zoho-blue); }
        .google-icon {
            background: linear-gradient(135deg, var(--google-blue), var(--google-red), var(--google-yellow), var(--google-green));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .portal-card h3 { font-size: 24px; font-weight: 700; }
        .portal-card p { color: var(--text-light); font-size: 15px; }
        
        .portal-card .arrow-icon {
            margin-top: auto;
            align-self: flex-start;
            color: var(--text-light);
            transition: transform 0.3s ease;
        }

        .portal-card:hover .arrow-icon {
            transform: translateX(5px);
            color: var(--zoho-blue);
        }
        .portal-card.google:hover .arrow-icon { color: var(--google-blue); }

        /* =========================================
           6. GEMINI SEARCH SECTION
           ========================================= */
        .ai-section {
            padding: 80px 5%;
            position: relative;
        }

        .ai-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 48px;
            background: rgba(255, 255, 255, 0.4);
            backdrop-filter: blur(30px);
            border-radius: 32px;
            border: 1px solid rgba(255, 255, 255, 0.6);
            box-shadow: 0 24px 60px rgba(138, 43, 226, 0.08), inset 0 0 0 1px rgba(255,255,255,0.8);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .ai-container::before {
            content: '';
            position: absolute;
            top: -50px; left: -50px;
            width: 200px; height: 200px;
            background: linear-gradient(135deg, var(--google-blue), var(--gemini-purple), var(--gemini-pink));
            filter: blur(80px);
            opacity: 0.4;
            z-index: -1;
            border-radius: 50%;
            animation: pulse 8s infinite alternate;
        }

        .ai-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .gemini-sparkle {
            font-size: 32px;
            background: linear-gradient(135deg, var(--google-blue), var(--gemini-purple), var(--gemini-pink));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: spinSparkle 4s linear infinite;
        }

        .ai-container h2 {
            font-size: 36px;
            font-weight: 700;
            color: var(--text-dark);
        }

        .ai-search-box {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .ai-input {
            width: 100%;
            padding: 20px 24px 20px 56px;
            font-size: 18px;
            border-radius: 60px;
            border: 2px solid rgba(138, 43, 226, 0.15);
            background: rgba(255, 255, 255, 0.9);
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
            outline: none;
            transition: all 0.3s ease;
            color: var(--text-dark);
        }

        .ai-input:focus {
            border-color: var(--gemini-purple);
            box-shadow: 0 12px 32px rgba(138, 43, 226, 0.15);
            transform: translateY(-2px);
        }

        .ai-search-icon {
            position: absolute;
            left: 20px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-light);
            font-size: 24px;
            pointer-events: none;
        }

        .ai-submit {
            position: absolute;
            right: 12px;
            top: 50%;
            transform: translateY(-50%);
            background: linear-gradient(135deg, var(--google-blue), var(--gemini-purple));
            color: white;
            border: none;
            width: 40px; height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .ai-submit:hover {
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
        }

        .ai-suggestions {
            display: flex;
            gap: 12px;
            justify-content: center;
            margin-top: 24px;
            flex-wrap: wrap;
        }

        .ai-pill {
            padding: 8px 16px;
            border-radius: 50px;
            background: rgba(255,255,255,0.6);
            border: 1px solid rgba(138, 43, 226, 0.15);
            font-size: 14px;
            color: var(--text-dark);
            cursor: pointer;
            transition: all 0.2s ease;
        }

        .ai-pill:hover {
            background: rgba(138, 43, 226, 0.1);
            border-color: rgba(138, 43, 226, 0.3);
            color: var(--gemini-purple);
        }

        /* =========================================
           7. INFO SECTION
           ========================================= */
        .info-section {
            padding: 100px 5%;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-header h2 {
            font-size: 40px;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 32px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            padding: 40px 32px;
            text-align: center;
            transition: transform 0.3s ease;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon-wrapper {
            width: 72px; height: 72px;
            border-radius: 20px;
            background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(0, 82, 204, 0.1));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 24px;
            font-size: 32px;
            color: var(--zoho-blue);
        }

        .feature-card h3 {
            font-size: 22px;
            margin-bottom: 12px;
        }

        .feature-card p {
            color: var(--text-light);
            line-height: 1.6;
        }

        /* =========================================
           8. FOOTER
           ========================================= */
        footer {
            padding: 60px 5% 40px;
            background: rgba(255, 255, 255, 0.5);
            backdrop-filter: blur(20px);
            border-top: 1px solid var(--glass-border);
            text-align: center;
        }

        .footer-logo {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 24px;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-links a {
            color: var(--text-light);
            text-decoration: none;
            transition: color 0.2s;
        }

        .footer-links a:hover { color: var(--zoho-blue); }

        .footer-partners {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0;
            margin: 28px auto 24px;
        }

        .footer-partners img {
            max-width: 560px;
            width: 100%;
            height: auto;
            opacity: 0.85;
            transition: opacity 0.3s ease;
            filter: grayscale(15%);
        }

        .footer-partners img:hover {
            opacity: 1;
            filter: grayscale(0%);
        }

        .footer-partner-label {
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-light);
            margin-bottom: 16px;
        }

        .copyright {
            color: var(--text-light);
            font-size: 14px;
            padding-top: 24px;
            border-top: 1px solid rgba(0,0,0,0.05);
        }

        /* Animations */
        @keyframes slideUp {
            from { opacity: 0; transform: translateY(40px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes slideDown {
            from { opacity: 0; transform: translateY(-20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.3; }
            100% { transform: scale(1.2); opacity: 0.6; }
        }
        @keyframes spinSparkle {
            0% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.2); }
            100% { transform: rotate(360deg) scale(1); }
        }

        /* Mobile Menu */
        .menu-toggle {
            display: none;
            cursor: pointer;
            color: var(--text-dark);
            z-index: 1001;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .menu-toggle {
                display: block;
            }
            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                flex-direction: column;
                justify-content: center;
                transition: right 0.4s ease;
                box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            }
            .nav-links.active {
                right: 0;
            }
            .hero-title { font-size: 40px; }
            .hero-portals { flex-direction: column; align-items: center; }
            .portal-card { width: 100%; max-width: 400px; }
            .ai-container { padding: 32px 24px; }
            header { height: 80px; }
            .logo-container img { height: 50px; }
        }

        /* =========================================
           9. BLOG SECTION (Homepage)
           ========================================= */
        .blog-section {
            padding: 100px 5%;
            background: rgba(255, 255, 255, 0.2);
        }

        .blog-section .section-header {
            margin-bottom: 56px;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 28px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-card {
            text-decoration: none;
            color: inherit;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 0;
        }

        .blog-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
        }

        .blog-card-image {
            width: 100%;
            height: 200px;
            overflow: hidden;
            border-radius: 24px 24px 0 0;
            flex-shrink: 0;
        }

        .blog-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .blog-card:hover .blog-card-image img {
            transform: scale(1.05);
        }

        .blog-card-image-placeholder {
            background: linear-gradient(135deg, rgba(66,133,244,0.1), rgba(138,43,226,0.1));
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-card-image-placeholder .material-symbols-rounded {
            font-size: 56px;
            background: linear-gradient(135deg, var(--zoho-blue), var(--gemini-purple));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .blog-card-body {
            padding: 24px;
            display: flex;
            flex-direction: column;
            flex: 1;
            gap: 10px;
        }

        .blog-card-category {
            display: inline-block;
            padding: 4px 12px;
            background: linear-gradient(135deg, rgba(66,133,244,0.12), rgba(0,82,204,0.08));
            color: var(--zoho-blue);
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            width: fit-content;
            border: 1px solid rgba(66,133,244,0.15);
        }

        .blog-card-body h3 {
            font-size: 18px;
            font-weight: 700;
            line-height: 1.4;
            color: var(--text-dark);
            transition: color 0.2s;
        }

        .blog-card:hover .blog-card-body h3 {
            color: var(--zoho-blue);
        }

        .blog-card-body p {
            color: var(--text-light);
            font-size: 14px;
            line-height: 1.6;
            flex: 1;
        }

        .blog-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 8px;
            padding-top: 16px;
            border-top: 1px solid rgba(0,0,0,0.06);
        }

        .blog-card-date {
            display: flex;
            align-items: center;
            gap: 5px;
            color: var(--text-light);
            font-size: 13px;
        }

        .blog-card-read {
            display: flex;
            align-items: center;
            gap: 4px;
            color: var(--zoho-blue);
            font-size: 13px;
            font-weight: 600;
        }

        .blog-section-footer {
            text-align: center;
            margin-top: 48px;
        }

        .blog-view-all {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 36px;
            border-radius: 50px;
            background: rgba(255,255,255,0.7);
            border: 1.5px solid rgba(0,82,204,0.2);
            color: var(--zoho-blue);
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s ease;
        }

        .blog-view-all:hover {
            background: var(--zoho-blue);
            color: white;
            border-color: var(--zoho-blue);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0,82,204,0.3);
        }

        /* Active nav link */
        .active-link {
            color: var(--zoho-blue) !important;
            font-weight: 700 !important;
        }

        /* =========================================
           10. BLOG LISTING PAGE
           ========================================= */
        .blog-listing-page {
            padding-top: 100px;
            min-height: 100vh;
        }

        .blog-listing-hero {
            text-align: center;
            padding: 80px 5% 60px;
        }

        .blog-listing-hero h1 {
            font-size: clamp(40px, 5vw, 64px);
            font-weight: 800;
            margin: 16px 0 20px;
            letter-spacing: -1px;
        }

        .blog-listing-hero p {
            color: var(--text-light);
            font-size: 18px;
            max-width: 580px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .blog-categories {
            display: flex;
            gap: 10px;
            justify-content: center;
            flex-wrap: wrap;
            padding: 0 5% 48px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .blog-cat-pill {
            padding: 8px 20px;
            border-radius: 50px;
            background: rgba(255,255,255,0.7);
            border: 1.5px solid rgba(0,0,0,0.08);
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .blog-cat-pill:hover,
        .blog-cat-pill.active {
            background: var(--zoho-blue);
            color: white;
            border-color: var(--zoho-blue);
            box-shadow: 0 4px 12px rgba(0,82,204,0.25);
        }

        .blog-grid-listing {
            padding: 0 5% 48px;
        }

        .blog-card-featured {
            grid-column: 1 / -1;
            flex-direction: row;
        }

        .blog-card-featured .blog-card-image {
            width: 460px;
            height: 280px;
            flex-shrink: 0;
            border-radius: 24px 0 0 24px;
        }

        .blog-card-featured .blog-card-body {
            padding: 36px;
            justify-content: center;
        }

        .blog-card-featured .blog-card-body h3 {
            font-size: 24px;
        }

        .blog-card-featured .blog-card-body p {
            font-size: 15px;
        }

        /* ─── PAGINATION ──────────────── */
        .blog-pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 0 5% 80px;
        }

        .blog-page-btn {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: 50px;
            background: rgba(255,255,255,0.7);
            border: 1.5px solid rgba(0,0,0,0.1);
            color: var(--text-dark);
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.2s ease;
        }

        .blog-page-btn:hover {
            background: var(--zoho-blue);
            color: white;
            border-color: var(--zoho-blue);
        }

        .blog-page-numbers {
            display: flex;
            gap: 6px;
        }

        .blog-page-num {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.7);
            border: 1.5px solid rgba(0,0,0,0.1);
            color: var(--text-dark);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: all 0.2s ease;
        }

        .blog-page-num.active,
        .blog-page-num:hover {
            background: var(--zoho-blue);
            color: white;
            border-color: var(--zoho-blue);
        }

        /* =========================================
           11. SINGLE BLOG POST PAGE
           ========================================= */
        .blog-post-page {
            padding-top: 100px;
        }

        .blog-post-hero {
            padding: 60px 5% 48px;
            max-width: 880px;
            margin: 0 auto;
        }



        .blog-back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: var(--text-light);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
            transition: color 0.2s;
        }

        .blog-back-link:hover {
            color: var(--zoho-blue);
        }

        .blog-post-category-tag {
            display: inline-block;
            padding: 6px 16px;
            background: linear-gradient(135deg, rgba(66,133,244,0.12), rgba(0,82,204,0.08));
            color: var(--zoho-blue);
            border-radius: 50px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 20px;
            border: 1px solid rgba(66,133,244,0.15);
        }

        .blog-post-hero h1 {
            font-size: clamp(28px, 4vw, 48px);
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.5px;
            margin-bottom: 24px;
        }

        .blog-post-meta {
            display: flex;
            align-items: center;
            gap: 24px;
            flex-wrap: wrap;
            color: var(--text-light);
            font-size: 14px;
        }

        .blog-post-meta span {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .blog-post-cover {
            max-width: 880px;
            margin: 0 auto 40px;
            padding: 0 5%;
        }

        .blog-post-cover img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
        }

        .blog-post-author {
            max-width: 780px;
            margin: 32px auto;
            padding: 18px 22px;
            border-radius: 28px;
            background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(244,247,255,0.95));
            border: 1px solid rgba(66,133,244,0.12);
            box-shadow: 0 20px 60px rgba(66,133,244,0.12);
        }

        .author-card {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 18px;
            align-items: center;
            width: 100%;
        }

        .author-card-avatar {
            flex-shrink: 0;
            width: 72px;
            height: 72px;
            border-radius: 50%;
            overflow: hidden;
            border: 2px solid rgba(66,133,244,0.22);
            box-shadow: 0 10px 28px rgba(66,133,244,0.12);
        }

        .author-card-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .author-card-body {
            min-width: 0;
        }

        .author-card-body h3 {
            font-size: 20px;
            margin-bottom: 4px;
            color: var(--text-dark);
        }

        .author-card-title {
            font-size: 14px;
            color: #64748b;
            margin-bottom: 10px;
            letter-spacing: 0.02em;
            font-weight: 600;
        }

        .author-card-body p {
            color: var(--text-dark);
            line-height: 1.6;
            margin-bottom: 12px;
            max-width: 100%;
        }

        .author-social-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .author-social-link {
            width: 34px;
            height: 34px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.08);
            color: var(--text-dark);
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s ease;
            font-size: 14px;
            font-weight: 700;
            letter-spacing: 0.02em;
        }

        .author-social-link:hover {
            transform: translateY(-2px);
            background: rgba(66, 133, 244, 0.14);
        }

        .author-social-link.linkedin { color: #0A66C2; }
        .author-social-link.twitter { color: #1DA1F2; }
        .author-social-link.facebook { color: #1877F2; }
        .author-social-link.instagram { color: #C13584; }
        .author-social-link.website { color: #0f172a; background: rgba(15,23,42,0.12); }

        .author-social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 100%;
            height: 100%;
        }

        .author-card-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 10px;
            padding: 6px 14px;
            border-radius: 999px;
            background: rgba(66,133,244,0.12);
            color: var(--zoho-blue);
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .author-card-body p {
            color: var(--text-dark);
            line-height: 1.75;
            max-width: 640px;
            margin-bottom: 14px;
        }

        .author-social-links {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

        .author-social-link {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(15, 23, 42, 0.08);
            color: var(--text-dark);
            text-decoration: none;
            transition: transform 0.2s ease, background 0.2s ease;
        }

        .author-social-link:hover {
            transform: translateY(-2px);
            background: rgba(66, 133, 244, 0.12);
        }

        .blog-post-content {
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 48px 56px;
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-dark);
        }

        .blog-post-content h2 {
            font-size: 26px;
            font-weight: 700;
            margin: 36px 0 16px;
            color: var(--text-dark);
        }

        .blog-post-content h3 {
            font-size: 20px;
            font-weight: 700;
            margin: 28px 0 12px;
        }

        .blog-post-content p {
            margin-bottom: 18px;
        }

        .blog-post-content ul,
        .blog-post-content ol {
            margin: 0 0 18px 24px;
        }

        .blog-post-content li {
            margin-bottom: 8px;
        }

        .blog-post-content a {
            color: var(--zoho-blue);
            font-weight: 600;
            text-decoration: none;
            border-bottom: 2px solid rgba(0,82,204,0.2);
            transition: border-color 0.2s;
        }

        .blog-post-content a:hover {
            border-color: var(--zoho-blue);
        }

        .blog-post-content strong {
            color: var(--text-dark);
            font-weight: 700;
        }

        .blog-post-content blockquote {
            border-left: 4px solid var(--zoho-blue);
            margin: 24px 0;
            padding: 16px 24px;
            background: rgba(0,82,204,0.04);
            border-radius: 0 12px 12px 0;
            font-style: italic;
            color: var(--text-light);
        }

        /* ─── TAGS ────────────────────── */
        .blog-post-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            max-width: 800px;
            margin: 0 auto 40px;
            padding: 0 5%;
        }

        .blog-tag {
            padding: 6px 14px;
            background: rgba(255,255,255,0.8);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: 50px;
            font-size: 13px;
            color: var(--text-light);
            font-weight: 500;
        }

        /* ─── SHARE ───────────────────── */
        .blog-share {
            max-width: 800px;
            margin: 0 auto 60px;
            padding: 24px 5%;
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .blog-share-label {
            font-weight: 600;
            color: var(--text-dark);
            font-size: 15px;
        }

        .blog-share-buttons {
            display: flex;
            gap: 10px;
        }

        .share-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            color: white;
            transition: all 0.3s ease;
        }

        .share-btn:hover {
            transform: translateY(-3px) scale(1.1);
        }

        .share-btn.linkedin { background: #0A66C2; }
        .share-btn.twitter { background: #1a1a2e; }
        .share-btn.facebook { background: #1877F2; }
        .share-btn.whatsapp { background: #25D366; }

        /* ─── RELATED ─────────────────── */
        .blog-related {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 5% 80px;
        }

        .blog-related h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 28px;
        }

        /* ─── RESPONSIVE BLOG ─────────── */
        @media (max-width: 968px) {
            .blog-card-featured {
                flex-direction: column;
            }
            .blog-card-featured .blog-card-image {
                width: 100%;
                height: 220px;
                border-radius: 24px 24px 0 0;
            }
            .blog-post-content {
                padding: 32px 24px;
            }
            .blog-post-cover img {
                height: 260px;
            }
            .blog-grid {
                grid-template-columns: 1fr;
            }
        }
    