@media (max-width: 900px) {
    .hero-right {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        padding: 0;
    }
    .marketing-illustration img {
        width: 90vw;
        max-width: 350px;
        height: auto;
        object-fit: contain;
        display: block;
        margin: 0 auto;
    }
}
/* Footer Styles */
footer {
    background: #1a093a;
    color: #b3a6e7;
    padding: 48px 0 0 0;
    margin-top: 60px;
    font-family: 'Inter', sans-serif;
    width: 100%;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 32px;
}
.footer-section {
    flex: 1 1 220px;
    min-width: 180px;
    margin-bottom: 24px;
}
.footer-section h2, .footer-section h3 {
    color: #fff;
    font-weight: bold;
    margin-bottom: 12px;
}
.footer-divider {
    height: 2px;
    width: 40px;
    background: #7c3aed;
    margin-bottom: 16px;
}
.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-section ul li {
    margin-bottom: 8px;
}
.footer-section ul li a {
    color: #b3a6e7;
    text-decoration: none;
    transition: color 0.2s;
}
.footer-section ul li a:hover {
    color: #AD77FF;
}
.copyright {
    font-size: 0.95rem;
    color: #7c3aed;
    margin-bottom: 8px;
}
.footer-contact-item {
    margin-bottom: 8px;
    font-size: 1rem;
}
.footer-contact-item span {
    font-size: 1.2em;
    margin-right: 6px;
}
.footer-social-label {
    margin-bottom: 8px;
    font-weight: bold;
    color: #fff;
}
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}
.footer-social a {
    background: #222;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.footer-social a:hover {
    background: #7c3aed;
}
.footer-social img {
    width: 22px;
    height: 22px;
    filter: invert(1);
}
.footer-bottom {
    border-top: 1px solid #7c3aed;
    margin-top: 32px;
    padding: 24px 0 0 0;
    text-align: center;
    color: #b3a6e7;
    font-size: 0.95rem;
}
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    .footer-section {
        min-width: unset;
        width: 100%;
        margin-bottom: 16px;
    }
    .footer-section h2, .footer-section h3 {
        font-size: 1.2rem;
    }
    .footer-section ul {
        padding-left: 0;
    }
    .copyright {
        font-size: 0.9rem;
        padding: 16px 0 0 0;
    }
    .footer-bottom {
        font-size: 0.9rem;
        padding: 16px 0 0 0;
    }
}
@media (max-width: 900px) {
    .hero {
        margin-top: 80px !important;
    }
}
/* Force Our Services heading to white */
#services.section h2 {
    color: #fff !important;
}
/* Our Services heading white color */
.section h2, .section h1, .section h3 {
    color: #fff !important;
}
/* Hamburger menu styles */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.nav-links.mobile {
    display: none;
    position: absolute;
    top: 70px;
    right: 30px;
    background: rgba(0,0,0,0.98);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
    flex-direction: column;
    gap: 0;
    width: 180px;
    padding: 24px 0;
    transition: all 0.3s ease;
}
.nav-links.mobile.open {
    display: flex;
}
.nav-links.mobile li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #AD77FF;
}
.nav-links.mobile li:last-child {
    border-bottom: none;
}
.nav-links.mobile a {
    padding: 16px 24px;
    color: #AD77FF;
    font-size: 1.1rem;
    text-align: left;
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }
    .nav-links.mobile {
        display: none;
    }
    .nav-links.mobile.open {
        display: flex;
    }
    .hamburger {
        display: flex !important;
    }
}

/* Footer link reset to avoid default blue/purple on some hosts */
footer a { color: #b3a6e7; text-decoration:none; }
footer a:hover { color:#AD77FF; }
footer a:visited { color:#b3a6e7; }

/* Utility for visually consistent list links inside footer when Tailwind or resets missing */
footer ul { list-style:none; padding-left:0; }
footer ul li { margin:4px 0; }
/* Mobile nav support (.mobile-nav separate from .nav-links.mobile) */
.mobile-nav {display:none;position:absolute;top:70px;right:30px;background:rgba(0,0,0,0.98);border-radius:16px;box-shadow:0 8px 32px rgba(0,0,0,0.25);flex-direction:column;gap:0;width:180px;padding:24px 0;z-index:1100;}
.mobile-nav.open {display:flex;}
.mobile-nav li {margin:0;padding:0;border-bottom:1px solid #AD77FF;}
.mobile-nav li:last-child {border-bottom:none;}
.mobile-nav a {padding:16px 24px;color:#AD77FF;font-size:1.05rem;text-align:left;display:block;}

/* Responsive card styles for mobile */
@media (max-width: 900px) {
    .floating-ui-card, .client-card {
        border-radius: 16px !important;
        box-shadow: 0 2px 12px rgba(173,119,255,0.15);
        margin: 12px auto;
        width: 90% !important;
        min-width: unset !important;
        padding: 18px 12px !important;
        text-align: center;
    }
    .floating-ui-card h4, .client-info h4 {
        font-size: 1.1rem !important;
    }
}
* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: linear-gradient(135deg, #4D0AA4 0%, #000000 50%, #4D0AA4 100%);
            color: #AD77FF;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        /* Particles background */
        #particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }
        
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: #AD77FF;
            border-radius: 50%;
            opacity: 0.6;
            animation: float 6s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(173, 119, 255, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(180deg); }
        }

        
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 20px 50px;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(173, 119, 255, 0.3);
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
            background: rgba(0, 0, 0, 0.95);
            padding: 15px 50px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #AD77FF;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }

        .logo::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(173, 119, 255, 0.3), transparent);
            transition: left 0.8s ease;
        }

        .logo:hover::before {
            left: 100%;
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 30px;
        }

        .nav-links a {
            color: #AD77FF;
            text-decoration: none;
            font-weight: 500;
            position: relative;
            padding: 10px 0;
            transition: all 0.3s ease;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #AD77FF, #4D0AA4);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        
        .hero {
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
            overflow: hidden;
            padding: 0 50px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .hero-left {
            flex: 1;
            max-width: 600px;
            z-index: 2;
            animation: heroFadeIn 1.5s ease-out;
        }

        .hero-right {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        @keyframes heroFadeIn {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .brand-tag {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 0.9rem;
            color: #AD77FF;
            margin-bottom: 30px;
            animation: slideInLeft 1s ease-out 0.3s both;
        }

        .brand-tag::before {
                        content: '👋';
            font-size: 1.2rem;
        }

        .hero-left h1 {
            font-size: 4rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: white;
            line-height: 1.1;
            animation: slideInLeft 1s ease-out 0.5s both;
        }

        .hero-left h1 .highlight {
            background: linear-gradient(45deg, #AD77FF, #4D0AA4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-left p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.9;
            line-height: 1.6;
            animation: slideInLeft 1s ease-out 0.7s both;
            text-align: left;
        }

        .hero-cta {
            animation: slideInLeft 1s ease-out 0.9s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes textGlow {
            from {
                filter: drop-shadow(0 0 10px rgba(173, 119, 255, 0.5));
            }
            to {
                filter: drop-shadow(0 0 20px rgba(173, 119, 255, 0.8));
            }
        }

        
        .marketing-illustration {
            position: relative;
            width: 500px;
            height: 500px;
            animation: floatUp 3s ease-in-out infinite alternate;
        }

        @keyframes floatUp {
            0% {
                transform: translateY(0px);
            }
            100% {
                transform: translateY(-20px);
            }
        }

        .phone-mockup {
            position: absolute;
            right: 80px;
            top: 50px;
            width: 200px;
            height: 350px;
            background: linear-gradient(145deg, #ffffff, #f0f0f0);
            border-radius: 25px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
            animation: phoneFloat 4s ease-in-out infinite;
            z-index: 3;
        }

        @keyframes phoneFloat {
            0%, 100% { transform: rotate(-5deg) translateY(0px); }
            50% { transform: rotate(-5deg) translateY(-15px); }
        }

        .phone-screen {
            margin: 15px;
            height: 320px;
            background: linear-gradient(135deg, #4D0AA4, #AD77FF);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .phone-notch {
            position: absolute;
            top: 10px;
            left: 50%;
            transform: translateX(-50%);
            width: 120px;
            height: 25px;
            background: #000;
            border-radius: 15px;
        }

        .business-character {
            position: absolute;
            right: 180px;
            top: 80px;
            width: 180px;
            height: 180px;
            background: linear-gradient(145deg, #AD77FF, #4D0AA4);
            border-radius: 50%;
            animation: characterBounce 3s ease-in-out infinite;
            z-index: 4;
        }

        @keyframes characterBounce {
            0%, 100% { transform: scale(1) rotate(0deg); }
            50% { transform: scale(1.05) rotate(2deg); }
        }

        .business-character::before {
                        content: '👨‍💼';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 4rem;
        }

        .floating-ui-card {
            position: absolute;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 15px;
            padding: 15px 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            animation: cardFloat 4s ease-in-out infinite;
            backdrop-filter: blur(10px);
        }

        @keyframes cardFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .stats-card {
            top: 150px;
            left: 50px;
            animation-delay: 0s;
        }

        .stats-card h4 {
            color: #333;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }

        .stats-card .metric {
            color: #00D4AA;
            font-weight: bold;
            font-size: 1.2rem;
        }

        .chart-mini {
            width: 60px;
            height: 30px;
            background: linear-gradient(45deg, #00D4AA, #4D0AA4);
            border-radius: 5px;
            margin-top: 8px;
            position: relative;
        }

        .chart-mini::after {
            content: '📈';
            position: absolute;
            right: -20px;
            top: -5px;
            font-size: 1.5rem;
        }

        .achievement-card {
            top: 100px;
            right: 20px;
            animation-delay: 1s;
        }

        .achievement-card::before {
            content: '🏆';
            font-size: 1.5rem;
            margin-right: 8px;
        }

        .achievement-card span {
            color: #333;
            font-weight: 600;
            font-size: 0.9rem;
        }

        .notification-card {
            bottom: 120px;
            right: 100px;
            animation-delay: 2s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .notification-card::before {
                        content: '💝';
            font-size: 1.2rem;
        }

        .notification-card .count {
            color: #4D0AA4;
            font-weight: bold;
        }

        .marketing-icons {
            position: absolute;
            width: 100%;
            height: 100%;
        }

        .marketing-icon {
            position: absolute;
            font-size: 2rem;
            animation: iconOrbit 8s linear infinite;
        }

        @keyframes iconOrbit {
            0% { transform: rotate(0deg) translateX(200px) rotate(0deg); }
            100% { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
        }

        .marketing-icon:nth-child(1) { animation-delay: 0s; }
        .marketing-icon:nth-child(2) { animation-delay: 2s; }
        .marketing-icon:nth-child(3) { animation-delay: 4s; }
        .marketing-icon:nth-child(4) { animation-delay: 6s; }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 0.9;
                transform: translateY(0);
            }
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, #000000, #4D0AA4, #AD77FF);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            animation: slideInUp 1s ease-out 0.8s both;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #AD77FF, #000000, #4D0AA4);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-button:hover::before {
            left: 0;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(173, 119, 255, 0.4);
        }

        
        .floating-icon {
            position: absolute;
            font-size: 2rem;
            color: #AD77FF;
            opacity: 0.3;
            animation: floatIcon 4s ease-in-out infinite;
        }

        @keyframes floatIcon {
            0%, 100% {
                transform: translateY(0px) rotate(0deg);
                opacity: 0.3;
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
                opacity: 0.6;
            }
        }

        
        .section {
            padding: 100px 50px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .section h2 {
            font-size: 3rem;
            text-align: center;
            margin-bottom: 50px;
            background: linear-gradient(45deg, #AD77FF, #4D0AA4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: fadeInUp 0.8s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .section p {
            font-size: 1.1rem;
            line-height: 1.8;
            text-align: center;
            max-width: 800px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .service-card {
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(173, 119, 255, 0.1));
            border: 1px solid rgba(173, 119, 255, 0.3);
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
            cursor: pointer;
        }

        /* Flip Card Styles */
        .flip-card {
            perspective: 1000px;
            height: 350px;
            width: 100%;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            text-align: center;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            transform-style: preserve-3d;
        }

        .flip-card.flipped .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 20px;
            padding: 25px 20px;
            box-sizing: border-box;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.6), rgba(173, 119, 255, 0.1));
            border: 1px solid rgba(173, 119, 255, 0.3);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
        }

        .flip-card-back {
            transform: rotateY(180deg);
            background: linear-gradient(145deg, rgba(173, 119, 255, 0.15), rgba(0, 0, 0, 0.8));
            border: 1px solid rgba(173, 119, 255, 0.5);
            padding: 20px 15px;
            justify-content: flex-start;
        }

        .service-points {
            color: white;
            /* Removed duplicate earlier .video-cards-wrapper (25s) definition – using single unified one below */
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }

        .service-points h3 {
            margin: 0 0 15px 0;
            text-align: center;
            color: #AD77FF;
            font-size: 1.2rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            flex-shrink: 0;
        }

        .service-points ul {
            list-style: none;
            padding: 0;
            margin: 0;
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: space-evenly;
        }

        .service-points li {
            margin-bottom: 8px;
            padding-left: 20px;
            position: relative;
            font-size: 0.85rem;
            line-height: 1.3;
            color: rgba(255, 255, 255, 0.9);
        }

        .service-points li::before {
            content: "✦";
            position: absolute;
            left: 0;
            color: #AD77FF;
            font-size: 0.9rem;
            top: 0;
        }

        /* Mobile responsive adjustments */
        @media (max-width: 768px) {
            .flip-card {
                height: 320px;
            }
            
            .flip-card-front, .flip-card-back {
                padding: 20px 15px;
            }
            
            .service-points h3 {
                font-size: 1.1rem;
                margin-bottom: 12px;
            }
            
            .service-points li {
                font-size: 0.8rem;
                margin-bottom: 6px;
                padding-left: 18px;
            }
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(173, 119, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .service-card:hover::before {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }

        @keyframes shimmer {
            0% {
                transform: translateX(-100%) translateY(-100%) rotate(45deg);
            }
            100% {
                transform: translateX(100%) translateY(100%) rotate(45deg);
            }
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(173, 119, 255, 0.2);
            border-color: rgba(173, 119, 255, 0.5);
        }

        .service-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            animation: iconBounce 2s ease-in-out infinite;
        }

        @keyframes iconBounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .portfolio-subsection {
            margin-bottom: 80px;
        }

        .portfolio-subsection h3 {
            font-size: 2rem;
            color: #AD77FF;
            margin-bottom: 30px;
            text-align: left;
            background: linear-gradient(45deg, #AD77FF, #4D0AA4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        
        .horizontal-scroll-container {
            overflow-x: auto;
            overflow-y: hidden;
            padding: 20px 0;
            position: relative;
        }

        .horizontal-scroll-container::-webkit-scrollbar {
            height: 8px;
        }

        .horizontal-scroll-container::-webkit-scrollbar-track {
            background: rgba(173, 119, 255, 0.1);
            border-radius: 4px;
        }

        .horizontal-scroll-container::-webkit-scrollbar-thumb {
            background: linear-gradient(90deg, #AD77FF, #4D0AA4);
            border-radius: 4px;
        }

        .horizontal-scroll-container::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(90deg, #4D0AA4, #AD77FF);
        }

        
        .poster-cards-wrapper {
            display: flex;
            gap: 25px;
            animation: scrollLeftToRight 40s linear infinite;
            width: fit-content;
        }

        .poster-cards-wrapper:hover {
            animation-play-state: paused;
        }

        @keyframes scrollLeftToRight {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .poster-card {
            min-width: 280px;
            background: transparent;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            height: 300px;
        }

        .poster-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .poster-image {
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg, #4D0AA4, #AD77FF);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .poster-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .poster-image::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .poster-card:hover .poster-image::before {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }

        .poster-placeholder {
            font-size: 3rem;
            opacity: 0.8;
        }

        .poster-info {
            padding: 20px;
        }

        .poster-info h4 {
            color: #AD77FF;
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .poster-info p {
            color: rgba(173, 119, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        
    /* Duplicate .video-cards-wrapper (25s) removed; unified definition appears later with 35s timing */

        .video-card {
            min-width: 320px;
            background: transparent;
            border: none;
            border-radius: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            height: 300px;
        }

        .video-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .video-thumbnail {
            height: 100%;
            width: 100%;
            background: linear-gradient(135deg, #000000, #4D0AA4);
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .video-thumbnail video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
        }

        .play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            background: rgba(173, 119, 255, 0.9);
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            transition: all 0.3s ease;
            z-index: 10;
        }

        .video-card:hover .play-button {
            background: #AD77FF;
            transform: translate(-50%, -50%) scale(1.1);
        }

        
        .video-cards-wrapper {
            display: flex;
            gap: 25px;
            animation: scrollRightToLeft 35s linear infinite;
        }

        .portfolio-item {
            background: transparent;
            border: none;
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
            position: relative;
        }

        .portfolio-item:hover {
            transform: scale(1.05);
        }

        .portfolio-content {
            padding: 30px;
        }

        .portfolio-content h3 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #AD77FF;
        }

        
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            background: linear-gradient(145deg, rgba(0, 0, 0, 0.5), rgba(173, 119, 255, 0.1));
            border: 1px solid rgba(173, 119, 255, 0.3);
            border-radius: 10px;
            color: #AD77FF;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: inset 0 2px 5px rgba(0, 0, 0, 0.3);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #AD77FF;
            box-shadow: 0 0 20px rgba(173, 119, 255, 0.2);
            transform: translateY(-2px);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(173, 119, 255, 0.6);
        }

        
        @media (max-width: 768px) {
            nav {
                padding: 15px 20px;
            }
            
            .nav-links {
                gap: 15px;
            }
            
            .hero {
                flex-direction: column;
                padding: 0 20px;
                text-align: center;
            }
            
            .hero-left {
                max-width: 100%;
                margin-bottom: 30px;
            }
            
            .hero-left h1 {
                font-size: 2.5rem;
            }

            .marketing-illustration {
                width: 350px;
                height: 350px;
            }

            .phone-mockup {
                width: 150px;
                height: 250px;
                right: 50px;
            }

            .business-character {
                width: 120px;
                height: 120px;
                right: 130px;
            }

            .business-character::before {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 50px 20px;
            }
            
            .section h2 {
                font-size: 2rem;
            }
        }

       
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        
        .blog-btn {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(45deg, #000000, #AD77FF, #4D0AA4);
            color: white;
            text-decoration: none;
            border-radius: 25px;
            font-weight: 500;
            transition: all 0.3s ease;
            margin-left: 20px;
            border: 1px solid rgba(173, 119, 255, 0.3);
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
        }

        .blog-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(173, 119, 255, 0.4);
        }

    /* Portfolio Grid */
        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        /* Video element styles */
        .video-thumbnail video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0;
        }

        .video-card:hover video {
            transform: scale(1.05);
        }

        /* Client card styles */
        .clients-wrapper {
            display: flex;
            gap: 25px;
            animation: scrollLeftToRight 30s linear infinite;
            width: fit-content;
        }

        .clients-wrapper:hover {
            animation-play-state: paused;
        }

        .client-card {
            min-width: 250px;
            background: transparent;
            border: none;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
        }

        .client-card:hover {
            transform: translateY(-10px) scale(1.02);
        }

        .client-logo {
            width: 80px;
            height: 80px;
            margin: 0 auto 20px;
            border-radius: 50%;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #4D0AA4, #AD77FF);
            position: relative;
        }

        .client-logo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 50%;
        }

        .client-placeholder {
            font-size: 2rem;
            opacity: 0.8;
        }

        .client-info h4 {
            color: #AD77FF;
            font-size: 1.2rem;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .client-info p {
            color: rgba(173, 119, 255, 0.7);
            font-size: 0.9rem;
            margin: 0;
        }

        .client-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: linear-gradient(45deg, transparent, rgba(173, 119, 255, 0.1), transparent);
            transform: rotate(45deg);
            transition: all 0.6s ease;
            opacity: 0;
        }

        .client-card:hover::before {
            opacity: 1;
            animation: shimmer 1.5s ease-in-out;
        }