:root {
            --bg: #f5f7fa;
            --bg-elevated: #ffffff;
            --text: #1a2233;
            --text-muted: #5a6a80;
            --accent: #1a7abf;
            --accent-dim: #2d7da8;
            --accent-glow: rgba(26, 122, 191, 0.12);
            --border: #dce3ed;
            --border-bright: #b0bfcf;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
		
		a{
			text-decoration: none;
			color: var(--accent);
			font-size:.9em;
		}

        ::selection {
            background: var(--accent);
            color: #ffffff;
        }

        body {
            font-family: 'Fraunces', serif;
            background-color: var(--bg);
            color: var(--text);
            min-height: 100vh;
            line-height: 1.65;
            position: relative;
            -webkit-font-smoothing: antialiased;
        }

        /* Subtle scanline effect */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: repeating-linear-gradient(
                0deg,
                transparent,
                transparent 2px,
                rgba(26, 122, 191, 0.015) 2px,
                rgba(26, 122, 191, 0.015) 4px
            );
            pointer-events: none;
            z-index: 100;
            opacity: 0.3;
        }

        /* Ambient glow */
        body::after {
            content: '';
            position: fixed;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 100%;
            height: 100%;
            background: radial-gradient(ellipse at center, var(--accent-glow) 0%, transparent 70%);
            z-index: -1;
            pointer-events: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 3rem;
        }

        /* Header */
        header {
            padding: 3rem 0 2rem;
            border-bottom: 1px solid var(--border);
            position: relative;
            animation: slideDown 0.7s cubic-bezier(0.4, 0, 0.2, 1);
        }

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

        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'JetBrains Mono', monospace;
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--text);
            text-decoration: none;
            letter-spacing: -0.02em;
            position: relative;
            padding: 0.6rem 0;
        }

        

        .logo:hover {
            color: var(--accent);
        }

        nav {
            display: flex;
            gap: 2.5rem;
            align-items: center;
        }

        nav a {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.8rem;
            color: var(--text-muted);
            text-decoration: none;
            letter-spacing: 0.03em;
            transition: all 0.3s ease;
            position: relative;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a::after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 0;
            height: 1px;
            background: var(--accent);
            transition: width 0.3s ease;
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-button {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--accent);
            background: transparent;
            border: 1px solid var(--accent);
            padding: 0.5rem 1.2rem;
            text-decoration: none;
            letter-spacing: 0.05em;
            transition: all 0.3s ease;
            text-transform: uppercase;
        }

        .cta-button:hover {
            background: var(--accent);
            color: #ffffff;
            box-shadow: 0 0 20px var(--accent-glow);
        }

        /* Hero Section */
        .hero {
            padding: 8rem 0 6rem;
            animation: fadeIn 0.9s ease-out 0.2s both;
            position: relative;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: var(--accent);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            display: inline-block;
        }

        .hero-label::before {
            content: '> ';
        }

        h1 {
            font-size: 4.8rem;
            font-weight: 300;
            line-height: 1.1;
            margin-bottom: 1.5rem;
            color: var(--text);
            letter-spacing: -0.03em;
        }

        h1 strong {
            font-weight: 600;
            color: var(--accent);
            font-style: italic;
        }

        .hero-description {
            font-size: 1.3rem;
            color: var(--text-muted);
            max-width: 700px;
            margin-bottom: 3rem;
            line-height: 1.7;
            font-weight: 300;
        }

        .hero-stats {
            display: flex;
            gap: 4rem;
            margin-top: 4rem;
		    justify-content: center;
            border-top: 1px solid var(--border);
		    border-bottom: 1px solid var(--border);
        }

        .stat {
            display: flex;
            flex-direction: column;
            background-color:#00000006;
            padding:20px;
        }

        .stat-value {
            font-family: 'JetBrains Mono', monospace;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 0.3rem;
        }

        .stat-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 0.1em;
        }

        /* Services */
        .services {
            margin-bottom: 8rem;
        }

        .section-header {
            margin-bottom: 3rem;
        }

        .section-label {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: var(--accent);
            letter-spacing: 0.15em;
            text-transform: uppercase;
            margin-bottom: 0.8rem;
        }

        .section-label::before {
            content: '// ';
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 300;
            color: var(--text);
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .service-card {
            display: flex;
            flex-direction: column;
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            padding: 2.5rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 3px;
            height: 0;
            background: var(--accent);
            transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card:hover {
            border-color: var(--border-bright);
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        }

        .service-card:hover::before {
            height: 100%;
        }

        .service-icon {
            
            position:relative;
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.8rem;
            color: var(--accent);
            
        }

        .service-title {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--text);
        }

        .service-description {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        /* Articles Section */
        .articles-section {
            margin-bottom: 8rem;
            animation: fadeIn 0.9s ease-out 0.4s both;
        }

        .articles {
            display: grid;
            gap: 2rem;
        }

        .article-card {
            background: var(--bg-elevated);
            border: 1px solid var(--border);
            border-left: 3px solid var(--border);
            padding: 2.5rem;
            text-decoration: none;
            color: var(--text);
            display: block;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .article-card:hover {
            border-left-color: var(--accent);
            border-color: var(--border-bright);
            background: #eef3f9;
            transform: translateX(8px);
        }

        .article-meta {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }

        .article-date {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.7rem;
            color: var(--text-muted);
            letter-spacing: 0.05em;
        }

        .article-category {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.65rem;
            color: var(--accent);
            background: rgba(26, 122, 191, 0.1);
            padding: 0.25rem 0.7rem;
            border-radius: 3px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        .article-title {
            font-size: 1.8rem;
            font-weight: 400;
            margin-bottom: 1rem;
            color: var(--text);
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        .article-card:hover .article-title {
            color: var(--accent);
        }

        .article-excerpt {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .read-more {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--accent);
            letter-spacing: 0.05em;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }



        /* Footer */
        footer {
            padding: 4rem 0 3rem;
            border-top: 1px solid var(--border);
            position: relative;
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-text {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--text-muted);
            letter-spacing: 0.02em;
        }

        .footer-links {
            display: flex;
            gap: 2rem;
        }

        .footer-links a {
            font-family: 'JetBrains Mono', monospace;
            font-size: 0.75rem;
            color: var(--text-muted);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* Responsive */
        @media (max-width: 968px) {
            .service-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .container {
                padding: 0 2rem;
            }

            .header-content {
                flex-direction: column;
                align-items: flex-start;
                gap: 1.5rem;
            }

            nav {
                flex-direction: column;
                align-items: flex-start;
                gap: 1rem;
            }

            h1 {
                font-size: 3rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .article-title {
                font-size: 1.5rem;
            }

            .footer-content {
                flex-direction: column;
                gap: 2rem;
                text-align: center;
            }
        }