.elementor-84 .elementor-element.elementor-element-0086be0{--spacer-size:50px;}/* Start custom CSS for html, class: .elementor-element-3fd0a24 */.logo {
            height: 2.5rem;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.6s ease forwards;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--neutral-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.6s ease forwards;
        }
        
        .nav-links a:hover {
            color: var(--primary);
        }

        .btn {
            background-color: var(--primary);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.6s ease forwards;
        }

        .btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(55, 114, 255, 0.2);
        }
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--text-color);
        }
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-color);
            margin-left: 10px;
        }
        
        .nav {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--neutral-dark);
        }
        
        .logo-blue {
            color: #4776FF;
        }/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-ac34e9d */<style>
        :root {
            --primary: #3772FF;
            --secondary: #13293D;
            --neutral-light: #D9D9D9;
            --neutral-dark: #131313;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        a{
            text-decoration: none;
        }

        body {
            background-color: var(--neutral-dark);
            min-height: 100vh;
        }

        nav {
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--neutral-dark);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            backdrop-filter: blur(10px);
        }

        .logo {
            height: 2.5rem;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.6s ease forwards;
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            align-items: center;
        }

        .nav-links a {
            color: var(--neutral-light);
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(-20px);
            animation: fadeInDown 0.6s ease forwards;
        }

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

        .main {
            max-width: 1200px;
            margin: 8rem auto 6rem;
            padding: 0 2rem;
        }

        .blog-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .blog-header h1 {
            font-size: 4rem;
            color: white;
            margin-bottom: 1rem;
            line-height: 1.1;
        }

        .blog-header p {
            color: var(--neutral-light);
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .blog-categories {
            display: flex;
            gap: 1rem;
            margin-bottom: 4rem;
            flex-wrap: wrap;
            justify-content: center;
        }

        .category-btn {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--neutral-light);
            padding: 0.75rem 1.5rem;
            border-radius: 9999px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .category-btn:hover,
        .category-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 2rem;
        }

        .blog-card {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .blog-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary);
        }

        .blog-image {
            width: 100%;
            height: 200px;
            background: rgba(55, 114, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .blog-content {
            padding: 1.5rem;
        }

        .blog-category {
            color: var(--primary);
            font-size: 0.875rem;
            margin-bottom: 0.5rem;
        }

        .blog-title {
            color: white;
            font-size: 1.25rem;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--neutral-light);
            font-size: 0.875rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
            opacity: 0.8;
        }

        .blog-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            color: var(--neutral-light);
            font-size: 0.875rem;
            opacity: 0.6;
        }

        .load-more {
            background: transparent;
            border: 2px solid var(--primary);
            color: var(--primary);
            padding: 1rem 2rem;
            border-radius: 9999px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: block;
            margin: 4rem auto 0;
        }

        .load-more:hover {
            background: var(--primary);
            color: white;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media (max-width: 768px) {
            .blog-header h1 {
                font-size: 2.5rem;
            }
            
            .nav-links {
                display: none;
            }
        }
    </style>/* End custom CSS */