:root {
    --primary: #4a6ff0;
    --secondary: #f8f8f8;
    --accent: #3e5ce4;
    --text-primary: #0F172B;
    --text-secondary: #666666;
    --text-muted: #888888;
    --border: #cbdaf2;
    --background: #f8f8f8;
}
html, body {
    height: 100%;
    min-height: 100vh;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-primary);
    background-color: var(--background);
    margin: 0;
    padding: 0;
}
.svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    min-height: 100vh;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
html, body {
    background-color: transparent !important;
}
.content-wrapper {
    background-color: transparent !important;
}
.hero-bg {
    background: linear-gradient(90deg, #4a6ff0 0%, #3e5ce4 100%);
}
.service-card {
    transition: all 0.3s ease;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.floating-card {
    border: 1px solid var(--border);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.nav-link {
    position: relative;
    transition: all 0.3s ease;
}
.nav-link.active {
    color: var(--primary);
}
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    border: 3px solid var(--primary);
    border-radius: 50%;
    clip-path: polygon(0 50%, 100% 50%, 100% 100%, 0 100%);
}
.nav-link:hover {
    color: var(--primary);
}
.feature-icon {
    width: 96px;
    height: 96px;
    border-radius: 16px;
    overflow: hidden;
}
.btn-primary {
    background: linear-gradient(90deg, #4a6ff0 0%, #3e5ce4 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 111, 240, 0.3);
}
.btn-secondary {
    background: white;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(4, 90, 196, 0.3);
}
.svg-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.content-wrapper {
    position: relative;
    z-index: 10;
}
.section {
    padding: 80px 0;
}
.card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}
.floating-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
}
.card:hover {
    /* transform: translateY(-4px); */
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
