body {
    background-color: #ffffff;
    overflow-x: hidden;
}

.glass-nav {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.service-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #8b5cf6;
    box-shadow: 0 20px 40px -15px rgba(124, 58, 237, 0.2);
}

.hero-gradient {
    background: radial-gradient(circle at top right, #f5f3ff 0%, #ffffff 50%);
}

.text-gradient {
    background: linear-gradient(135deg, #6d28d9 0%, #a78bfa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.whatsapp-btn {
    animation: bounce-slow 3s infinite;
}

@keyframes bounce-slow {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.custom-cursor {
    width: 20px;
    height: 20px;
    background: rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
}

/* Custom class to clamp geocoded addresses */
.truncate-2-lines {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;  
    overflow: hidden;
}