@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Custom Utilities for aesthetic */
.glass-effect {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.text-gradient {
    background: linear-gradient(180deg, #FFFFFF 0%, #A0A0A0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Marquee Styles */
.marquee-wrapper {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

/* Fading edges for marquee */
.marquee-wrapper::before,
.marquee-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.marquee-wrapper::before {
    left: 0;
    background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}
.marquee-wrapper::after {
    right: 0;
    background: linear-gradient(to left, rgba(0,0,0,1) 0%, rgba(0,0,0,0) 100%);
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-left: 4rem;
    animation: scroll 30s linear infinite;
}

/* Pause animation on hover if desired, though usually continuous is better */
.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Platform Logos in Marquee */
.platform-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.platform-logo:hover {
    opacity: 1;
}

.platform-logo img {
    height: 32px;
    width: auto;
    object-fit: contain;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 6px 20px rgba(37, 211, 102, 0.6);
}

/* Email Float */
.email-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #0d6efd;
    color: white;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0px 4px 15px rgba(13, 110, 253, 0.4);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.email-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0px 6px 20px rgba(13, 110, 253, 0.6);
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease forwards;
}

.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }

/* Equalizer Background Animation */
@keyframes eq-bounce {
    0% { transform: scaleY(0.2); }
    100% { transform: scaleY(1); }
}

/* ===== CMS Spotlight Section ===== */

/* Floating bob animation for dashboard image */
@keyframes cms-float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

/* Pulsating glow border around image */
@keyframes cms-glow-pulse {
    0%, 100% { box-shadow: 0 0 30px rgba(255,255,255,0.08), 0 0 60px rgba(255,255,255,0.04); }
    50% { box-shadow: 0 0 50px rgba(255,255,255,0.15), 0 0 100px rgba(255,255,255,0.08); }
}

.cms-image-wrapper {
    animation: cms-float 5s ease-in-out infinite;
}

.cms-mockup-glow {
    animation: cms-glow-pulse 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    overflow: hidden;
    position: relative;
}

/* Shimmer line on top of image */
.cms-mockup-glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    z-index: 1;
}

/* Feature list item hover */
.cms-feature-item {
    transition: transform 0.25s ease, color 0.25s ease;
}

.cms-feature-item:hover {
    transform: translateX(6px);
}

/* Fade-in from left */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-40px); }
    to   { opacity: 1; transform: translateX(0); }
}

/* Fade-in from right */
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(40px); }
    to   { opacity: 1; transform: translateX(0); }
}

.animate-fade-left {
    animation: fadeInLeft 0.9s ease forwards;
}

.animate-fade-right {
    animation: fadeInRight 0.9s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

/* Custom Alert Styles */
.custom-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    background-color: #0a0a0a;
    border: 1px solid #222;
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.custom-alert.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    visibility: visible;
}
.custom-alert-icon {
    width: 24px;
    height: 24px;
    background-color: #10B981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.custom-alert-icon svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: #0a0a0a;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.custom-alert-text {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
}
