/*
Theme Name: WebBird macOS Edition
Theme URI: https://webbird.co.uk
Author: Arafat
Description: A high-end macOS inspired agency theme with glassmorphism and animated backgrounds.
Version: 1.0
Text Domain: webbird
*/
        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');
        
        :root {
            --macos-bg: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab, #8b5cf6, #f43f5e);
        }

        @keyframes gradient-shift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
            overflow-x: hidden;
            background: var(--macos-bg);
            background-size: 400% 400%;
            animation: gradient-shift 10s ease infinite;
            background-attachment: fixed;
            min-height: 100vh;
        }

        .glass {
            background: rgba(255, 255, 255, 0.75);
            backdrop-filter: blur(25px);
            -webkit-backdrop-filter: blur(25px);
            border: 1px solid rgba(255, 255, 255, 0.4);
        }

        .dark-glass {
            background: rgba(15, 23, 42, 0.6);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .dock-item {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            transform-origin: bottom;
        }
        .dock-item:hover { transform: scale(1.3) translateY(-5px); }

        html { scroll-behavior: smooth; }

        .os-window {
            box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.4);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .window-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 8px;
            color: rgba(0,0,0,0.5);
            cursor: pointer;
        }

        .full-screen-window {
            position: fixed !important;
            inset: 1rem !important;
            max-width: none !important;
            width: auto !important;
            z-index: 210;
        }

        ::-webkit-scrollbar { width: 0px; background: transparent; }
        
        .success-track {
            height: 8px;
            background: rgba(255,255,255,0.05);
            border-radius: 10px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .success-bar {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            background: linear-gradient(90deg, #10b981, #34d399, #6ee7b7);
            width: 99.9%;
            border-radius: 10px;
            box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
        }

        .glow-text {
            text-shadow: 0 0 20px rgba(255,255,255,0.3);
        }

        .service-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        .service-card:hover {
            transform: translateY(-10px);
            background: white !important;
        }

        .modal-service-card {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .modal-service-card:hover {
            background: rgba(255, 255, 255, 0.95);
            transform: translateY(-4px);
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
        }

        /* LOGO SLIDER STYLES */
        @keyframes logo-slide {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }
        .logo-slide-container {
            display: flex;
            overflow: hidden;
            width: 200px;
            mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
        }
        .logo-slide-track {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            animation: logo-slide 12s linear infinite;
        }