    /* Custom styles beyond Tailwind */

    html {
        scroll-behavior: smooth;
    }

    body {
        overflow-x: hidden;
    }

    /* Navbar scroll state */
    #navbar.scrolled {
        background: rgba(45, 15, 40, 0.95);
        backdrop-filter: blur(12px);
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    }

    /* Floating card animations */
    @keyframes float1 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-12px) rotate(1deg); }
    }

    @keyframes float2 {
        0%, 100% { transform: translateY(0px) rotate(0deg); }
        50% { transform: translateY(-8px) rotate(-1deg); }
    }

    @keyframes float3 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    .floating-card-1 {
        animation: float1 4s ease-in-out infinite;
    }

    .floating-card-2 {
        animation: float2 5s ease-in-out infinite;
    }

    .floating-card-3 {
        animation: float3 3.5s ease-in-out infinite;
    }

    /* Service card hover effect */
    .service-card {
        position: relative;
        overflow: hidden;
    }

    .service-card::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #4a1942, #f5c518);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .service-card:hover::after {
        transform: scaleX(1);
    }

    /* Intersection observer animations */
    .fade-up {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* Mobile menu transition */
    #mobile-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    #mobile-menu.open {
        max-height: 500px;
    }

    /* Custom scrollbar */
    ::-webkit-scrollbar {
        width: 8px;
    }

    ::-webkit-scrollbar-track {
        background: #f5f5f5;
    }

    ::-webkit-scrollbar-thumb {
        background: #4a1942;
        border-radius: 4px;
    }

    ::-webkit-scrollbar-thumb:hover {
        background: #832350;
    }

    /* Selection color */
    ::selection {
        background: #4a1942;
        color: #f5c518;
    }

    /* Smooth focus outlines */
    input:focus, select:focus, textarea:focus {
        outline: none;
    }

    /* Responsive adjustments */
    @media (max-width: 768px) {
        .floating-card-1,
        .floating-card-2,
        .floating-card-3 {
            display: none;
        }
    }
