
        /* =========================================
           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;
            -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;
            -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;
            -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; }
        }
    