@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
    --bg-light: #ffffff;
    --primary-blue: #2563eb;
    --soft-blue: rgba(37, 99, 235, 0.05);
    --soft-purple: rgba(168, 85, 247, 0.05);
    --text-dark: #0f172a;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.glow-bg {
    position: relative;
    overflow: hidden;
}

.glow-bg::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
    top: -400px;
    right: -400px;
    z-index: 0;
    pointer-events: none;
}

.glow-bg::after {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.08) 0%, transparent 70%);
    bottom: -400px;
    left: -400px;
    z-index: 0;
    pointer-events: none;
}

.sol-section {
    border-radius: 60px;
    margin: 20px;
    padding: 80px 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.sol-card {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.sol-card:hover {
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.btn-primary-sol {
    background-color: var(--primary-blue);
    color: white;
    font-weight: 700;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: inline-flex;
    align-items: center;
}

.btn-primary-sol:hover {
    transform: translateY(-2px);
    background-color: #1d4ed8;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-dark) 0%, #475569) 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.dark .text-gradient {
    background: none;
    -webkit-text-fill-color: white;
    color: white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .sol-section {
        border-radius: 40px;
        margin: 10px;
        padding: 60px 20px;
    }
}