:root {
    /* Brand Colors based on your Lovable design */
    --color-bg-dark: #050505;
    --color-surface: #111111;
    --color-primary: #3b82f6; /* The vibrant blue */
    --color-text-main: #ffffff;
    --color-text-muted: #a1a1aa;
    
    /* Typography */
    --font-primary: 'Inter', sans-serif;
}

/* Base Reset & Styling */
body {
    background-color: var(--color-bg-dark);
    color: var(--color-text-main);
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

a {
    color: var(--color-text-main);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

/* Header Styling */
.site-header {
    padding: 1.5rem 5%;
    background-color: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

/* Primary Button */
.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #2563eb;
    color: #fff;
}

/* Footer Styling */
.site-footer {
    padding: 2rem 5%;
    border-top: 1px solid #222;
    text-align: center;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.hero-glow-section {
    background-color: #050505;
    background-image: 
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 30% 80%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

/* To rotate the geometric graphic inside the hero */
.hero-glow-section .elementor-image img {
    animation: rotateGeometric 60s linear infinite;
}

@keyframes rotateGeometric {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-card {
    background-color: #0a0a0a;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: #3b82f6;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
}
.service-list-row {
    border-bottom: 1px solid #222;
    padding: 1.5rem 0;
    transition: background-color 0.3s ease, padding-left 0.3s ease;
    cursor: pointer;
}

.service-list-row:hover {
    background-color: rgba(59, 130, 246, 0.05);
    padding-left: 1rem;
    border-bottom-color: #3b82f6;
}

/* Animates the right arrow icon on hover */
.service-list-row:hover .elementor-widget-icon i {
    color: #3b82f6 !important;
    transform: translateX(5px);
    transition: transform 0.3s ease;
}