:root {
    --primary-color: #4f46e5;
    --primary-hover: #4338ca;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --purple: #8b5cf6;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    scroll-behavior: smooth;
}

/* Typography & Effects */
.text-gradient {
    background: linear-gradient(90deg, #4f46e5, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg-soft-primary {
    background-color: rgba(79, 70, 229, 0.1);
}

.bg-soft-purple {
    background-color: rgba(139, 92, 246, 0.1);
}

.bg-soft-green {
    background-color: rgba(16, 185, 129, 0.1);
}

.bg-soft-blue {
    background-color: rgba(59, 130, 246, 0.1);
}

.text-purple {
    color: var(--purple);
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: radial-gradient(circle at top right, rgba(79, 70, 229, 0.05), transparent);
}

.floating {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 28px;
    font-weight: 600;
    transition: all 0.3s transform ease;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

/* Cards & Features */
.feature-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.icon-box i {
    width: 28px;
    height: 28px;
}

/* Inputs */
.form-control {
    padding: 12px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.1);
}