html {
    scroll-behavior: smooth;
}

body {
    background-color: #efeee6;
    color: #2d3748;
    font-family: "Assistant", sans-serif;
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #efeee6;
}
::-webkit-scrollbar-thumb {
    background: #347bc5;
    border-radius: 5px;
}

.text-outline {
    color: transparent;
    -webkit-text-stroke: 1px #347bc5;
}

.blob-shape {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
}

@keyframes morph {
    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    34% {
        border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
    }
    67% {
        border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%;
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.service-hover:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 25px -5px rgba(52, 123, 197, 0.2),
        0 10px 10px -5px rgba(52, 123, 197, 0.1);
}
